Full Code of poloclub/cnn-explainer for AI

master d0971f9447ed cached
47 files
649.6 KB
185.8k tokens
32 symbols
1 requests
Download .txt
Showing preview only (673K chars total). Download the full file or copy to clipboard to get everything.
Repository: poloclub/cnn-explainer
Branch: master
Commit: d0971f9447ed
Files: 47
Total size: 649.6 KB

Directory structure:
gitextract_939_80p5/

├── .github/
│   └── workflows/
│       └── build.yml
├── .gitignore
├── LICENSE
├── README.md
├── deploy-gh-page.sh
├── package.json
├── public/
│   ├── assets/
│   │   └── data/
│   │       ├── model.json
│   │       └── nn_10.json
│   ├── global.css
│   └── index.html
├── rollup.config.js
├── rollup_start_dev.js
├── src/
│   ├── App.svelte
│   ├── Explainer.svelte
│   ├── Header.svelte
│   ├── article/
│   │   ├── Article.svelte
│   │   └── Youtube.svelte
│   ├── config.js
│   ├── detail-view/
│   │   ├── ActivationAnimator.svelte
│   │   ├── Activationview.svelte
│   │   ├── ConvolutionAnimator.svelte
│   │   ├── Convolutionview.svelte
│   │   ├── Dataview.svelte
│   │   ├── DetailviewUtils.js
│   │   ├── HyperparameterAnimator.svelte
│   │   ├── HyperparameterDataview.svelte
│   │   ├── Hyperparameterview.svelte
│   │   ├── KernelMathView.svelte
│   │   ├── PoolAnimator.svelte
│   │   ├── Poolview.svelte
│   │   └── Softmaxview.svelte
│   ├── main.js
│   ├── overview/
│   │   ├── Modal.svelte
│   │   ├── Overview.svelte
│   │   ├── draw-utils.js
│   │   ├── flatten-draw.js
│   │   ├── intermediate-draw.js
│   │   ├── intermediate-utils.js
│   │   └── overview-draw.js
│   ├── stores.js
│   └── utils/
│       ├── cnn-tf.js
│       ├── cnn.js
│       ├── deploy-to-gh-pages.sh
│       └── utlis.py
└── tiny-vgg/
    ├── README.md
    ├── environment.yaml
    └── tiny-vgg.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/workflows/build.yml
================================================
name: build

on:
  # Triggers the workflow on push or pull request events but only for the master branch
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]
  schedule:
    - cron: "0 0 * * *"

jobs:
  build:
    runs-on: ${{ matrix.os }}

    strategy:
      matrix:
        node-version: [16]
        os: [ubuntu-latest, macos-latest, windows-latest]

    steps:
    - uses: actions/checkout@v3
    - uses: actions/setup-node@v3
      with:
        node-version: ${{ matrix.node-version }}
    - name: Install dependencies
      run: npm install
    - name: Build
      run: npm run build


================================================
FILE: .gitignore
================================================
.DS_Store
node_modules
public/bundle.*
package-lock.json
public/assets/js/bundle.*
public/assets/js/
public/assets/css/bundle.*
*.swp
yarn.lock
dist/
local-build/
tiny-vgg/data/
pnpm-lock.yaml

================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2020 Polo Club of Data Science

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: README.md
================================================
# CNN Explainer

An interactive visualization system designed to help non-experts learn about Convolutional Neural Networks (CNNs)

[![build](https://github.com/poloclub/cnn-explainer/workflows/build/badge.svg)](https://github.com/poloclub/cnn-explainer/actions)
[![arxiv badge](https://img.shields.io/badge/arXiv-2004.15004-red)](http://arxiv.org/abs/2004.15004)
[![DOI:10.1109/TVCG.2020.3030418](https://img.shields.io/badge/DOI-10.1109/TVCG.2020.3030418-blue)](https://doi.org/10.1109/TVCG.2020.3030418)

<a href="https://youtu.be/HnWIHWFbuUQ" target="_blank"><img src="https://i.imgur.com/sCsudVg.png" style="max-width:100%;"></a>

For more information, check out our manuscript:

[**CNN Explainer: Learning Convolutional Neural Networks with Interactive Visualization**](https://arxiv.org/abs/2004.15004).
Wang, Zijie J., Robert Turko, Omar Shaikh, Haekyu Park, Nilaksh Das, Fred Hohman, Minsuk Kahng, and Duen Horng Chau.
*IEEE Transactions on Visualization and Computer Graphics (TVCG), 2020.*

## Live Demo

For a live demo, visit: http://poloclub.github.io/cnn-explainer/

## Running Locally

Clone or download this repository:

```bash
git clone git@github.com:poloclub/cnn-explainer.git

# use degit if you don't want to download commit histories
degit poloclub/cnn-explainer
```

Install the dependencies:

```bash
npm install
```

Then run CNN Explainer:

```bash
npm run dev
```

Navigate to [localhost:3000](https://localhost:3000). You should see CNN Explainer running in your broswer :)

To see how we trained the CNN, visit the directory [`./tiny-vgg/`](tiny-vgg).
If you want to use CNN Explainer with your own CNN model or image classes, see [#8](/../../issues/8) and [#14](/../../issues/14).

## Credits

CNN Explainer was created by
<a href="https://zijie.wang/">Jay Wang</a>,
<a href="https://www.linkedin.com/in/robert-turko/">Robert Turko</a>,
<a href="http://oshaikh.com/">Omar Shaikh</a>,
<a href="https://haekyu.com/">Haekyu Park</a>,
<a href="http://nilakshdas.com/">Nilaksh Das</a>,
<a href="https://fredhohman.com/">Fred Hohman</a>,
<a href="http://minsuk.com">Minsuk Kahng</a>, and
<a href="https://www.cc.gatech.edu/~dchau/">Polo Chau</a>,
which was the result of a research collaboration between
Georgia Tech and Oregon State.

We thank
[Anmol Chhabria](https://www.linkedin.com/in/anmolchhabria),
[Kaan Sancak](https://kaansancak.com),
[Kantwon Rogers](https://www.kantwon.com), and the
[Georgia Tech Visualization Lab](http://vis.gatech.edu)
for their support and constructive feedback.

## Citation

```bibTeX
@article{wangCNNExplainerLearning2020,
  title = {{{CNN Explainer}}: {{Learning Convolutional Neural Networks}} with {{Interactive Visualization}}},
  shorttitle = {{{CNN Explainer}}},
  author = {Wang, Zijie J. and Turko, Robert and Shaikh, Omar and Park, Haekyu and Das, Nilaksh and Hohman, Fred and Kahng, Minsuk and Chau, Duen Horng},
  journal={IEEE Transactions on Visualization and Computer Graphics (TVCG)},
  year={2020},
  publisher={IEEE}
}
```

## License

The software is available under the [MIT License](https://github.com/poloclub/cnn-explainer/blob/master/LICENSE).

## Contact

If you have any questions, feel free to [open an issue](https://github.com/poloclub/cnn-explainer/issues/new/choose) or contact [Jay Wang](https://zijie.wang).


================================================
FILE: deploy-gh-page.sh
================================================
npm run build
cp -r ./public/assets ./dist
cp -r ./public/bundle* ./dist
cp -r ./public/global.css ./dist
npx gh-pages -m "Deploy $(git log '--format=format:%H' master -1)" -d ./dist

================================================
FILE: package.json
================================================
{
  "name": "svelte-app",
  "version": "1.0.0",
  "devDependencies": {
    "@rollup/plugin-replace": "^2.3.2",
    "gh-pages": "^6.0.0",
    "rollup": "^1.27.13",
    "rollup-plugin-commonjs": "^10.0.0",
    "rollup-plugin-livereload": "^1.0.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-svelte": "~6.1.1",
    "rollup-plugin-terser": "^5.1.3",
    "svelte": "^3.31.0"
  },
  "dependencies": {
    "@tensorflow/tfjs": "^1.4.0",
    "sirv-cli": "^0.4.4"
  },
  "scripts": {
    "build": "rollup -c",
    "dev": "rollup -c -w",
    "start": "sirv public --single",
    "start:dev": "sirv public --single --dev --port 3000",
    "deploy": "npx"
  }
}


================================================
FILE: public/assets/data/model.json
================================================
{"format": "layers-model", "generatedBy": "keras v2.2.4-tf", "convertedBy": "TensorFlow.js Converter v1.3.1.1", "modelTopology": {"keras_version": "2.2.4-tf", "backend": "tensorflow", "model_config": {"class_name": "Sequential", "config": {"name": "sequential", "layers": [{"class_name": "Conv2D", "config": {"name": "conv_1_1", "trainable": true, "batch_input_shape": [null, 64, 64, 3], "dtype": "float32", "filters": 10, "kernel_size": [3, 3], "strides": [1, 1], "padding": "valid", "data_format": "channels_last", "dilation_rate": [1, 1], "activation": "linear", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}, {"class_name": "Activation", "config": {"name": "relu_1_1", "trainable": true, "dtype": "float32", "activation": "relu"}}, {"class_name": "Conv2D", "config": {"name": "conv_1_2", "trainable": true, "dtype": "float32", "filters": 10, "kernel_size": [3, 3], "strides": [1, 1], "padding": "valid", "data_format": "channels_last", "dilation_rate": [1, 1], "activation": "linear", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}, {"class_name": "Activation", "config": {"name": "relu_1_2", "trainable": true, "dtype": "float32", "activation": "relu"}}, {"class_name": "MaxPooling2D", "config": {"name": "max_pool_1", "trainable": true, "dtype": "float32", "pool_size": [2, 2], "padding": "valid", "strides": [2, 2], "data_format": "channels_last"}}, {"class_name": "Conv2D", "config": {"name": "conv_2_1", "trainable": true, "dtype": "float32", "filters": 10, "kernel_size": [3, 3], "strides": [1, 1], "padding": "valid", "data_format": "channels_last", "dilation_rate": [1, 1], "activation": "linear", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}, {"class_name": "Activation", "config": {"name": "relu_2_1", "trainable": true, "dtype": "float32", "activation": "relu"}}, {"class_name": "Conv2D", "config": {"name": "conv_2_2", "trainable": true, "dtype": "float32", "filters": 10, "kernel_size": [3, 3], "strides": [1, 1], "padding": "valid", "data_format": "channels_last", "dilation_rate": [1, 1], "activation": "linear", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}, {"class_name": "Activation", "config": {"name": "relu_2_2", "trainable": true, "dtype": "float32", "activation": "relu"}}, {"class_name": "MaxPooling2D", "config": {"name": "max_pool_2", "trainable": true, "dtype": "float32", "pool_size": [2, 2], "padding": "valid", "strides": [2, 2], "data_format": "channels_last"}}, {"class_name": "Flatten", "config": {"name": "flatten", "trainable": true, "dtype": "float32", "data_format": "channels_last"}}, {"class_name": "Dense", "config": {"name": "output", "trainable": true, "dtype": "float32", "units": 10, "activation": "softmax", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}]}}}, "weightsManifest": [{"paths": ["group1-shard1of1.bin"], "weights": [{"name": "conv_1_1/kernel", "shape": [3, 3, 3, 10], "dtype": "float32"}, {"name": "conv_1_1/bias", "shape": [10], "dtype": "float32"}, {"name": "conv_1_2/kernel", "shape": [3, 3, 10, 10], "dtype": "float32"}, {"name": "conv_1_2/bias", "shape": [10], "dtype": "float32"}, {"name": "conv_2_1/kernel", "shape": [3, 3, 10, 10], "dtype": "float32"}, {"name": "conv_2_1/bias", "shape": [10], "dtype": "float32"}, {"name": "conv_2_2/kernel", "shape": [3, 3, 10, 10], "dtype": "float32"}, {"name": "conv_2_2/bias", "shape": [10], "dtype": "float32"}, {"name": "output/kernel", "shape": [1690, 10], "dtype": "float32"}, {"name": "output/bias", "shape": [10], "dtype": "float32"}]}]}

================================================
FILE: public/assets/data/nn_10.json
================================================
[
  {
    "name": "conv_1_1",
    "input_shape": [
      64,
      64,
      3
    ],
    "output_shape": [
      62,
      62,
      10
    ],
    "num_neurons": 10,
    "weights": [
      {
        "bias": 0.05529399216175079,
        "weights": [
          [
            [
              0.005686734337359667,
              0.5303338170051575,
              0.4508902430534363
            ],
            [
              0.04920876398682594,
              -0.029017755761742592,
              0.23914846777915955
            ],
            [
              -0.06062067300081253,
              0.10217977315187454,
              0.2789939343929291
            ]
          ],
          [
            [
              -0.11416204273700714,
              0.2790183424949646,
              0.14520207047462463
            ],
            [
              -0.14735761284828186,
              -0.21102763712406158,
              -0.15575028955936432
            ],
            [
              -0.10717931389808655,
              -0.28811952471733093,
              -0.0018726304406300187
            ]
          ],
          [
            [
              -0.06842527538537979,
              0.14463859796524048,
              -0.012262370437383652
            ],
            [
              -0.36216601729393005,
              -0.14219844341278076,
              -0.1687535047531128
            ],
            [
              0.13701502978801727,
              0.10424327105283737,
              0.0899757370352745
            ]
          ]
        ]
      },
      {
        "bias": 0.15698345005512238,
        "weights": [
          [
            [
              0.11193452030420303,
              -0.02605212852358818,
              -0.17117753624916077
            ],
            [
              -0.1265387237071991,
              0.11026564985513687,
              -0.23662784695625305
            ],
            [
              -0.113533616065979,
              -0.06741151958703995,
              0.00405964907258749
            ]
          ],
          [
            [
              -0.20665371417999268,
              0.09713144600391388,
              0.18439456820487976
            ],
            [
              0.22104552388191223,
              0.06683074682950974,
              0.08409177511930466
            ],
            [
              -0.1461413949728012,
              -0.0339348129928112,
              0.09842409938573837
            ]
          ],
          [
            [
              -0.2126864641904831,
              -0.24490225315093994,
              0.10998662561178207
            ],
            [
              0.09896539151668549,
              -0.2154281884431839,
              -0.04586761072278023
            ],
            [
              0.12391256541013718,
              -0.06876956671476364,
              -0.17699216306209564
            ]
          ]
        ]
      },
      {
        "bias": 0.1929195076227188,
        "weights": [
          [
            [
              0.303184449672699,
              -0.22255642712116241,
              0.15304619073867798
            ],
            [
              -0.3187333941459656,
              -0.15920908749103546,
              0.33759790658950806
            ],
            [
              0.19879762828350067,
              0.30086207389831543,
              -0.14565040171146393
            ]
          ],
          [
            [
              -0.24475222826004028,
              -0.11444883793592453,
              -0.03977220505475998
            ],
            [
              -0.5766695141792297,
              -0.26573851704597473,
              0.2617243826389313
            ],
            [
              -0.059220075607299805,
              0.05921584367752075,
              -0.23321840167045593
            ]
          ],
          [
            [
              0.12728002667427063,
              -0.22710849344730377,
              0.34297189116477966
            ],
            [
              -0.3018116354942322,
              0.054087359458208084,
              0.4344978928565979
            ],
            [
              0.0469631627202034,
              0.14949560165405273,
              -0.1706211119890213
            ]
          ]
        ]
      },
      {
        "bias": 0.13662371039390564,
        "weights": [
          [
            [
              -0.2468211054801941,
              -0.07405976951122284,
              -0.056588608771562576
            ],
            [
              -0.0507829450070858,
              0.18406149744987488,
              0.11345680058002472
            ],
            [
              -0.28884875774383545,
              0.1144554391503334,
              -0.20539431273937225
            ]
          ],
          [
            [
              0.1392928510904312,
              0.2163618952035904,
              -0.0069107115268707275
            ],
            [
              -0.04500287026166916,
              0.18057486414909363,
              0.3434883654117584
            ],
            [
              0.09264994412660599,
              0.17778418958187103,
              -0.20051360130310059
            ]
          ],
          [
            [
              0.18443480134010315,
              0.18599331378936768,
              -0.2483920156955719
            ],
            [
              0.17116613686084747,
              0.015662359073758125,
              0.24437673389911652
            ],
            [
              0.08613235503435135,
              -0.18919849395751953,
              0.14660470187664032
            ]
          ]
        ]
      },
      {
        "bias": -0.01665310189127922,
        "weights": [
          [
            [
              0.0513838492333889,
              -0.18428930640220642,
              -0.13631688058376312
            ],
            [
              -0.020188838243484497,
              0.014654036611318588,
              -0.2090645283460617
            ],
            [
              0.19347725808620453,
              0.008561060763895512,
              0.12752579152584076
            ]
          ],
          [
            [
              0.10648118704557419,
              -0.09161978214979172,
              0.15131479501724243
            ],
            [
              -0.07589973509311676,
              0.03778020665049553,
              0.07684637606143951
            ],
            [
              -0.21972328424453735,
              -0.06632781028747559,
              -0.21909500658512115
            ]
          ],
          [
            [
              -0.11479348689317703,
              -0.10508662462234497,
              0.07523884624242783
            ],
            [
              -0.14848960936069489,
              -0.04849429056048393,
              -0.14041589200496674
            ],
            [
              -0.18590395152568817,
              0.031492143869400024,
              0.10233276337385178
            ]
          ]
        ]
      },
      {
        "bias": 0.10964040458202362,
        "weights": [
          [
            [
              -0.12156059592962265,
              0.053360339254140854,
              0.1554896980524063
            ],
            [
              0.08920006453990936,
              -0.12873634696006775,
              -0.03641781583428383
            ],
            [
              -0.26828017830848694,
              0.07801597565412521,
              0.004753198008984327
            ]
          ],
          [
            [
              -0.17305849492549896,
              -0.18035148084163666,
              -0.05541511997580528
            ],
            [
              0.06097719073295593,
              -0.1959034502506256,
              -0.18717913329601288
            ],
            [
              -0.20423458516597748,
              0.21905024349689484,
              -0.11647790670394897
            ]
          ],
          [
            [
              0.24856887757778168,
              0.24108672142028809,
              -0.180223748087883
            ],
            [
              -0.10905743390321732,
              -0.15688706934452057,
              0.07556945085525513
            ],
            [
              0.060350243002176285,
              -0.07040304690599442,
              0.21788306534290314
            ]
          ]
        ]
      },
      {
        "bias": 0.029825814068317413,
        "weights": [
          [
            [
              -0.19718821346759796,
              -0.16889642179012299,
              0.12187362462282181
            ],
            [
              0.06039876490831375,
              -0.14378444850444794,
              0.07948035001754761
            ],
            [
              -0.025484031066298485,
              -0.16321809589862823,
              -0.019062098115682602
            ]
          ],
          [
            [
              -0.032011669129133224,
              -0.14139215648174286,
              0.11273358762264252
            ],
            [
              -0.10067833960056305,
              -0.20742711424827576,
              0.13296671211719513
            ],
            [
              0.1675073355436325,
              -0.1571367383003235,
              0.22434785962104797
            ]
          ],
          [
            [
              -0.10166903585195541,
              -0.19185051321983337,
              0.08926276117563248
            ],
            [
              0.09333138912916183,
              0.037962570786476135,
              0.0007648404571227729
            ],
            [
              -0.05245523899793625,
              -0.1298869550228119,
              0.03659629821777344
            ]
          ]
        ]
      },
      {
        "bias": 0.11516544222831726,
        "weights": [
          [
            [
              -0.14063894748687744,
              0.3289564251899719,
              0.2985765039920807
            ],
            [
              0.09437553584575653,
              -0.1446211189031601,
              -0.3673877418041229
            ],
            [
              -0.2984912395477295,
              -0.11701186001300812,
              0.22971859574317932
            ]
          ],
          [
            [
              0.09642521291971207,
              0.413046658039093,
              0.3844977021217346
            ],
            [
              0.2882622480392456,
              0.1406082808971405,
              -0.2174244523048401
            ],
            [
              -0.24284584820270538,
              0.041832320392131805,
              0.24873341619968414
            ]
          ],
          [
            [
              -0.0859166830778122,
              0.11321970075368881,
              0.13290554285049438
            ],
            [
              -0.09440730512142181,
              -0.26801732182502747,
              -0.4094286561012268
            ],
            [
              -0.36698707938194275,
              -0.018707290291786194,
              0.08283202350139618
            ]
          ]
        ]
      },
      {
        "bias": 0.07734016329050064,
        "weights": [
          [
            [
              -0.03253738954663277,
              -0.026013268157839775,
              0.016034334897994995
            ],
            [
              -0.22023527324199677,
              0.1287398338317871,
              -0.04254328832030296
            ],
            [
              -0.008483637124300003,
              -0.016512051224708557,
              0.21947342157363892
            ]
          ],
          [
            [
              -0.22642101347446442,
              0.20579710602760315,
              0.11521881073713303
            ],
            [
              -0.10988859832286835,
              0.052845388650894165,
              0.13670620322227478
            ],
            [
              -0.12536796927452087,
              0.04135845974087715,
              -0.1554696261882782
            ]
          ],
          [
            [
              -0.18598666787147522,
              0.12068557739257812,
              0.12700338661670685
            ],
            [
              0.1888495832681656,
              -0.15277566015720367,
              -0.147127166390419
            ],
            [
              -0.1856405884027481,
              0.07612188160419464,
              -0.2162964791059494
            ]
          ]
        ]
      },
      {
        "bias": -0.03841400146484375,
        "weights": [
          [
            [
              -0.23960189521312714,
              -0.16422033309936523,
              0.09344270825386047
            ],
            [
              -0.22473567724227905,
              -0.025265153497457504,
              -0.3128132224082947
            ],
            [
              -0.05619398131966591,
              0.14468322694301605,
              -0.23834674060344696
            ]
          ],
          [
            [
              0.15905526280403137,
              0.39751049876213074,
              0.40521639585494995
            ],
            [
              0.07429175078868866,
              0.2791271209716797,
              0.15926817059516907
            ],
            [
              0.3116576373577118,
              0.47250816226005554,
              0.27831581234931946
            ]
          ],
          [
            [
              -0.14721138775348663,
              0.11997095495462418,
              -0.10465282946825027
            ],
            [
              -0.10158450901508331,
              -0.20062342286109924,
              -0.3983880579471588
            ],
            [
              -0.352329283952713,
              -0.22438788414001465,
              -0.14405152201652527
            ]
          ]
        ]
      }
    ]
  },
  {
    "name": "relu_1_1",
    "input_shape": [
      62,
      62,
      10
    ],
    "output_shape": [
      62,
      62,
      10
    ],
    "num_neurons": 10
  },
  {
    "name": "conv_1_2",
    "input_shape": [
      62,
      62,
      10
    ],
    "output_shape": [
      60,
      60,
      10
    ],
    "num_neurons": 10,
    "weights": [
      {
        "bias": -0.015000003390014172,
        "weights": [
          [
            [
              0.06984533369541168,
              0.12250980734825134,
              -0.06276966631412506
            ],
            [
              0.027698174118995667,
              0.28825634717941284,
              0.11451877653598785
            ],
            [
              0.1613343358039856,
              -0.07120175659656525,
              -0.02248406782746315
            ]
          ],
          [
            [
              0.06695717573165894,
              0.004763114266097546,
              0.03319444879889488
            ],
            [
              0.04770096018910408,
              -0.07627807557582855,
              -0.1811506152153015
            ],
            [
              -0.09521480649709702,
              -0.020181972533464432,
              -0.14486107230186462
            ]
          ],
          [
            [
              -0.061954572796821594,
              -0.07911273837089539,
              -0.3499084711074829
            ],
            [
              -0.24773694574832916,
              -0.21033312380313873,
              -0.01210795622318983
            ],
            [
              0.053867269307374954,
              -0.07325703650712967,
              -0.2212786078453064
            ]
          ],
          [
            [
              -0.13988210260868073,
              0.06434164941310883,
              -0.09834592044353485
            ],
            [
              -0.026962799951434135,
              0.12251508235931396,
              -0.08030775189399719
            ],
            [
              -0.22049900889396667,
              -0.03990422561764717,
              -0.13152480125427246
            ]
          ],
          [
            [
              -0.17654503881931305,
              0.1668800264596939,
              -0.138304203748703
            ],
            [
              0.03783787786960602,
              -0.18137794733047485,
              -0.10964040458202362
            ],
            [
              0.08009066432714462,
              -0.028887981548905373,
              -0.08581449836492538
            ]
          ],
          [
            [
              0.12367407232522964,
              -0.04227888956665993,
              -0.12297787517309189
            ],
            [
              -0.03683138266205788,
              -0.07924527674913406,
              0.07216089963912964
            ],
            [
              0.09089690446853638,
              -0.14476703107357025,
              -0.07134923338890076
            ]
          ],
          [
            [
              0.05118329077959061,
              0.013351107016205788,
              0.12198783457279205
            ],
            [
              0.15751278400421143,
              -0.048728566616773605,
              -0.17966294288635254
            ],
            [
              0.11106358468532562,
              -0.05154714733362198,
              0.15185466408729553
            ]
          ],
          [
            [
              -0.002612997544929385,
              -0.05618676543235779,
              0.04629763215780258
            ],
            [
              0.20909954607486725,
              0.2826078534126282,
              0.06790830194950104
            ],
            [
              -0.24769099056720734,
              -0.018110016360878944,
              0.03419424593448639
            ]
          ],
          [
            [
              -0.20570960640907288,
              0.16505253314971924,
              0.010972544550895691
            ],
            [
              -0.07593987882137299,
              0.18975234031677246,
              0.12766748666763306
            ],
            [
              -0.16967566311359406,
              -0.14139984548091888,
              -0.06672513484954834
            ]
          ],
          [
            [
              -0.09351741522550583,
              -0.05367553234100342,
              0.006337949074804783
            ],
            [
              0.09447716921567917,
              0.05620996654033661,
              -0.1393093317747116
            ],
            [
              0.09124802052974701,
              -0.008008070290088654,
              -0.08058559894561768
            ]
          ]
        ]
      },
      {
        "bias": 0.03633357957005501,
        "weights": [
          [
            [
              -0.028699593618512154,
              0.01408400945365429,
              0.053278084844350815
            ],
            [
              0.17656444013118744,
              0.020243415609002113,
              -0.27064037322998047
            ],
            [
              -0.03375490754842758,
              -0.07598341256380081,
              -0.054536327719688416
            ]
          ],
          [
            [
              -0.016911577433347702,
              0.011905811727046967,
              -0.004597058519721031
            ],
            [
              -0.15162792801856995,
              -0.040205202996730804,
              0.029262922704219818
            ],
            [
              0.12659160792827606,
              0.1467726081609726,
              0.13518129289150238
            ]
          ],
          [
            [
              0.08571384847164154,
              0.04543592408299446,
              0.1619890332221985
            ],
            [
              0.04412376508116722,
              -0.20871470868587494,
              0.13537569344043732
            ],
            [
              -0.11269881576299667,
              0.316618412733078,
              -0.1193186566233635
            ]
          ],
          [
            [
              0.1737903505563736,
              -0.04851733520627022,
              0.053338903933763504
            ],
            [
              0.2689688801765442,
              0.18783660233020782,
              0.0049596684984862804
            ],
            [
              0.08433520793914795,
              0.2502553164958954,
              -0.10368360579013824
            ]
          ],
          [
            [
              0.03098849020898342,
              -0.16898685693740845,
              -0.14307470619678497
            ],
            [
              -0.04081837087869644,
              0.1253221333026886,
              -0.175978884100914
            ],
            [
              -0.040029484778642654,
              -0.028231589123606682,
              0.1737002283334732
            ]
          ],
          [
            [
              0.007191381882876158,
              0.10486532747745514,
              0.09948095679283142
            ],
            [
              0.08876245468854904,
              0.04661615192890167,
              0.055014386773109436
            ],
            [
              0.11458297818899155,
              0.14941437542438507,
              0.14682719111442566
            ]
          ],
          [
            [
              -0.029932519420981407,
              0.06707341223955154,
              0.0011027005966752768
            ],
            [
              0.013172822073101997,
              -0.027043195441365242,
              -0.07705768197774887
            ],
            [
              -0.1878139227628708,
              -0.10642603039741516,
              0.15161097049713135
            ]
          ],
          [
            [
              -0.24196398258209229,
              0.2093714028596878,
              0.016427693888545036
            ],
            [
              0.18196193873882294,
              0.15705186128616333,
              -0.16816706955432892
            ],
            [
              0.2550819218158722,
              -0.012771722860634327,
              -0.03235609456896782
            ]
          ],
          [
            [
              0.05405253916978836,
              0.04333319142460823,
              0.18497972190380096
            ],
            [
              0.040979642421007156,
              0.04391923174262047,
              0.003401109715923667
            ],
            [
              0.06960181146860123,
              -0.16919413208961487,
              -0.01900867559015751
            ]
          ],
          [
            [
              -0.12346938252449036,
              -0.0845215693116188,
              0.03198058158159256
            ],
            [
              -0.09701372683048248,
              -0.31881439685821533,
              0.05198657885193825
            ],
            [
              0.0014515378279611468,
              -0.0015912456437945366,
              -0.13556411862373352
            ]
          ]
        ]
      },
      {
        "bias": 0.26450011134147644,
        "weights": [
          [
            [
              0.11858198046684265,
              0.08620305359363556,
              -0.22812843322753906
            ],
            [
              0.0737232193350792,
              -0.1764031946659088,
              -0.10877794027328491
            ],
            [
              -0.04786592349410057,
              0.06122968718409538,
              -0.22324822843074799
            ]
          ],
          [
            [
              0.0688820481300354,
              -0.12272901833057404,
              -0.11515816301107407
            ],
            [
              -0.1755588799715042,
              -0.18296514451503754,
              0.005947907920926809
            ],
            [
              0.05370483547449112,
              -0.17687486112117767,
              -0.07346649467945099
            ]
          ],
          [
            [
              -0.28695711493492126,
              -0.14942891895771027,
              0.22552116215229034
            ],
            [
              0.14913678169250488,
              0.25072580575942993,
              -0.13216601312160492
            ],
            [
              0.25203147530555725,
              0.013846390880644321,
              0.07630975544452667
            ]
          ],
          [
            [
              0.14870744943618774,
              0.26395735144615173,
              0.07945573329925537
            ],
            [
              0.02941100113093853,
              -0.06789202243089676,
              -0.09479090571403503
            ],
            [
              -0.13743452727794647,
              0.0012073514517396688,
              -0.19661739468574524
            ]
          ],
          [
            [
              -0.01009973231703043,
              -0.1716722846031189,
              0.1032852828502655
            ],
            [
              -0.005336238536983728,
              -0.015667693689465523,
              0.01772109791636467
            ],
            [
              0.15534654259681702,
              0.030132949352264404,
              0.059307970106601715
            ]
          ],
          [
            [
              -0.17051032185554504,
              -0.03172222524881363,
              0.017660612240433693
            ],
            [
              0.06734868139028549,
              -0.16958904266357422,
              0.0980442464351654
            ],
            [
              0.08474505692720413,
              -0.16626432538032532,
              -0.14391560852527618
            ]
          ],
          [
            [
              -0.047566138207912445,
              -0.12840814888477325,
              0.07308086007833481
            ],
            [
              -0.10277002304792404,
              0.03899145871400833,
              -0.08504311740398407
            ],
            [
              0.08088894188404083,
              0.07359552383422852,
              -0.1757054328918457
            ]
          ],
          [
            [
              0.2511260211467743,
              0.16259819269180298,
              -0.2731759548187256
            ],
            [
              -0.15424731373786926,
              -0.2542499899864197,
              0.1603444516658783
            ],
            [
              -0.03646847605705261,
              -0.02279706671833992,
              -0.0198900755494833
            ]
          ],
          [
            [
              0.1734747290611267,
              0.03886084258556366,
              0.013219695538282394
            ],
            [
              -0.04848269373178482,
              0.12644779682159424,
              -0.13532158732414246
            ],
            [
              0.17683625221252441,
              0.13510529696941376,
              0.06751107424497604
            ]
          ],
          [
            [
              -0.1525471806526184,
              -0.1715271919965744,
              0.09087955206632614
            ],
            [
              -0.030184892937541008,
              0.008808514103293419,
              -0.14952726662158966
            ],
            [
              -0.12190154939889908,
              -0.08360952883958817,
              -0.27969890832901
            ]
          ]
        ]
      },
      {
        "bias": 0.16449642181396484,
        "weights": [
          [
            [
              0.01370085310190916,
              -0.003117413492873311,
              0.018573859706521034
            ],
            [
              0.02700856886804104,
              0.0726592019200325,
              -0.16934508085250854
            ],
            [
              -0.013026679866015911,
              -0.06702490895986557,
              -0.02738550864160061
            ]
          ],
          [
            [
              0.21202805638313293,
              0.1058105081319809,
              -0.07208364456892014
            ],
            [
              -0.06420744210481644,
              0.011604615487158298,
              0.027805227786302567
            ],
            [
              0.00818086601793766,
              0.13248521089553833,
              0.1713949739933014
            ]
          ],
          [
            [
              0.15266969799995422,
              0.07938865572214127,
              0.1686062216758728
            ],
            [
              0.21102824807167053,
              0.20970553159713745,
              0.04996765777468681
            ],
            [
              0.25311100482940674,
              0.120435930788517,
              0.0902794823050499
            ]
          ],
          [
            [
              0.17864742875099182,
              0.14377900958061218,
              -0.08969362825155258
            ],
            [
              0.0035156651865690947,
              -0.1548624336719513,
              -0.038364484906196594
            ],
            [
              0.04785368591547012,
              0.010373460128903389,
              -0.048020996153354645
            ]
          ],
          [
            [
              -0.014619680121541023,
              0.15819314122200012,
              -0.14283199608325958
            ],
            [
              -0.1338491141796112,
              -0.027468981221318245,
              -0.09391266107559204
            ],
            [
              -0.11103012412786484,
              -0.16180108487606049,
              -0.02236912027001381
            ]
          ],
          [
            [
              0.12564800679683685,
              -0.10915327072143555,
              -0.053323157131671906
            ],
            [
              0.06013397499918938,
              0.07818517088890076,
              0.04390117898583412
            ],
            [
              0.05919521674513817,
              -0.05086110159754753,
              0.11842437833547592
            ]
          ],
          [
            [
              0.009561538696289062,
              0.13100337982177734,
              -0.0885411724448204
            ],
            [
              0.0943290963768959,
              0.007461306173354387,
              -0.08001946657896042
            ],
            [
              0.12241971492767334,
              0.1626623272895813,
              -0.17123454809188843
            ]
          ],
          [
            [
              0.006828694604337215,
              6.963577470742166e-05,
              -0.17743292450904846
            ],
            [
              -0.18081223964691162,
              0.020155085250735283,
              -0.12944959104061127
            ],
            [
              -0.10669642686843872,
              -0.1092572808265686,
              -0.01022006943821907
            ]
          ],
          [
            [
              0.08811519294977188,
              -0.010638792999088764,
              0.037426482886075974
            ],
            [
              0.029551351442933083,
              0.10919863730669022,
              -0.17812275886535645
            ],
            [
              -0.01921534352004528,
              -0.020105307921767235,
              -0.017948994413018227
            ]
          ],
          [
            [
              -0.13676193356513977,
              -0.06529264152050018,
              -0.03060491383075714
            ],
            [
              -0.16058501601219177,
              0.22819195687770844,
              0.17382000386714935
            ],
            [
              0.02250857651233673,
              0.1810695230960846,
              0.21420879662036896
            ]
          ]
        ]
      },
      {
        "bias": 0.3483165502548218,
        "weights": [
          [
            [
              0.032918818295001984,
              0.16698546707630157,
              0.18808385729789734
            ],
            [
              -0.18842415511608124,
              -0.19741851091384888,
              -0.3181258738040924
            ],
            [
              0.14529986679553986,
              -0.0633912906050682,
              -0.1235964298248291
            ]
          ],
          [
            [
              -0.17358721792697906,
              -0.14975450932979584,
              -0.12765149772167206
            ],
            [
              -0.1116621121764183,
              0.061584655195474625,
              -0.0584794245660305
            ],
            [
              -0.0361844040453434,
              -0.0742720440030098,
              -0.08337784558534622
            ]
          ],
          [
            [
              -0.16112861037254333,
              -0.20642298460006714,
              0.18931011855602264
            ],
            [
              -0.12355746328830719,
              -0.1905362457036972,
              0.071263886988163
            ],
            [
              0.05011044070124626,
              0.07991564273834229,
              0.07828167080879211
            ]
          ],
          [
            [
              -0.06476299464702606,
              0.05114796757698059,
              -0.1346709281206131
            ],
            [
              0.11902449280023575,
              -0.16854026913642883,
              0.12135276943445206
            ],
            [
              -0.19429254531860352,
              0.16592955589294434,
              0.11022176593542099
            ]
          ],
          [
            [
              0.08290845155715942,
              -0.08158741891384125,
              0.1433313637971878
            ],
            [
              3.642140654847026e-05,
              -0.07293203473091125,
              0.07498873025178909
            ],
            [
              0.14000684022903442,
              -0.16949677467346191,
              -0.12858793139457703
            ]
          ],
          [
            [
              0.14515793323516846,
              -0.11156363785266876,
              0.18032991886138916
            ],
            [
              0.0346059650182724,
              0.022723345085978508,
              0.1322818100452423
            ],
            [
              0.14743609726428986,
              -0.030711062252521515,
              0.03786199167370796
            ]
          ],
          [
            [
              0.10720982402563095,
              -0.11306586116552353,
              0.0857093334197998
            ],
            [
              -0.11355438083410263,
              -0.14333486557006836,
              0.03453052043914795
            ],
            [
              -0.004926359746605158,
              0.039875756949186325,
              -0.11913741379976273
            ]
          ],
          [
            [
              0.294634073972702,
              0.2950073778629303,
              0.21420356631278992
            ],
            [
              -0.21549411118030548,
              -0.017663640901446342,
              -0.14800578355789185
            ],
            [
              0.1540672779083252,
              0.13856224715709686,
              -0.07062943279743195
            ]
          ],
          [
            [
              0.09850916266441345,
              -0.024218950420618057,
              -0.05085296928882599
            ],
            [
              -0.1842269003391266,
              0.048921141773462296,
              -0.15639637410640717
            ],
            [
              0.15068410336971283,
              0.1781669557094574,
              0.13751555979251862
            ]
          ],
          [
            [
              -0.3126057982444763,
              -0.3406130373477936,
              -0.03664514049887657
            ],
            [
              -0.19378718733787537,
              -0.2823072373867035,
              -0.24569031596183777
            ],
            [
              -0.011888631619513035,
              -0.2881462574005127,
              -0.16774912178516388
            ]
          ]
        ]
      },
      {
        "bias": 0.04205586388707161,
        "weights": [
          [
            [
              -0.050872303545475006,
              -0.05784498527646065,
              0.08709856122732162
            ],
            [
              -0.02384408563375473,
              -0.09397155791521072,
              0.03822978958487511
            ],
            [
              0.07812274247407913,
              -0.041850049048662186,
              0.0914970338344574
            ]
          ],
          [
            [
              0.20612703263759613,
              0.10431799292564392,
              0.09797626733779907
            ],
            [
              -0.08422691375017166,
              -0.12570352852344513,
              0.03475036844611168
            ],
            [
              0.10499346256256104,
              0.17909479141235352,
              -0.07103309035301208
            ]
          ],
          [
            [
              -0.0803171768784523,
              0.14055944979190826,
              -0.0013921728823333979
            ],
            [
              -0.05157731845974922,
              0.14367206394672394,
              0.16281574964523315
            ],
            [
              0.1779191792011261,
              0.17450547218322754,
              -0.02203560434281826
            ]
          ],
          [
            [
              -0.17883086204528809,
              -0.04414394870400429,
              -0.06294535100460052
            ],
            [
              0.0421249195933342,
              -0.15779680013656616,
              0.08037769794464111
            ],
            [
              -0.2165309339761734,
              0.14304062724113464,
              -0.13399317860603333
            ]
          ],
          [
            [
              0.15507706999778748,
              0.132803812623024,
              0.011086942628026009
            ],
            [
              0.17226529121398926,
              0.12231457978487015,
              0.011460813693702221
            ],
            [
              -0.05953741818666458,
              0.009429561905562878,
              0.17142777144908905
            ]
          ],
          [
            [
              0.06041353940963745,
              0.05031156539916992,
              0.12597262859344482
            ],
            [
              0.10787922143936157,
              -0.04708215966820717,
              0.046055953949689865
            ],
            [
              -0.1617310792207718,
              0.16448339819908142,
              0.10370638221502304
            ]
          ],
          [
            [
              -0.07778611779212952,
              -0.07144667208194733,
              0.021185168996453285
            ],
            [
              -0.014000819995999336,
              -0.1030643954873085,
              0.0849083736538887
            ],
            [
              -0.14547759294509888,
              -0.13143889605998993,
              -0.14898383617401123
            ]
          ],
          [
            [
              -0.10427332669496536,
              0.013692626729607582,
              -0.041272081434726715
            ],
            [
              0.04340681806206703,
              0.011249948292970657,
              -0.06556360423564911
            ],
            [
              0.1761879026889801,
              -0.22885175049304962,
              0.22462105751037598
            ]
          ],
          [
            [
              -0.09201741963624954,
              -0.12168310582637787,
              0.02565200999379158
            ],
            [
              0.004468440543860197,
              -0.10384641587734222,
              0.08242103457450867
            ],
            [
              -0.10442862659692764,
              0.1434611976146698,
              -0.0901908352971077
            ]
          ],
          [
            [
              0.13533282279968262,
              0.22042447328567505,
              -0.0668957456946373
            ],
            [
              -0.07557129114866257,
              0.05515684932470322,
              0.23244601488113403
            ],
            [
              0.19463591277599335,
              0.07740461826324463,
              0.13794946670532227
            ]
          ]
        ]
      },
      {
        "bias": 0.014336160384118557,
        "weights": [
          [
            [
              0.0215923935174942,
              -0.16690650582313538,
              0.015022673644125462
            ],
            [
              0.2356853038072586,
              -0.16496746242046356,
              0.13733810186386108
            ],
            [
              -0.013798801228404045,
              0.12202651798725128,
              -0.09092853218317032
            ]
          ],
          [
            [
              0.1390375792980194,
              0.054428163915872574,
              -0.16656725108623505
            ],
            [
              -0.09568659216165543,
              0.07450474798679352,
              0.10316252708435059
            ],
            [
              -0.05642378702759743,
              0.11634775251150131,
              0.040672823786735535
            ]
          ],
          [
            [
              -0.09930086135864258,
              0.14880722761154175,
              -0.022999756038188934
            ],
            [
              0.07259044796228409,
              -0.20595431327819824,
              0.10381084680557251
            ],
            [
              -0.0962037593126297,
              0.057415831834077835,
              0.11492513865232468
            ]
          ],
          [
            [
              -0.07774700969457626,
              0.17856010794639587,
              -0.060527559369802475
            ],
            [
              0.025360064581036568,
              0.03321215882897377,
              0.024507902562618256
            ],
            [
              -0.10944100469350815,
              -0.02191023901104927,
              -0.15557676553726196
            ]
          ],
          [
            [
              -0.11318005621433258,
              -0.10387733578681946,
              0.016798585653305054
            ],
            [
              -0.1566755175590515,
              -0.05321263521909714,
              -0.058401837944984436
            ],
            [
              0.019487643614411354,
              0.12416136264801025,
              0.16156084835529327
            ]
          ],
          [
            [
              0.17321249842643738,
              0.15694253146648407,
              -0.1380874663591385
            ],
            [
              0.08091419190168381,
              -0.026859184727072716,
              0.055830758064985275
            ],
            [
              -0.08057769387960434,
              -0.03078553080558777,
              -0.14363344013690948
            ]
          ],
          [
            [
              0.051236167550086975,
              0.167289599776268,
              0.02166205458343029
            ],
            [
              0.0026116727385669947,
              0.14677225053310394,
              -0.13095352053642273
            ],
            [
              -0.005355099681764841,
              -0.14963918924331665,
              0.16254675388336182
            ]
          ],
          [
            [
              0.09966745227575302,
              0.1953197717666626,
              0.1834649294614792
            ],
            [
              -0.04643874615430832,
              0.003983447328209877,
              -0.1375250369310379
            ],
            [
              0.13853110373020172,
              0.02780631184577942,
              -0.021691713482141495
            ]
          ],
          [
            [
              -0.17471736669540405,
              -0.003995680715888739,
              0.0908963605761528
            ],
            [
              0.05729997158050537,
              -0.03710588812828064,
              0.14208091795444489
            ],
            [
              0.017629601061344147,
              0.14826329052448273,
              -0.04206182062625885
            ]
          ],
          [
            [
              0.04621823504567146,
              0.19993871450424194,
              0.12714999914169312
            ],
            [
              0.2284945249557495,
              0.06086286902427673,
              -0.09190674126148224
            ],
            [
              -0.014598064124584198,
              0.09851402789354324,
              -0.038618091493844986
            ]
          ]
        ]
      },
      {
        "bias": 0.10236959904432297,
        "weights": [
          [
            [
              0.13946866989135742,
              0.09682520478963852,
              0.1726500242948532
            ],
            [
              0.1549411416053772,
              0.20717331767082214,
              0.15288777649402618
            ],
            [
              0.2388300597667694,
              0.20189401507377625,
              0.2861592471599579
            ]
          ],
          [
            [
              0.1471264809370041,
              -0.15974710881710052,
              -0.15733277797698975
            ],
            [
              0.12168208509683609,
              0.046046722680330276,
              0.06857374310493469
            ],
            [
              0.09625067561864853,
              0.02841225638985634,
              -0.18588554859161377
            ]
          ],
          [
            [
              0.21173368394374847,
              -0.1557256281375885,
              0.19390174746513367
            ],
            [
              0.09824199974536896,
              -0.03420214727520943,
              -0.008039628155529499
            ],
            [
              -0.07244376838207245,
              0.12665802240371704,
              -0.14270643889904022
            ]
          ],
          [
            [
              -0.10829263925552368,
              -0.21082808077335358,
              -0.018086524680256844
            ],
            [
              -0.18155768513679504,
              -0.11288563162088394,
              -0.27771344780921936
            ],
            [
              -0.07960627973079681,
              -0.23326782882213593,
              0.029522554948925972
            ]
          ],
          [
            [
              0.1645551472902298,
              0.07067253440618515,
              -0.15274055302143097
            ],
            [
              0.09972383826971054,
              0.05966971442103386,
              0.05424782633781433
            ],
            [
              0.09747873246669769,
              0.17227253317832947,
              0.07710618525743484
            ]
          ],
          [
            [
              -0.142201766371727,
              0.06311608850955963,
              -0.09166456758975983
            ],
            [
              0.036629579961299896,
              -0.16250286996364594,
              -0.103266641497612
            ],
            [
              0.14275093376636505,
              -0.09976468980312347,
              -0.11892399936914444
            ]
          ],
          [
            [
              -0.062094107270240784,
              -0.07857262343168259,
              -0.06865912675857544
            ],
            [
              0.14247825741767883,
              0.017749130725860596,
              -0.17575152218341827
            ],
            [
              0.034957896918058395,
              -0.18680624663829803,
              -0.07339288294315338
            ]
          ],
          [
            [
              0.15000995993614197,
              0.15952040255069733,
              0.025392794981598854
            ],
            [
              0.008648335002362728,
              0.05714226886630058,
              0.10262136161327362
            ],
            [
              -0.02552706189453602,
              0.24016767740249634,
              -0.07566685974597931
            ]
          ],
          [
            [
              -0.0037647292483597994,
              -0.07180869579315186,
              -0.10357300192117691
            ],
            [
              -0.13562867045402527,
              -0.18133904039859772,
              0.10665327310562134
            ],
            [
              -0.1242426410317421,
              -0.08196112513542175,
              0.015137712471187115
            ]
          ],
          [
            [
              -0.08718607574701309,
              -0.11071056127548218,
              -0.19932056963443756
            ],
            [
              0.12107475847005844,
              0.031282905489206314,
              -0.008140921592712402
            ],
            [
              -0.10637729614973068,
              0.05876592919230461,
              -0.14555838704109192
            ]
          ]
        ]
      },
      {
        "bias": 0.09469860047101974,
        "weights": [
          [
            [
              -0.2105904221534729,
              0.0822480246424675,
              0.1040528193116188
            ],
            [
              -0.4372435510158539,
              -0.1394747942686081,
              -0.13298483192920685
            ],
            [
              0.07332262396812439,
              0.3908269703388214,
              0.38406169414520264
            ]
          ],
          [
            [
              -0.045297324657440186,
              0.09923484921455383,
              0.009942020289599895
            ],
            [
              -0.10473351180553436,
              0.1444244235754013,
              0.036649953573942184
            ],
            [
              0.05448807030916214,
              -0.1387009620666504,
              -0.09983030706644058
            ]
          ],
          [
            [
              -0.16015511751174927,
              0.11032894253730774,
              0.07853087782859802
            ],
            [
              -0.3843325972557068,
              -0.12732912600040436,
              -0.13995136320590973
            ],
            [
              -0.12522496283054352,
              0.1591143161058426,
              -0.1607891321182251
            ]
          ],
          [
            [
              -0.18878810107707977,
              -0.02027733065187931,
              -0.17432159185409546
            ],
            [
              0.09949029237031937,
              0.1345290243625641,
              0.33093181252479553
            ],
            [
              -0.0773019939661026,
              -0.12286946922540665,
              -0.07437783479690552
            ]
          ],
          [
            [
              -0.05076870322227478,
              -0.17143796384334564,
              -0.02844293601810932
            ],
            [
              -0.056532178074121475,
              -0.05581158027052879,
              0.13571591675281525
            ],
            [
              -0.0011971743078902364,
              0.1389237940311432,
              0.045508045703172684
            ]
          ],
          [
            [
              -0.14648418128490448,
              0.008594298735260963,
              0.06316842883825302
            ],
            [
              -0.1327832192182541,
              0.05533916503190994,
              0.0405786857008934
            ],
            [
              0.016748623922467232,
              -0.0036282374057918787,
              -0.06971527636051178
            ]
          ],
          [
            [
              -0.06318449974060059,
              -0.04867660999298096,
              0.0033905047457665205
            ],
            [
              -0.14766040444374084,
              0.07115902006626129,
              -0.1082526445388794
            ],
            [
              0.18094147741794586,
              0.075848788022995,
              0.010570191778242588
            ]
          ],
          [
            [
              -0.4461718201637268,
              -0.12685231864452362,
              -0.09470995515584946
            ],
            [
              -0.37245672941207886,
              0.06401273608207703,
              -0.10587650537490845
            ],
            [
              0.1323092132806778,
              0.2841692864894867,
              0.3288729190826416
            ]
          ],
          [
            [
              0.11332128196954727,
              0.07668281346559525,
              0.17105501890182495
            ],
            [
              0.07676290720701218,
              0.18461892008781433,
              -0.030073756352066994
            ],
            [
              -0.058217138051986694,
              0.06935951113700867,
              -0.10205817967653275
            ]
          ],
          [
            [
              0.0596625953912735,
              0.11606793105602264,
              -0.03409811481833458
            ],
            [
              -0.15589463710784912,
              -0.03166348114609718,
              -0.09652978181838989
            ],
            [
              -0.03323217108845711,
              0.14403294026851654,
              0.047793734818696976
            ]
          ]
        ]
      },
      {
        "bias": 0.01194368302822113,
        "weights": [
          [
            [
              -0.018009334802627563,
              0.03910083323717117,
              -0.12360009551048279
            ],
            [
              -0.16260863840579987,
              0.06422073394060135,
              0.1096610575914383
            ],
            [
              -0.09977766126394272,
              0.08435740321874619,
              -0.15145544707775116
            ]
          ],
          [
            [
              -0.15748460590839386,
              -0.02257942594587803,
              -0.12646594643592834
            ],
            [
              -0.17101167142391205,
              -0.10232622921466827,
              0.060039620846509933
            ],
            [
              -0.037509892135858536,
              0.13630206882953644,
              0.13288167119026184
            ]
          ],
          [
            [
              0.17928721010684967,
              0.06221248582005501,
              -0.1642381101846695
            ],
            [
              0.15033742785453796,
              -0.12057711184024811,
              -0.1177884042263031
            ],
            [
              -0.029275977984070778,
              0.13740703463554382,
              0.0059226457960903645
            ]
          ],
          [
            [
              -0.08302946388721466,
              -0.09800400584936142,
              -0.10539329797029495
            ],
            [
              -0.10979030281305313,
              0.12786464393138885,
              0.15422867238521576
            ],
            [
              0.1178753450512886,
              0.037778858095407486,
              -0.13282115757465363
            ]
          ],
          [
            [
              0.049398407340049744,
              -0.09233351051807404,
              0.020540276542305946
            ],
            [
              -0.07510533183813095,
              -0.0051919217221438885,
              0.03071579709649086
            ],
            [
              0.06637870520353317,
              0.14142747223377228,
              0.0987064316868782
            ]
          ],
          [
            [
              -0.06529685854911804,
              0.15087558329105377,
              0.1440766304731369
            ],
            [
              -0.09470537304878235,
              0.0037186474073678255,
              0.06637263298034668
            ],
            [
              -0.12547937035560608,
              0.16972284018993378,
              0.02478511817753315
            ]
          ],
          [
            [
              0.1591171771287918,
              0.13206999003887177,
              -0.128485769033432
            ],
            [
              -0.06297139078378677,
              0.07761325687170029,
              0.1717512309551239
            ],
            [
              0.006974450778216124,
              0.10103538632392883,
              0.15904146432876587
            ]
          ],
          [
            [
              -0.0991336777806282,
              0.10918153822422028,
              -0.1413096934556961
            ],
            [
              0.12189608812332153,
              -0.030078722164034843,
              0.16664233803749084
            ],
            [
              -0.03848503902554512,
              -0.044872891157865524,
              -0.05667019262909889
            ]
          ],
          [
            [
              -0.05376162379980087,
              0.12212453037500381,
              0.001853001187555492
            ],
            [
              0.007966096512973309,
              -0.052032239735126495,
              0.08911513537168503
            ],
            [
              0.10235605388879776,
              -0.1754452884197235,
              0.11022020131349564
            ]
          ],
          [
            [
              0.0523245595395565,
              -0.08961309492588043,
              0.028888678178191185
            ],
            [
              -0.182817280292511,
              -0.14101825654506683,
              0.07048813253641129
            ],
            [
              -0.08123685419559479,
              0.020566679537296295,
              0.1554270088672638
            ]
          ]
        ]
      }
    ]
  },
  {
    "name": "relu_1_2",
    "input_shape": [
      60,
      60,
      10
    ],
    "output_shape": [
      60,
      60,
      10
    ],
    "num_neurons": 10
  },
  {
    "name": "max_pool_1",
    "input_shape": [
      60,
      60,
      10
    ],
    "output_shape": [
      30,
      30,
      10
    ],
    "num_neurons": 10
  },
  {
    "name": "conv_2_1",
    "input_shape": [
      30,
      30,
      10
    ],
    "output_shape": [
      28,
      28,
      10
    ],
    "num_neurons": 10,
    "weights": [
      {
        "bias": 0.23078683018684387,
        "weights": [
          [
            [
              0.012396186590194702,
              0.106514573097229,
              -0.059165868908166885
            ],
            [
              0.0473598875105381,
              -0.06922586262226105,
              -0.010398129001259804
            ],
            [
              -0.10683242231607437,
              0.16645176708698273,
              -0.027350030839443207
            ]
          ],
          [
            [
              0.10285908728837967,
              0.01539174560457468,
              0.2610231935977936
            ],
            [
              0.09296361356973648,
              0.18699924647808075,
              0.16006100177764893
            ],
            [
              0.23022422194480896,
              0.10022423416376114,
              0.12351842224597931
            ]
          ],
          [
            [
              -0.11672525107860565,
              0.04385579749941826,
              -0.1581880748271942
            ],
            [
              0.06049090251326561,
              -0.09956669807434082,
              -0.054375164210796356
            ],
            [
              0.02838168479502201,
              0.19887058436870575,
              0.07822155952453613
            ]
          ],
          [
            [
              -0.011373915709555149,
              0.23057536780834198,
              -0.05637764558196068
            ],
            [
              0.12049947679042816,
              0.23012472689151764,
              -0.07205697149038315
            ],
            [
              0.13936983048915863,
              0.16423775255680084,
              0.1870001256465912
            ]
          ],
          [
            [
              0.25594502687454224,
              0.2258918136358261,
              -0.029594261199235916
            ],
            [
              0.21196569502353668,
              0.015812525525689125,
              0.0857214406132698
            ],
            [
              0.08068202435970306,
              -0.11682596802711487,
              -0.14986300468444824
            ]
          ],
          [
            [
              -0.03351468965411186,
              -0.027632812038064003,
              0.2219613939523697
            ],
            [
              0.23095473647117615,
              0.2543334364891052,
              0.11295383423566818
            ],
            [
              0.2238248735666275,
              0.14109322428703308,
              0.28218019008636475
            ]
          ],
          [
            [
              -0.0726231187582016,
              0.15335825085639954,
              -0.1863558143377304
            ],
            [
              -0.04176076874136925,
              -0.07777108252048492,
              -0.13225321471691132
            ],
            [
              0.11718687415122986,
              0.2275283932685852,
              -0.09361421316862106
            ]
          ],
          [
            [
              -0.2195308804512024,
              -0.06082876771688461,
              0.03180938959121704
            ],
            [
              -0.04475773125886917,
              -0.1764926314353943,
              -0.19074630737304688
            ],
            [
              0.02116229757666588,
              -0.10730506479740143,
              -0.12850704789161682
            ]
          ],
          [
            [
              -0.18486733734607697,
              -0.1645059436559677,
              -0.011868911795318127
            ],
            [
              -0.2320302575826645,
              -0.2014266848564148,
              -0.0683027133345604
            ],
            [
              -0.052557531744241714,
              -0.09631044417619705,
              -0.05061513930559158
            ]
          ],
          [
            [
              -0.12093799561262131,
              -0.02727758139371872,
              -0.003536903066560626
            ],
            [
              -0.17244760692119598,
              0.15485739707946777,
              0.08143389225006104
            ],
            [
              0.16484986245632172,
              -0.09964308887720108,
              -0.08044561743736267
            ]
          ]
        ]
      },
      {
        "bias": -0.057308949530124664,
        "weights": [
          [
            [
              -0.09050483256578445,
              0.12815767526626587,
              0.16287687420845032
            ],
            [
              0.183803990483284,
              0.20328572392463684,
              0.12396799027919769
            ],
            [
              -9.452683298150077e-05,
              -0.08443509787321091,
              0.10762670636177063
            ]
          ],
          [
            [
              -0.1335304081439972,
              -0.13950252532958984,
              -0.21879605948925018
            ],
            [
              -0.24052183330059052,
              0.03482829034328461,
              -0.2282852828502655
            ],
            [
              -0.22395604848861694,
              -0.0027982203755527735,
              0.060258373618125916
            ]
          ],
          [
            [
              0.07878094166517258,
              0.01724150963127613,
              0.0008939485996961594
            ],
            [
              0.11977328360080719,
              -0.18965256214141846,
              0.030577486380934715
            ],
            [
              0.13316135108470917,
              0.12767747044563293,
              0.10731510818004608
            ]
          ],
          [
            [
              0.183749720454216,
              -0.06252773851156235,
              -0.1400405764579773
            ],
            [
              -0.14373596012592316,
              -0.09674247354269028,
              -0.13893984258174896
            ],
            [
              -0.06367962062358856,
              0.14348967373371124,
              -0.010082925669848919
            ]
          ],
          [
            [
              0.050250597298145294,
              -0.09106949716806412,
              0.043723855167627335
            ],
            [
              -0.22382380068302155,
              -0.06815892457962036,
              -0.24148085713386536
            ],
            [
              -0.22215908765792847,
              0.13405835628509521,
              -0.03889786824584007
            ]
          ],
          [
            [
              -0.029541397467255592,
              0.039604585617780685,
              -0.06830139458179474
            ],
            [
              0.08915697783231735,
              -0.14642280340194702,
              0.010759814642369747
            ],
            [
              0.1909075230360031,
              0.06867215782403946,
              0.19335366785526276
            ]
          ],
          [
            [
              -0.14572195708751678,
              0.08272267132997513,
              -0.06870009750127792
            ],
            [
              -0.07135029137134552,
              -0.08967690169811249,
              0.17823578417301178
            ],
            [
              -0.016790935769677162,
              -0.0723540410399437,
              -0.12720520794391632
            ]
          ],
          [
            [
              -0.07198317348957062,
              -0.08225284516811371,
              -0.06538373976945877
            ],
            [
              0.009972434490919113,
              0.08435807377099991,
              0.21338078379631042
            ],
            [
              0.21013794839382172,
              0.27571287751197815,
              0.16767624020576477
            ]
          ],
          [
            [
              -0.09659308195114136,
              -0.08892834931612015,
              0.04783710464835167
            ],
            [
              0.07307176291942596,
              0.1534288227558136,
              0.08913584798574448
            ],
            [
              -0.09973634779453278,
              -0.15064027905464172,
              -0.046413201838731766
            ]
          ],
          [
            [
              0.06449321657419205,
              -0.06896071135997772,
              0.02535885013639927
            ],
            [
              0.12327052652835846,
              -0.053086407482624054,
              0.07709107547998428
            ],
            [
              0.17837822437286377,
              0.03317869082093239,
              -0.1522664576768875
            ]
          ]
        ]
      },
      {
        "bias": -0.026059698313474655,
        "weights": [
          [
            [
              -0.15007951855659485,
              -0.0826105996966362,
              0.06387073546648026
            ],
            [
              0.0058092703111469746,
              -0.14636841416358948,
              -0.149959534406662
            ],
            [
              0.13165725767612457,
              -0.040089916437864304,
              -0.17642652988433838
            ]
          ],
          [
            [
              0.10313130170106888,
              -0.07163388282060623,
              -0.14289669692516327
            ],
            [
              -0.1887245625257492,
              0.12385864555835724,
              0.1596568524837494
            ],
            [
              -0.08863251656293869,
              -0.013152513653039932,
              -0.0032642274163663387
            ]
          ],
          [
            [
              0.149405837059021,
              -0.11012585461139679,
              0.019091080874204636
            ],
            [
              0.009260197170078754,
              0.13162799179553986,
              -0.017952140420675278
            ],
            [
              -0.14289560914039612,
              -0.11887412518262863,
              -0.0405728742480278
            ]
          ],
          [
            [
              -0.04376418888568878,
              -0.11715403199195862,
              0.0011360639473423362
            ],
            [
              -0.16810937225818634,
              0.144540473818779,
              -0.1474577635526657
            ],
            [
              0.0034044382628053427,
              -0.14074952900409698,
              0.007462761830538511
            ]
          ],
          [
            [
              0.1627795696258545,
              0.024526961147785187,
              0.063499316573143
            ],
            [
              0.151484414935112,
              -0.03054751269519329,
              -0.15957514941692352
            ],
            [
              0.07261790335178375,
              0.07631902396678925,
              0.057671498507261276
            ]
          ],
          [
            [
              0.04817947372794151,
              0.04407208412885666,
              0.112233966588974
            ],
            [
              0.10323022305965424,
              0.08272760361433029,
              -0.17297306656837463
            ],
            [
              -0.10106699913740158,
              -0.011175623163580894,
              0.08249827474355698
            ]
          ],
          [
            [
              0.02647663652896881,
              -0.17062802612781525,
              0.1257237046957016
            ],
            [
              0.04216809570789337,
              -0.10751289874315262,
              0.02213270217180252
            ],
            [
              -0.17760638892650604,
              0.058295294642448425,
              0.015924541279673576
            ]
          ],
          [
            [
              -0.024231404066085815,
              -0.03134108707308769,
              0.16960833966732025
            ],
            [
              -0.042533110827207565,
              -0.13449126482009888,
              0.0006716327625326812
            ],
            [
              -0.18493595719337463,
              0.09931904077529907,
              -0.08988532423973083
            ]
          ],
          [
            [
              -0.1356506645679474,
              -0.06827053427696228,
              0.17023585736751556
            ],
            [
              -0.028375260531902313,
              -0.08702178299427032,
              -0.1335667222738266
            ],
            [
              -0.061089497059583664,
              -0.09718924760818481,
              -0.08918967097997665
            ]
          ],
          [
            [
              0.10196224600076675,
              -0.18089181184768677,
              0.14458014070987701
            ],
            [
              -0.009191855788230896,
              0.14005054533481598,
              -0.08165542781352997
            ],
            [
              -0.1418958604335785,
              0.0806783139705658,
              -0.030212635174393654
            ]
          ]
        ]
      },
      {
        "bias": -0.00868820771574974,
        "weights": [
          [
            [
              -0.15327812731266022,
              -0.15684106945991516,
              -0.09862995147705078
            ],
            [
              -0.1392715722322464,
              0.02297556959092617,
              -0.049294907599687576
            ],
            [
              -0.016246501356363297,
              -0.0766921415925026,
              -0.12175631523132324
            ]
          ],
          [
            [
              0.16165898740291595,
              -0.047843266278505325,
              -0.03394342213869095
            ],
            [
              0.16841118037700653,
              -0.1869945377111435,
              0.015181371010839939
            ],
            [
              -0.04449327290058136,
              -0.04168952628970146,
              -0.02938416227698326
            ]
          ],
          [
            [
              -0.09043948352336884,
              -0.12080211937427521,
              0.13188543915748596
            ],
            [
              0.18012335896492004,
              -0.08274321258068085,
              -0.1497965157032013
            ],
            [
              -0.10115096718072891,
              0.002968881046399474,
              -0.15274283289909363
            ]
          ],
          [
            [
              0.12413588166236877,
              0.15294747054576874,
              -0.1342247724533081
            ],
            [
              0.015276852063834667,
              -0.1625896394252777,
              -0.15562738478183746
            ],
            [
              -0.15663205087184906,
              -0.1001645028591156,
              -0.15538941323757172
            ]
          ],
          [
            [
              0.09208566695451736,
              -0.011178149841725826,
              -0.16122280061244965
            ],
            [
              0.10234502702951431,
              0.10364406555891037,
              -0.08907386660575867
            ],
            [
              0.0834117978811264,
              0.005532237701117992,
              0.06636765599250793
            ]
          ],
          [
            [
              0.16093949973583221,
              -0.02300426922738552,
              -0.1140693873167038
            ],
            [
              -0.1308731585741043,
              0.08393826335668564,
              -0.15887396037578583
            ],
            [
              0.04560978710651398,
              0.07385460287332535,
              0.16902343928813934
            ]
          ],
          [
            [
              -0.07676400244235992,
              0.07403796911239624,
              0.022018754854798317
            ],
            [
              0.002957345684990287,
              0.1573934704065323,
              0.036665670573711395
            ],
            [
              0.010597487911581993,
              -0.12240803241729736,
              -0.032673951238393784
            ]
          ],
          [
            [
              0.04240453243255615,
              -0.11351556330919266,
              -0.04438462108373642
            ],
            [
              0.006118774879723787,
              -0.015009335242211819,
              -0.08410405367612839
            ],
            [
              -0.0913618803024292,
              0.03194887191057205,
              0.08386318385601044
            ]
          ],
          [
            [
              -0.15381479263305664,
              -0.11809832602739334,
              0.12145192921161652
            ],
            [
              -0.05429745092988014,
              0.1322549730539322,
              0.03329390659928322
            ],
            [
              -0.13567295670509338,
              -0.10557886958122253,
              0.09567809104919434
            ]
          ],
          [
            [
              0.10477942228317261,
              -0.0323621928691864,
              -0.052374619990587234
            ],
            [
              -0.1321583241224289,
              -0.056856222450733185,
              0.003001779317855835
            ],
            [
              0.13107536733150482,
              0.1097632497549057,
              -0.04634663462638855
            ]
          ]
        ]
      },
      {
        "bias": 0.10796646773815155,
        "weights": [
          [
            [
              -0.1507304608821869,
              0.026182429865002632,
              0.1444566398859024
            ],
            [
              -0.08902022987604141,
              0.10641860216856003,
              -0.13652002811431885
            ],
            [
              -0.039226654917001724,
              -0.022110262885689735,
              0.12704786658287048
            ]
          ],
          [
            [
              0.3481782078742981,
              0.047287702560424805,
              0.04006631299853325
            ],
            [
              0.011805927380919456,
              0.01431749016046524,
              -0.09476961940526962
            ],
            [
              0.1401517689228058,
              -0.13059474527835846,
              0.11255893856287003
            ]
          ],
          [
            [
              0.11205146461725235,
              0.206292986869812,
              0.377199649810791
            ],
            [
              -0.028613677248358727,
              0.1723896861076355,
              0.0018812445923686028
            ],
            [
              0.11386403441429138,
              -0.06011408194899559,
              0.02250262349843979
            ]
          ],
          [
            [
              -0.05323943868279457,
              0.0508950911462307,
              0.29620838165283203
            ],
            [
              0.17404206097126007,
              -0.13460589945316315,
              0.09607753902673721
            ],
            [
              0.030427904799580574,
              0.10790881514549255,
              -0.0872771218419075
            ]
          ],
          [
            [
              -0.2658837139606476,
              -0.1246415376663208,
              -0.1741020381450653
            ],
            [
              0.009110961109399796,
              -0.2966923415660858,
              0.01331463735550642
            ],
            [
              -0.3045470714569092,
              -0.0006362893618643284,
              -0.3392437696456909
            ]
          ],
          [
            [
              0.058949440717697144,
              0.048762403428554535,
              0.09043963253498077
            ],
            [
              -0.14432676136493683,
              0.1221139207482338,
              0.07445020973682404
            ],
            [
              -0.0939536914229393,
              0.11804372817277908,
              0.11689592897891998
            ]
          ],
          [
            [
              0.0008243181509897113,
              0.20011498034000397,
              -0.0012665813555940986
            ],
            [
              -0.030231043696403503,
              0.03821808844804764,
              0.18870511651039124
            ],
            [
              0.12854346632957458,
              0.10788316279649734,
              0.23676030337810516
            ]
          ],
          [
            [
              -0.04490512236952782,
              -0.1087682768702507,
              -0.04493439570069313
            ],
            [
              0.19902750849723816,
              0.11878892034292221,
              0.34698039293289185
            ],
            [
              -0.0190410278737545,
              0.15304304659366608,
              0.2643662095069885
            ]
          ],
          [
            [
              -0.0857265517115593,
              -0.07916845381259918,
              -0.09775075316429138
            ],
            [
              -0.19191114604473114,
              0.02176794782280922,
              0.05157535523176193
            ],
            [
              0.04070887342095375,
              0.03840877115726471,
              -0.2585756778717041
            ]
          ],
          [
            [
              0.043157365173101425,
              -0.1509348303079605,
              -0.004716380499303341
            ],
            [
              -0.03060164675116539,
              0.0992133617401123,
              -0.1614258885383606
            ],
            [
              -0.0033713087905198336,
              0.10944762825965881,
              -0.16037793457508087
            ]
          ]
        ]
      },
      {
        "bias": 0.05496266856789589,
        "weights": [
          [
            [
              -0.13509221374988556,
              -0.08933935314416885,
              0.14709274470806122
            ],
            [
              0.05901208147406578,
              0.06928139925003052,
              0.07829902321100235
            ],
            [
              0.002249462064355612,
              -0.18047143518924713,
              0.03880225494503975
            ]
          ],
          [
            [
              0.030934272333979607,
              -0.02754145674407482,
              0.054108597338199615
            ],
            [
              0.25470981001853943,
              0.10047401487827301,
              0.14475074410438538
            ],
            [
              0.11149384081363678,
              -0.048276420682668686,
              0.00662165367975831
            ]
          ],
          [
            [
              0.05291430652141571,
              0.19186468422412872,
              0.07003743201494217
            ],
            [
              -0.11174073815345764,
              0.1881842464208603,
              0.1360943466424942
            ],
            [
              0.07475761324167252,
              -0.07336270064115524,
              -0.10000384598970413
            ]
          ],
          [
            [
              -0.07975286990404129,
              -0.24706263840198517,
              -0.26596394181251526
            ],
            [
              -0.23612700402736664,
              -0.01565210521221161,
              0.07619105279445648
            ],
            [
              -0.04895380511879921,
              -0.2918459177017212,
              -0.18951596319675446
            ]
          ],
          [
            [
              0.14410583674907684,
              -0.035015467554330826,
              0.1238742396235466
            ],
            [
              -0.11094899475574493,
              0.2838386595249176,
              0.1437252163887024
            ],
            [
              -0.026335369795560837,
              -0.02288086898624897,
              0.10518255829811096
            ]
          ],
          [
            [
              -0.1502123922109604,
              -0.1990748941898346,
              -0.12756723165512085
            ],
            [
              0.03942368924617767,
              -0.11737325042486191,
              0.08303513377904892
            ],
            [
              -0.05691595748066902,
              0.05863361805677414,
              0.018958356231451035
            ]
          ],
          [
            [
              0.01500424649566412,
              -0.13895905017852783,
              -0.019347142428159714
            ],
            [
              0.13329140841960907,
              0.1639011800289154,
              0.009016373194754124
            ],
            [
              -0.13765521347522736,
              -0.084888756275177,
              0.06924717873334885
            ]
          ],
          [
            [
              -0.20339468121528625,
              0.0933724194765091,
              0.043660301715135574
            ],
            [
              -0.06258143484592438,
              -0.012316839769482613,
              0.1963297426700592
            ],
            [
              0.10155200958251953,
              0.2652052640914917,
              0.3104066252708435
            ]
          ],
          [
            [
              -0.3128395676612854,
              -0.29480090737342834,
              -0.24699248373508453
            ],
            [
              -0.12206172943115234,
              -0.19278986752033234,
              -0.3234478533267975
            ],
            [
              0.03785733878612518,
              -0.26259225606918335,
              -0.30989569425582886
            ]
          ],
          [
            [
              -0.09871251881122589,
              -0.12416747212409973,
              0.047914400696754456
            ],
            [
              0.16389912366867065,
              0.011755961924791336,
              -0.017375703901052475
            ],
            [
              0.08810996264219284,
              -0.03147492557764053,
              -0.08156110346317291
            ]
          ]
        ]
      },
      {
        "bias": -0.03608671948313713,
        "weights": [
          [
            [
              0.07521034777164459,
              0.032540932297706604,
              -0.1476229876279831
            ],
            [
              -0.10402955114841461,
              -0.10514653474092484,
              0.10495533049106598
            ],
            [
              0.1492186337709427,
              -0.12216785550117493,
              0.07365602254867554
            ]
          ],
          [
            [
              -0.03775200992822647,
              -0.09271999448537827,
              -0.13640622794628143
            ],
            [
              0.007787204813212156,
              0.13475951552391052,
              0.08501224964857101
            ],
            [
              0.038410719484090805,
              -0.18841730058193207,
              -0.07372402399778366
            ]
          ],
          [
            [
              -0.06593351066112518,
              -0.06819465011358261,
              0.10519562661647797
            ],
            [
              -0.07410232722759247,
              0.09198575466871262,
              0.17219869792461395
            ],
            [
              0.060195110738277435,
              -0.015554492361843586,
              0.15317052602767944
            ]
          ],
          [
            [
              -0.10770566016435623,
              -0.0653575137257576,
              0.16414234042167664
            ],
            [
              -0.10187935829162598,
              -0.04773027449846268,
              0.038777489215135574
            ],
            [
              0.05748850852251053,
              0.041632648557424545,
              0.062476158142089844
            ]
          ],
          [
            [
              -0.025755811482667923,
              -0.07449911534786224,
              0.032723233103752136
            ],
            [
              -0.1973990947008133,
              -0.1767793446779251,
              -0.06521757692098618
            ],
            [
              0.029782965779304504,
              0.02546435222029686,
              -0.03705110400915146
            ]
          ],
          [
            [
              -0.09324422478675842,
              -0.14537101984024048,
              0.1318194717168808
            ],
            [
              0.00044559736852534115,
              -0.12903304398059845,
              -0.12332028895616531
            ],
            [
              0.14647816121578217,
              -0.10266920924186707,
              0.14999932050704956
            ]
          ],
          [
            [
              -0.06336613744497299,
              0.08409980684518814,
              -0.08580014109611511
            ],
            [
              0.1320841759443283,
              -0.1531745195388794,
              -0.1763831228017807
            ],
            [
              0.04841432720422745,
              -0.013923467136919498,
              0.08944347500801086
            ]
          ],
          [
            [
              -0.16080684959888458,
              0.04525016248226166,
              0.0414198562502861
            ],
            [
              -0.14402882754802704,
              -0.1412883847951889,
              0.055425647646188736
            ],
            [
              0.017574450001120567,
              0.18039840459823608,
              -0.009708801284432411
            ]
          ],
          [
            [
              -0.13676346838474274,
              0.014800326898694038,
              0.05060349404811859
            ],
            [
              -0.04449760541319847,
              0.025106903165578842,
              0.0704495757818222
            ],
            [
              0.10736533999443054,
              -0.050611693412065506,
              -0.014067563228309155
            ]
          ],
          [
            [
              0.037774667143821716,
              -0.1306772530078888,
              -0.13443945348262787
            ],
            [
              0.005202122963964939,
              -0.09896185249090195,
              0.16476544737815857
            ],
            [
              -0.057337626814842224,
              0.060669589787721634,
              -0.07003173232078552
            ]
          ]
        ]
      },
      {
        "bias": 0.009175595827400684,
        "weights": [
          [
            [
              0.1372649222612381,
              0.07310942560434341,
              0.09293381869792938
            ],
            [
              -0.01409513596445322,
              0.18146024644374847,
              0.19604869186878204
            ],
            [
              -0.008923155255615711,
              -0.19196783006191254,
              -0.13125421106815338
            ]
          ],
          [
            [
              0.014929680153727531,
              -0.09620988368988037,
              -0.15984515845775604
            ],
            [
              0.09972062706947327,
              -0.022798551246523857,
              -0.055318545550107956
            ],
            [
              -0.17736919224262238,
              -0.1110055148601532,
              -0.1602240949869156
            ]
          ],
          [
            [
              0.19213220477104187,
              0.09443316608667374,
              0.16093586385250092
            ],
            [
              0.0033481072168797255,
              -0.037993114441633224,
              -0.12192386388778687
            ],
            [
              -0.1685992330312729,
              -0.14172862470149994,
              0.07944667339324951
            ]
          ],
          [
            [
              -0.12170552462339401,
              -0.13767358660697937,
              0.07502470165491104
            ],
            [
              0.03369561582803726,
              -0.15253625810146332,
              -0.11817822605371475
            ],
            [
              -0.100308857858181,
              -0.016297699883580208,
              -0.10435254126787186
            ]
          ],
          [
            [
              0.04112238064408302,
              0.0213188286870718,
              0.11308953911066055
            ],
            [
              -0.0010636821389198303,
              0.08405053615570068,
              0.17462211847305298
            ],
            [
              -0.09219279885292053,
              0.06761076301336288,
              -0.008089696988463402
            ]
          ],
          [
            [
              -0.061231330037117004,
              -0.17982029914855957,
              -0.21145972609519958
            ],
            [
              -0.10267185419797897,
              -0.10252882540225983,
              0.08570924401283264
            ],
            [
              -0.025686895474791527,
              0.16276656091213226,
              0.022308165207505226
            ]
          ],
          [
            [
              -0.016727356240153313,
              0.14001750946044922,
              0.12016607820987701
            ],
            [
              0.141238272190094,
              -0.09624945372343063,
              -0.1236259713768959
            ],
            [
              0.08482365310192108,
              -0.150004044175148,
              0.09036954492330551
            ]
          ],
          [
            [
              0.08908596634864807,
              0.13462431728839874,
              -0.05469755828380585
            ],
            [
              0.09516725689172745,
              -0.1146475225687027,
              0.20659831166267395
            ],
            [
              -0.04286177083849907,
              0.029708532616496086,
              0.007774696219712496
            ]
          ],
          [
            [
              0.009699777700006962,
              -0.09435168653726578,
              0.06956082582473755
            ],
            [
              0.08944177627563477,
              -0.14151452481746674,
              0.08015299588441849
            ],
            [
              0.1195245310664177,
              0.06250646710395813,
              -0.15702283382415771
            ]
          ],
          [
            [
              0.1309179812669754,
              -0.05220411345362663,
              0.12045758962631226
            ],
            [
              -0.13330580294132233,
              -0.0012973755365237594,
              0.1349809318780899
            ],
            [
              -0.027604976668953896,
              -0.16998353600502014,
              0.1366959810256958
            ]
          ]
        ]
      },
      {
        "bias": -0.003776360535994172,
        "weights": [
          [
            [
              0.17279647290706635,
              -0.06964075565338135,
              0.04323156550526619
            ],
            [
              -0.025604162365198135,
              0.14047738909721375,
              -0.004479078575968742
            ],
            [
              0.029341932386159897,
              0.030494775623083115,
              -0.1335068941116333
            ]
          ],
          [
            [
              0.09240026026964188,
              -0.11094912886619568,
              0.08517055958509445
            ],
            [
              0.012049105018377304,
              -0.07688391953706741,
              0.1787722110748291
            ],
            [
              -0.023024313151836395,
              -0.1682383269071579,
              -0.178447887301445
            ]
          ],
          [
            [
              -0.1495608389377594,
              0.16619254648685455,
              0.1342262476682663
            ],
            [
              0.1576603502035141,
              -0.10944052785634995,
              -0.01419719960540533
            ],
            [
              -0.03726334124803543,
              -0.04629863426089287,
              -0.10657647252082825
            ]
          ],
          [
            [
              -0.17824728786945343,
              -0.08168867975473404,
              0.025643901899456978
            ],
            [
              -0.12964068353176117,
              0.09894271939992905,
              -0.10827117413282394
            ],
            [
              -0.16557833552360535,
              -0.0790194496512413,
              0.13079170882701874
            ]
          ],
          [
            [
              -0.02129005640745163,
              -0.14314498007297516,
              -0.056888509541749954
            ],
            [
              0.135353684425354,
              0.08285944163799286,
              -0.12849228084087372
            ],
            [
              0.07882042229175568,
              -0.16718867421150208,
              -0.1280491203069687
            ]
          ],
          [
            [
              0.17641016840934753,
              -0.09271540492773056,
              0.03547276556491852
            ],
            [
              -0.11888423562049866,
              0.0356455072760582,
              -0.1658187210559845
            ],
            [
              -0.1298179030418396,
              0.01567753776907921,
              0.054983582347631454
            ]
          ],
          [
            [
              -0.01863483153283596,
              0.1717471331357956,
              -0.07820325344800949
            ],
            [
              -0.17182089388370514,
              0.16218425333499908,
              -0.018255263566970825
            ],
            [
              -0.0573904886841774,
              -0.07738706469535828,
              -0.18235725164413452
            ]
          ],
          [
            [
              0.0639929473400116,
              -0.11592573672533035,
              0.060891155153512955
            ],
            [
              -0.10414804518222809,
              0.11736100167036057,
              -0.11977871507406235
            ],
            [
              0.051007796078920364,
              0.022053631022572517,
              -0.07404788583517075
            ]
          ],
          [
            [
              -0.146500825881958,
              0.1362224519252777,
              0.02524641901254654
            ],
            [
              -0.16801369190216064,
              -0.02728229947388172,
              -0.18054360151290894
            ],
            [
              0.16980679333209991,
              0.15864145755767822,
              0.052760049700737
            ]
          ],
          [
            [
              -0.020358631387352943,
              -0.06838512420654297,
              -0.09648600220680237
            ],
            [
              0.1290944218635559,
              0.11064353585243225,
              0.014462131075561047
            ],
            [
              0.047761350870132446,
              -0.14560990035533905,
              -0.08718659728765488
            ]
          ]
        ]
      },
      {
        "bias": -0.07763895392417908,
        "weights": [
          [
            [
              0.2694922685623169,
              0.24197611212730408,
              0.08383424580097198
            ],
            [
              0.0990048423409462,
              -0.0034763102885335684,
              0.15709368884563446
            ],
            [
              0.13681627810001373,
              0.07826804369688034,
              0.07874651998281479
            ]
          ],
          [
            [
              0.11787533760070801,
              0.23093080520629883,
              0.2037479430437088
            ],
            [
              0.01225980930030346,
              -0.014696580357849598,
              0.21061557531356812
            ],
            [
              -0.18517103791236877,
              0.06154485419392586,
              -0.10908146947622299
            ]
          ],
          [
            [
              0.32395485043525696,
              0.2772344648838043,
              0.2637268304824829
            ],
            [
              0.31862667202949524,
              0.20011520385742188,
              -0.022607995197176933
            ],
            [
              0.27067869901657104,
              0.25704577565193176,
              0.0024352900218218565
            ]
          ],
          [
            [
              0.00820037443190813,
              0.1509440690279007,
              -0.17756050825119019
            ],
            [
              -0.15615518391132355,
              -0.11637229472398758,
              0.0665382444858551
            ],
            [
              0.006587250158190727,
              0.10080977529287338,
              -0.036548878997564316
            ]
          ],
          [
            [
              0.2496289610862732,
              0.2784920930862427,
              0.06407802551984787
            ],
            [
              0.06363044679164886,
              0.038830626755952835,
              0.0685986652970314
            ],
            [
              0.23036327958106995,
              0.08188434690237045,
              0.13114432990550995
            ]
          ],
          [
            [
              0.13804379105567932,
              -0.06537020951509476,
              0.07749289274215698
            ],
            [
              0.06075216084718704,
              -0.10845176130533218,
              -0.13249245285987854
            ],
            [
              -0.28506502509117126,
              0.0771365612745285,
              0.03315943852066994
            ]
          ],
          [
            [
              0.10850785672664642,
              0.19386376440525055,
              0.04043261706829071
            ],
            [
              -0.11965324729681015,
              0.15540647506713867,
              0.054148077964782715
            ],
            [
              -0.08049509674310684,
              -0.09168446809053421,
              -0.03272629529237747
            ]
          ],
          [
            [
              -0.15657858550548553,
              -0.1601806879043579,
              0.08438631892204285
            ],
            [
              0.14753501117229462,
              0.07282920926809311,
              0.08307341486215591
            ],
            [
              0.11728155612945557,
              -0.2642086446285248,
              -0.043825458735227585
            ]
          ],
          [
            [
              -0.047177258878946304,
              0.19377855956554413,
              0.23226378858089447
            ],
            [
              0.11053099483251572,
              -0.07336296886205673,
              0.19029884040355682
            ],
            [
              -0.07901981472969055,
              0.16959023475646973,
              0.20988865196704865
            ]
          ],
          [
            [
              -0.1105785146355629,
              0.022895105183124542,
              -0.05301348865032196
            ],
            [
              -0.11357446014881134,
              0.12780886888504028,
              0.10286659002304077
            ],
            [
              0.18008482456207275,
              0.057069484144449234,
              -0.1692861020565033
            ]
          ]
        ]
      }
    ]
  },
  {
    "name": "relu_2_1",
    "input_shape": [
      28,
      28,
      10
    ],
    "output_shape": [
      28,
      28,
      10
    ],
    "num_neurons": 10
  },
  {
    "name": "conv_2_2",
    "input_shape": [
      28,
      28,
      10
    ],
    "output_shape": [
      26,
      26,
      10
    ],
    "num_neurons": 10,
    "weights": [
      {
        "bias": -0.06928090751171112,
        "weights": [
          [
            [
              0.08598040044307709,
              -0.15661418437957764,
              0.10458510369062424
            ],
            [
              -0.11801018565893173,
              0.0066466866992414,
              -0.07464653998613358
            ],
            [
              -0.0566081739962101,
              -0.07635676115751266,
              0.016953084617853165
            ]
          ],
          [
            [
              -0.04266742616891861,
              0.15755142271518707,
              -0.08596903830766678
            ],
            [
              0.03977324068546295,
              0.17321203649044037,
              0.16583320498466492
            ],
            [
              -0.1584334522485733,
              -0.11751523613929749,
              0.15463431179523468
            ]
          ],
          [
            [
              -0.17958573997020721,
              0.1346961259841919,
              0.07698938250541687
            ],
            [
              -0.17861729860305786,
              0.023941045626997948,
              0.016261372715234756
            ],
            [
              0.05962218716740608,
              0.04584416374564171,
              -0.11381524801254272
            ]
          ],
          [
            [
              0.11156799644231796,
              -0.012116417288780212,
              0.1565047651529312
            ],
            [
              0.007633236236870289,
              0.13187412917613983,
              -0.15669921040534973
            ],
            [
              -0.1256016343832016,
              -0.04784016311168671,
              -0.10156258195638657
            ]
          ],
          [
            [
              0.23189041018486023,
              0.18846964836120605,
              0.09803152829408646
            ],
            [
              0.10253984481096268,
              0.2656000554561615,
              -0.08241341263055801
            ],
            [
              0.10929454118013382,
              0.20914490520954132,
              0.2639399468898773
            ]
          ],
          [
            [
              0.11014262586832047,
              0.12597136199474335,
              -0.062423381954431534
            ],
            [
              0.23459452390670776,
              0.18304942548274994,
              -0.00461974460631609
            ],
            [
              0.19337813556194305,
              0.17780911922454834,
              0.15392877161502838
            ]
          ],
          [
            [
              0.16176021099090576,
              0.08786827325820923,
              -0.16233132779598236
            ],
            [
              0.1456843465566635,
              0.17537158727645874,
              0.13992878794670105
            ],
            [
              0.09141495823860168,
              0.1278669387102127,
              0.07846090197563171
            ]
          ],
          [
            [
              0.09421935677528381,
              0.008094422519207,
              0.07347014546394348
            ],
            [
              -0.049914367496967316,
              -0.09917126595973969,
              0.031234242022037506
            ],
            [
              -0.14336086809635162,
              0.15580561757087708,
              0.0460781529545784
            ]
          ],
          [
            [
              -0.11763220280408859,
              0.13204853236675262,
              0.04893353208899498
            ],
            [
              -0.012086287140846252,
              0.018663855269551277,
              -0.04036339744925499
            ],
            [
              0.005858162883669138,
              0.04900277405977249,
              -0.0608283169567585
            ]
          ],
          [
            [
              -0.09456668049097061,
              0.004962638486176729,
              0.13074404001235962
            ],
            [
              0.016134988516569138,
              -0.20001815259456635,
              0.10673729330301285
            ],
            [
              -0.0930432379245758,
              0.11103270202875137,
              -0.05254105478525162
            ]
          ]
        ]
      },
      {
        "bias": -0.016896897926926613,
        "weights": [
          [
            [
              0.010515295900404453,
              0.07174450904130936,
              0.03518962115049362
            ],
            [
              -0.15565933287143707,
              0.17348918318748474,
              -0.046614233404397964
            ],
            [
              -0.10957509279251099,
              -0.07884623855352402,
              -0.08424291759729385
            ]
          ],
          [
            [
              -0.04069344699382782,
              -0.018266776576638222,
              -0.052818767726421356
            ],
            [
              -0.12165004014968872,
              0.16037918627262115,
              0.0028885514475405216
            ],
            [
              0.09751822054386139,
              -0.008691028691828251,
              0.05092262104153633
            ]
          ],
          [
            [
              -0.1637870818376541,
              -0.11834993958473206,
              0.03644406422972679
            ],
            [
              0.17490926384925842,
              -0.16657812893390656,
              -0.1686854362487793
            ],
            [
              -0.00875480379909277,
              0.10025767982006073,
              0.079607293009758
            ]
          ],
          [
            [
              -0.16998125612735748,
              0.011822454631328583,
              0.10799288004636765
            ],
            [
              0.1708323359489441,
              0.11254071444272995,
              -0.023379087448120117
            ],
            [
              -0.09230536222457886,
              0.13267692923545837,
              0.06022457033395767
            ]
          ],
          [
            [
              -0.039116840809583664,
              -0.09745854884386063,
              0.10001355409622192
            ],
            [
              -0.058901846408843994,
              -0.0633816346526146,
              0.25829941034317017
            ],
            [
              -0.0033515046816319227,
              -0.10516081750392914,
              0.1933746188879013
            ]
          ],
          [
            [
              -0.0191354937851429,
              0.033260591328144073,
              0.10637985169887543
            ],
            [
              -0.06287524849176407,
              -0.16584312915802002,
              -0.178731769323349
            ],
            [
              -0.11020718514919281,
              -0.26101186871528625,
              -0.27676376700401306
            ]
          ],
          [
            [
              0.12988366186618805,
              -0.09975159913301468,
              -0.03594619408249855
            ],
            [
              0.013879583217203617,
              -0.014339292421936989,
              -0.12960761785507202
            ],
            [
              -0.029267409816384315,
              0.0656919926404953,
              -0.06838901340961456
            ]
          ],
          [
            [
              -0.16180476546287537,
              0.13674040138721466,
              -0.14401094615459442
            ],
            [
              0.12005572766065598,
              0.05233161896467209,
              0.02275143563747406
            ],
            [
              -0.044939711689949036,
              0.1748659610748291,
              -0.027873260900378227
            ]
          ],
          [
            [
              0.14486064016819,
              0.11711373925209045,
              -0.13860833644866943
            ],
            [
              0.003040055511519313,
              0.09735389053821564,
              -0.03913307562470436
            ],
            [
              0.14987336099147797,
              -0.16979654133319855,
              0.05046921595931053
            ]
          ],
          [
            [
              0.33600518107414246,
              0.23251022398471832,
              0.17040139436721802
            ],
            [
              0.014293010346591473,
              -0.04002862796187401,
              0.18930195271968842
            ],
            [
              0.08930770307779312,
              0.11070305109024048,
              0.16571563482284546
            ]
          ]
        ]
      },
      {
        "bias": 0.0003043923934455961,
        "weights": [
          [
            [
              -0.03225057199597359,
              -0.1675012707710266,
              0.1059720367193222
            ],
            [
              -0.1665038913488388,
              -0.04912973567843437,
              -0.062342386692762375
            ],
            [
              -0.10942523181438446,
              -0.12790238857269287,
              -0.17531943321228027
            ]
          ],
          [
            [
              -0.12098591774702072,
              -0.14656835794448853,
              0.12434645742177963
            ],
            [
              -0.1253986656665802,
              -0.06918247044086456,
              -0.08831476420164108
            ],
            [
              -0.10906275361776352,
              0.0639200359582901,
              -0.018018294125795364
            ]
          ],
          [
            [
              -0.13535581529140472,
              -0.025706501677632332,
              0.07317788898944855
            ],
            [
              -0.1467301845550537,
              9.577369200997055e-05,
              -0.10828758031129837
            ],
            [
              0.0753730982542038,
              -0.018032625317573547,
              -0.08529771864414215
            ]
          ],
          [
            [
              -0.1071033701300621,
              -0.14495904743671417,
              0.16617079079151154
            ],
            [
              -0.05282296612858772,
              -0.16811032593250275,
              0.15499021112918854
            ],
            [
              -0.014911152422428131,
              0.04684891551733017,
              -0.02959609217941761
            ]
          ],
          [
            [
              0.06498781591653824,
              -0.04017537459731102,
              -0.10274551808834076
            ],
            [
              0.07708664238452911,
              -0.17044679820537567,
              0.009095845744013786
            ],
            [
              -0.0026617608964443207,
              -0.05690290406346321,
              -0.13626231253147125
            ]
          ],
          [
            [
              -0.02382458932697773,
              -0.16046307981014252,
              -0.04977470263838768
            ],
            [
              0.027230404317378998,
              -0.13205501437187195,
              0.08445755392313004
            ],
            [
              0.17525137960910797,
              -0.01425952184945345,
              0.05640949308872223
            ]
          ],
          [
            [
              -0.011486219242215157,
              0.03407638147473335,
              0.06504546105861664
            ],
            [
              0.07462088763713837,
              0.11084514111280441,
              -0.17557725310325623
            ],
            [
              -0.00040298295789398253,
              -0.053970303386449814,
              -0.044276539236307144
            ]
          ],
          [
            [
              0.06198526918888092,
              0.13931012153625488,
              0.12043576687574387
            ],
            [
              -0.1402665078639984,
              0.05957089737057686,
              0.003116732696071267
            ],
            [
              -0.10933493077754974,
              -0.04451589658856392,
              -0.11461278051137924
            ]
          ],
          [
            [
              0.17624329030513763,
              0.1451093852519989,
              -0.01907532475888729
            ],
            [
              -0.16605983674526215,
              0.10669174790382385,
              -0.0948493480682373
            ],
            [
              -0.1267155110836029,
              -0.12291537970304489,
              0.05642882362008095
            ]
          ],
          [
            [
              0.17027094960212708,
              -0.08252441138029099,
              -0.10560049116611481
            ],
            [
              -0.13899169862270355,
              -0.01087633054703474,
              0.015592963434755802
            ],
            [
              -0.05057007446885109,
              -0.1585644632577896,
              0.06018302962183952
            ]
          ]
        ]
      },
      {
        "bias": 0.025450965389609337,
        "weights": [
          [
            [
              -0.14883872866630554,
              -0.1539710909128189,
              0.030757807195186615
            ],
            [
              -0.13624624907970428,
              -0.017219746485352516,
              0.0077850897796452045
            ],
            [
              0.07874865084886551,
              -0.03389166668057442,
              0.18048839271068573
            ]
          ],
          [
            [
              0.0376468263566494,
              0.11783362925052643,
              0.09815100580453873
            ],
            [
              0.10770928859710693,
              0.1612078994512558,
              -0.12880432605743408
            ],
            [
              -0.010542704723775387,
              0.1984904557466507,
              -0.11256863176822662
            ]
          ],
          [
            [
              0.06596554070711136,
              0.11651577055454254,
              -0.11643873155117035
            ],
            [
              0.15006743371486664,
              -0.1437334269285202,
              0.1470753401517868
            ],
            [
              -0.13797885179519653,
              -0.018675317987799644,
              0.15400108695030212
            ]
          ],
          [
            [
              0.12248498201370239,
              -0.06398702412843704,
              0.18048100173473358
            ],
            [
              0.04396796599030495,
              0.002043294021859765,
              -0.08613097667694092
            ],
            [
              0.1374073177576065,
              0.005020493175834417,
              -0.13388139009475708
            ]
          ],
          [
            [
              -0.06050415709614754,
              -0.11082898080348969,
              0.09905088692903519
            ],
            [
              0.143870010972023,
              0.15556935966014862,
              0.01168390829116106
            ],
            [
              -0.030719488859176636,
              -0.162771075963974,
              -0.0974450558423996
            ]
          ],
          [
            [
              -0.296623170375824,
              0.09341170638799667,
              0.05299468711018562
            ],
            [
              0.12450848519802094,
              -0.1708381175994873,
              -0.05469423532485962
            ],
            [
              -0.11729957908391953,
              -0.13073882460594177,
              -0.09305202215909958
            ]
          ],
          [
            [
              0.14354491233825684,
              -0.07621651887893677,
              0.1559310257434845
            ],
            [
              0.16547739505767822,
              0.04346732795238495,
              -0.16540241241455078
            ],
            [
              -0.14048179984092712,
              0.1427590399980545,
              0.12544023990631104
            ]
          ],
          [
            [
              -0.05909881368279457,
              0.17422327399253845,
              0.19445350766181946
            ],
            [
              0.054037272930145264,
              -0.1322638839483261,
              0.07989992946386337
            ],
            [
              -0.09926623106002808,
              0.09489045292139053,
              0.0921379029750824
            ]
          ],
          [
            [
              -0.13270999491214752,
              -0.042694009840488434,
              -0.020755372941493988
            ],
            [
              -0.021717816591262817,
              -0.1382790207862854,
              0.12393639981746674
            ],
            [
              -0.03843085840344429,
              -0.052387405186891556,
              -0.03458016365766525
            ]
          ],
          [
            [
              0.260768860578537,
              0.11117256432771683,
              0.18648739159107208
            ],
            [
              0.27562054991722107,
              0.19844390451908112,
              0.2226613461971283
            ],
            [
              0.25097647309303284,
              0.11254110932350159,
              0.11099715530872345
            ]
          ]
        ]
      },
      {
        "bias": 0.08187747746706009,
        "weights": [
          [
            [
              0.10404898971319199,
              0.08964062482118607,
              0.02767273783683777
            ],
            [
              -0.21951045095920563,
              -0.05491212010383606,
              -0.23909711837768555
            ],
            [
              -0.12873464822769165,
              -0.12541238963603973,
              -0.016261311247944832
            ]
          ],
          [
            [
              0.05838247761130333,
              -0.040936172008514404,
              0.08199704438447952
            ],
            [
              -0.1735961139202118,
              -0.13730625808238983,
              0.17307841777801514
            ],
            [
              -0.12099836766719818,
              -0.10004908591508865,
              0.07688338309526443
            ]
          ],
          [
            [
              -0.18259228765964508,
              0.15632861852645874,
              0.006600016262382269
            ],
            [
              -0.023014860227704048,
              0.07120193541049957,
              -0.09667934477329254
            ],
            [
              0.16096729040145874,
              0.14017324149608612,
              -0.11965309828519821
            ]
          ],
          [
            [
              -0.12984591722488403,
              0.11726689338684082,
              0.16403205692768097
            ],
            [
              -0.08682794868946075,
              0.004607963841408491,
              0.052352651953697205
            ],
            [
              0.13781727850437164,
              -0.033284109085798264,
              -0.13342851400375366
            ]
          ],
          [
            [
              0.17575091123580933,
              -0.05865838751196861,
              0.3193773031234741
            ],
            [
              0.22509527206420898,
              0.09300155937671661,
              0.16211801767349243
            ],
            [
              0.2365456372499466,
              0.09619361162185669,
              0.035926446318626404
            ]
          ],
          [
            [
              -0.0903039500117302,
              0.2372758835554123,
              0.23922602832317352
            ],
            [
              -0.0025516848545521498,
              -0.05170881748199463,
              -0.003260094905272126
            ],
            [
              -0.013456434942781925,
              0.2358999252319336,
              0.027249205857515335
            ]
          ],
          [
            [
              0.06481575965881348,
              0.04652019962668419,
              0.17423945665359497
            ],
            [
              0.041122306138277054,
              0.06162906438112259,
              -0.12034609913825989
            ],
            [
              -0.0683126226067543,
              0.05408501252532005,
              0.009873728267848492
            ]
          ],
          [
            [
              -0.023901041597127914,
              0.16978727281093597,
              -0.13701239228248596
            ],
            [
              -0.15532830357551575,
              0.19634653627872467,
              -0.06749705225229263
            ],
            [
              0.06686746329069138,
              -0.04560288041830063,
              0.1947353482246399
            ]
          ],
          [
            [
              0.09764733165502548,
              0.11716950684785843,
              -0.05606110766530037
            ],
            [
              0.0921536460518837,
              -0.17302048206329346,
              -0.05728591978549957
            ],
            [
              -0.039875198155641556,
              -0.15957432985305786,
              0.1714814454317093
            ]
          ],
          [
            [
              -0.09091954678297043,
              0.1893412321805954,
              0.2223561853170395
            ],
            [
              -0.09084659069776535,
              -0.090516097843647,
              0.25710973143577576
            ],
            [
              0.015550807118415833,
              -0.0536077618598938,
              -0.07631698250770569
            ]
          ]
        ]
      },
      {
        "bias": -0.0007078819326125085,
        "weights": [
          [
            [
              0.10348378121852875,
              0.1658703088760376,
              0.21937958896160126
            ],
            [
              -0.1605636179447174,
              -0.10375072062015533,
              0.0317123606801033
            ],
            [
              -0.08316430449485779,
              0.10123857110738754,
              -0.13323435187339783
            ]
          ],
          [
            [
              0.046227842569351196,
              0.25546056032180786,
              0.2341330200433731
            ],
            [
              0.24970883131027222,
              0.026491131633520126,
              0.20424413681030273
            ],
            [
              0.05459621176123619,
              0.022550098598003387,
              0.017616553232073784
            ]
          ],
          [
            [
              0.12702660262584686,
              0.05750229209661484,
              0.12593555450439453
            ],
            [
              0.09516311436891556,
              -0.021120281890034676,
              0.17927201092243195
            ],
            [
              -0.15829746425151825,
              0.08277112990617752,
              -0.02489512600004673
            ]
          ],
          [
            [
              -0.09650641679763794,
              -0.16835880279541016,
              0.06058763340115547
            ],
            [
              -0.17324136197566986,
              0.05352270230650902,
              0.13822206854820251
            ],
            [
              -0.05745401233434677,
              0.1021539568901062,
              0.04325346648693085
            ]
          ],
          [
            [
              0.08210805058479309,
              0.17616593837738037,
              0.15967094898223877
            ],
            [
              0.3011374771595001,
              0.20852616429328918,
              0.1891082376241684
            ],
            [
              0.07962772250175476,
              -0.10633142292499542,
              -0.01192254014313221
            ]
          ],
          [
            [
              -0.07665342092514038,
              -0.0029840569477528334,
              -0.10289561003446579
            ],
            [
              -0.11194054782390594,
              -0.2018415778875351,
              -0.03850949928164482
            ],
            [
              -0.10226105898618698,
              0.027894427999854088,
              -0.33567458391189575
            ]
          ],
          [
            [
              -0.05404815077781677,
              -0.1340097039937973,
              -0.04483448714017868
            ],
            [
              0.10605424642562866,
              0.033482909202575684,
              -0.03591015562415123
            ],
            [
              0.050270434468984604,
              -0.08913973718881607,
              0.12602296471595764
            ]
          ],
          [
            [
              0.05558621138334274,
              -0.015462568961083889,
              -0.011693321168422699
            ],
            [
              -0.030964285135269165,
              -0.12944014370441437,
              0.009920598939061165
            ],
            [
              0.09361882507801056,
              -0.06596191972494125,
              0.02901480719447136
            ]
          ],
          [
            [
              -0.16552084684371948,
              0.07774512469768524,
              -0.1292998492717743
            ],
            [
              -0.17971312999725342,
              -0.1001170203089714,
              0.022619865834712982
            ],
            [
              0.01972196064889431,
              0.11501184105873108,
              0.12538138031959534
            ]
          ],
          [
            [
              0.019463486969470978,
              -0.0983787402510643,
              0.13546645641326904
            ],
            [
              -0.16044984757900238,
              0.12485826760530472,
              0.05440671741962433
            ],
            [
              -0.1767689734697342,
              0.08979399502277374,
              -0.13887923955917358
            ]
          ]
        ]
      },
      {
        "bias": 0.08010556548833847,
        "weights": [
          [
            [
              0.1133585199713707,
              -0.00997573509812355,
              0.14980067312717438
            ],
            [
              0.2416609227657318,
              0.2957213819026947,
              0.31225094199180603
            ],
            [
              0.15922629833221436,
              0.30081695318222046,
              0.2270483672618866
            ]
          ],
          [
            [
              -0.1329600065946579,
              -0.07163365930318832,
              0.0458776131272316
            ],
            [
              -0.09909605979919434,
              -0.06709331274032593,
              0.037862274795770645
            ],
            [
              -0.18296410143375397,
              -0.1338837444782257,
              -0.26663830876350403
            ]
          ],
          [
            [
              0.06541728228330612,
              -0.13355036079883575,
              -0.020394109189510345
            ],
            [
              -0.11164810508489609,
              0.1490645706653595,
              0.017893286421895027
            ],
            [
              -0.09118642657995224,
              -0.1515958458185196,
              -0.03566630929708481
            ]
          ],
          [
            [
              0.07353078573942184,
              -0.16447250545024872,
              0.17671015858650208
            ],
            [
              -0.04292967915534973,
              -0.05507134273648262,
              0.14150682091712952
            ],
            [
              0.10491141676902771,
              0.011298518627882004,
              0.10192622989416122
            ]
          ],
          [
            [
              0.18014416098594666,
              -0.07646407932043076,
              -0.05285857990384102
            ],
            [
              -0.1046762764453888,
              0.01189336646348238,
              0.033325064927339554
            ],
            [
              -0.18640351295471191,
              -0.10287334024906158,
              0.1082197055220604
            ]
          ],
          [
            [
              0.19771923124790192,
              0.169350266456604,
              0.14940451085567474
            ],
            [
              0.18463142216205597,
              0.11183974891901016,
              -0.0458606481552124
            ],
            [
              -0.04137343913316727,
              0.24504254758358002,
              0.2552352547645569
            ]
          ],
          [
            [
              0.03883717954158783,
              0.018807582557201385,
              -0.10296282172203064
            ],
            [
              0.07945653796195984,
              0.04317868500947952,
              -0.1169438287615776
            ],
            [
              0.07721126079559326,
              0.05919022485613823,
              0.05295775085687637
            ]
          ],
          [
            [
              0.07933920621871948,
              -0.11539453268051147,
              -0.14242030680179596
            ],
            [
              -0.09015672653913498,
              0.0723484605550766,
              0.11390630900859833
            ],
            [
              -0.20067369937896729,
              0.12236489355564117,
              -0.00815193448215723
            ]
          ],
          [
            [
              0.1511957347393036,
              0.04844445362687111,
              0.016093147918581963
            ],
            [
              -0.02125474624335766,
              0.016247756779193878,
              -0.1110120490193367
            ],
            [
              0.12395704537630081,
              0.09948017448186874,
              -0.04832472652196884
            ]
          ],
          [
            [
              0.20658090710639954,
              0.22431017458438873,
              0.1386585384607315
            ],
            [
              0.022130215540528297,
              0.2725863456726074,
              0.01770108751952648
            ],
            [
              -0.17148301005363464,
              0.12963199615478516,
              0.02227788418531418
            ]
          ]
        ]
      },
      {
        "bias": -0.00032840375206433237,
        "weights": [
          [
            [
              0.14926579594612122,
              -0.1658632755279541,
              -0.006891955621540546
            ],
            [
              0.018407020717859268,
              0.11032596230506897,
              -0.09037923067808151
            ],
            [
              0.054062776267528534,
              -0.024696068838238716,
              -0.13622203469276428
            ]
          ],
          [
            [
              0.04308362305164337,
              0.011902612634003162,
              -0.14171727001667023
            ],
            [
              -0.029846854507923126,
              -0.10324931889772415,
              -0.060329001396894455
            ],
            [
              0.18067266047000885,
              -0.17709118127822876,
              -0.017955072224140167
            ]
          ],
          [
            [
              -0.07637296617031097,
              -0.04532130807638168,
              0.09160733222961426
            ],
            [
              -0.07682713866233826,
              0.11216340959072113,
              -0.08164174854755402
            ],
            [
              -0.15361127257347107,
              -0.12153203040361404,
              0.07293781638145447
            ]
          ],
          [
            [
              -0.06226680055260658,
              -0.020958133041858673,
              -0.17354628443717957
            ],
            [
              0.005389615427702665,
              -0.021011322736740112,
              -0.12607698142528534
            ],
            [
              -0.02782212570309639,
              -0.10399992018938065,
              -0.14286470413208008
            ]
          ],
          [
            [
              -0.0819178894162178,
              0.05096708983182907,
              0.0012606605887413025
            ],
            [
              -0.05451017990708351,
              0.1276327669620514,
              -0.15054619312286377
            ],
            [
              -0.12790453433990479,
              0.04455510899424553,
              -0.11942426860332489
            ]
          ],
          [
            [
              0.07089143991470337,
              -0.027805596590042114,
              -0.0731336772441864
            ],
            [
              -0.15991254150867462,
              0.0080441078171134,
              -0.01506744883954525
            ],
            [
              0.09929340332746506,
              0.031093627214431763,
              0.07412277162075043
            ]
          ],
          [
            [
              0.03911280632019043,
              0.004630458075553179,
              -0.15607154369354248
            ],
            [
              -0.03609822317957878,
              -0.0874827653169632,
              0.04198885336518288
            ],
            [
              0.003667711280286312,
              0.12561820447444916,
              0.05015202611684799
            ]
          ],
          [
            [
              -0.17954029142856598,
              -0.17719751596450806,
              -0.12609604001045227
            ],
            [
              0.06174042820930481,
              -0.12848852574825287,
              -0.03465423732995987
            ],
            [
              -0.009152312763035297,
              0.06498356908559799,
              0.08579559624195099
            ]
          ],
          [
            [
              0.15141189098358154,
              0.043854519724845886,
              0.0866377055644989
            ],
            [
              -0.02429567277431488,
              0.02457781881093979,
              0.10732681304216385
            ],
            [
              -0.17606911063194275,
              0.18131668865680695,
              -0.11436362564563751
            ]
          ],
          [
            [
              -0.06993728131055832,
              -0.07894193381071091,
              -0.03506617620587349
            ],
            [
              -0.04411335662007332,
              -0.10679899901151657,
              0.03913060203194618
            ],
            [
              0.15648718178272247,
              -0.09655686467885971,
              0.11565577238798141
            ]
          ]
        ]
      },
      {
        "bias": 0.10102199018001556,
        "weights": [
          [
            [
              -0.18843390047550201,
              -0.17197029292583466,
              0.09857185930013657
            ],
            [
              -0.06710131466388702,
              0.042346883565187454,
              0.12859860062599182
            ],
            [
              -0.08121371269226074,
              -0.03670134395360947,
              0.0045297881588339806
            ]
          ],
          [
            [
              -0.14061777293682098,
              -0.1551135927438736,
              0.12329231202602386
            ],
            [
              0.12051475793123245,
              0.20856688916683197,
              0.11334879696369171
            ],
            [
              -0.12097702920436859,
              0.13367164134979248,
              -0.16495303809642792
            ]
          ],
          [
            [
              0.12965843081474304,
              0.18333521485328674,
              0.08880039304494858
            ],
            [
              0.12541590631008148,
              0.06118476018309593,
              -0.06615698337554932
            ],
            [
              0.044610921293497086,
              -0.002378442557528615,
              -0.1364840716123581
            ]
          ],
          [
            [
              0.07500725239515305,
              0.15382656455039978,
              -0.18037930130958557
            ],
            [
              -0.09707397222518921,
              0.025962140411138535,
              0.17580506205558777
            ],
            [
              -0.05261111259460449,
              0.04544889181852341,
              0.1407015472650528
            ]
          ],
          [
            [
              -0.00922468863427639,
              0.15449784696102142,
              0.12286806851625443
            ],
            [
              0.26022836565971375,
              0.29797008633613586,
              0.12426729500293732
            ],
            [
              0.028880679979920387,
              -0.10370765626430511,
              -0.1462513953447342
            ]
          ],
          [
            [
              -0.11443484574556351,
              0.09595445543527603,
              -0.0535745806992054
            ],
            [
              0.03697243332862854,
              -0.13069505989551544,
              -0.2539665400981903
            ],
            [
              -0.2158351093530655,
              -0.3199607729911804,
              -0.16416803002357483
            ]
          ],
          [
            [
              -0.11691446602344513,
              0.030756477266550064,
              -0.09193025529384613
            ],
            [
              -0.07388360798358917,
              0.046113599091768265,
              -0.17120300233364105
            ],
            [
              0.1160215511918068,
              0.034703608602285385,
              0.18252792954444885
            ]
          ],
          [
            [
              -0.07212908565998077,
              0.09425552934408188,
              -0.020474182441830635
            ],
            [
              -0.14558999240398407,
              -0.2292071431875229,
              -0.09061917662620544
            ],
            [
              -0.13141657412052155,
              -0.06997330486774445,
              -0.12621599435806274
            ]
          ],
          [
            [
              -0.16734322905540466,
              -0.1640625,
              0.17294487357139587
            ],
            [
              -0.03534962981939316,
              -0.03587022051215172,
              -0.1575644314289093
            ],
            [
              0.003622462972998619,
              -0.17602811753749847,
              -0.06479363888502121
            ]
          ],
          [
            [
              0.10049576312303543,
              -0.13191525638103485,
              0.17221088707447052
            ],
            [
              0.08992503583431244,
              0.09434428811073303,
              0.01953481324017048
            ],
            [
              0.027625583112239838,
              -0.13099995255470276,
              0.22338591516017914
            ]
          ]
        ]
      },
      {
        "bias": 0.1839410364627838,
        "weights": [
          [
            [
              0.33975979685783386,
              -0.0007806850480847061,
              0.008579856716096401
            ],
            [
              0.3656090497970581,
              0.2688677906990051,
              0.016921566799283028
            ],
            [
              0.35365620255470276,
              0.12918882071971893,
              -0.05961879342794418
            ]
          ],
          [
            [
              -0.14423567056655884,
              -0.05012332648038864,
              0.07619207352399826
            ],
            [
              -0.09011676162481308,
              -0.04360014945268631,
              -0.07565093785524368
            ],
            [
              0.019539909437298775,
              0.13974043726921082,
              -0.14280207455158234
            ]
          ],
          [
            [
              0.03198204189538956,
              0.06887462735176086,
              -0.1125723198056221
            ],
            [
              0.14379338920116425,
              -0.07409057766199112,
              0.14650262892246246
            ],
            [
              -0.17403532564640045,
              0.07053810358047485,
              0.03149620443582535
            ]
          ],
          [
            [
              -0.02583300694823265,
              -0.16200023889541626,
              -0.0300496444106102
            ],
            [
              -0.1711486428976059,
              -0.07888854295015335,
              0.07103282958269119
            ],
            [
              0.031202886253595352,
              0.008295580744743347,
              -0.07996819913387299
            ]
          ],
          [
            [
              0.1111307144165039,
              0.01955331861972809,
              0.2893529236316681
            ],
            [
              -0.15778030455112457,
              0.1852802336215973,
              0.24673998355865479
            ],
            [
              -0.13873955607414246,
              -0.1221257820725441,
              0.020849088206887245
            ]
          ],
          [
            [
              0.09436196833848953,
              -0.11874820291996002,
              0.13310982286930084
            ],
            [
              -0.18267351388931274,
              -0.16806723177433014,
              -0.10300038754940033
            ],
            [
              0.03245091810822487,
              0.02065262384712696,
              -0.02199680171906948
            ]
          ],
          [
            [
              -0.14088568091392517,
              -0.07974132150411606,
              0.07132813334465027
            ],
            [
              0.10476739704608917,
              -0.1766519844532013,
              0.054840538650751114
            ],
            [
              -0.16788484156131744,
              0.03572266548871994,
              -0.09109844267368317
            ]
          ],
          [
            [
              -0.08281754702329636,
              0.0322098508477211,
              0.17384164035320282
            ],
            [
              -0.07534745335578918,
              0.02286914363503456,
              -0.07090599089860916
            ],
            [
              -0.06827270239591599,
              -0.008776373229920864,
              0.06894057989120483
            ]
          ],
          [
            [
              -0.16268222033977509,
              -0.08499103039503098,
              0.15647783875465393
            ],
            [
              -0.15771383047103882,
              0.15894384682178497,
              0.15144884586334229
            ],
            [
              0.07181107997894287,
              -0.06984170526266098,
              -0.07709267735481262
            ]
          ],
          [
            [
              0.006052928511053324,
              -0.146978959441185,
              -0.041797246783971786
            ],
            [
              -0.14079707860946655,
              -0.22883114218711853,
              -0.11258888989686966
            ],
            [
              -0.16370557248592377,
              -0.10180635750293732,
              -0.016936233267188072
            ]
          ]
        ]
      }
    ]
  },
  {
    "name": "relu_2_2",
    "input_shape": [
      26,
      26,
      10
    ],
    "output_shape": [
      26,
      26,
      10
    ],
    "num_neurons": 10
  },
  {
    "name": "max_pool_2",
    "input_shape": [
      26,
      26,
      10
    ],
    "output_shape": [
      13,
      13,
      10
    ],
    "num_neurons": 10
  },
  {
    "name": "conv_3_1",
    "input_shape": [
      13,
      13,
      10
    ],
    "output_shape": [
      11,
      11,
      10
    ],
    "num_neurons": 10,
    "weights": [
      {
        "bias": 0.0007923436933197081,
        "weights": [
          [
            [
              0.014084209688007832,
              0.12834112346172333,
              0.13770976662635803
            ],
            [
              -0.15767118334770203,
              -0.14443932473659515,
              0.020143991336226463
            ],
            [
              -0.137760728597641,
              0.09652291983366013,
              -0.05444719269871712
            ]
          ],
          [
            [
              -0.09999548643827438,
              0.11078786849975586,
              -0.022936243563890457
            ],
            [
              -0.1495421975851059,
              -0.18033678829669952,
              0.0147013608366251
            ],
            [
              0.11255548149347305,
              -0.08196849375963211,
              -0.020989680662751198
            ]
          ],
          [
            [
              -0.020475145429372787,
              0.10974124073982239,
              0.13217176496982574
            ],
            [
              0.1812802404165268,
              0.1309806853532791,
              0.165183424949646
            ],
            [
              0.032678816467523575,
              0.11972841620445251,
              0.11467933654785156
            ]
          ],
          [
            [
              -0.01285762619227171,
              -0.04902748763561249,
              -0.17654164135456085
            ],
            [
              -0.03163326531648636,
              0.08867398649454117,
              -0.14534570276737213
            ],
            [
              0.05154038593173027,
              -0.11657627671957016,
              -0.1699831187725067
            ]
          ],
          [
            [
              -0.05665671080350876,
              -0.04876944422721863,
              0.04310169443488121
            ],
            [
              -0.07165641337633133,
              0.02466914989054203,
              -0.1543319970369339
            ],
            [
              -0.07406008988618851,
              0.09902089834213257,
              -0.0853695422410965
            ]
          ],
          [
            [
              -0.09680116176605225,
              0.0020944171119481325,
              0.06861642003059387
            ],
            [
              0.06426360458135605,
              0.0014486954314634204,
              -0.06736121326684952
            ],
            [
              -0.02081463299691677,
              0.010254998691380024,
              -0.1277466118335724
            ]
          ],
          [
            [
              0.13085784018039703,
              0.01865667849779129,
              0.11534454673528671
            ],
            [
              -0.16589294373989105,
              0.15188102424144745,
              -0.02093818411231041
            ],
            [
              -0.1733652651309967,
              -0.005625993013381958,
              -0.07835599780082703
            ]
          ],
          [
            [
              -0.0005362312076613307,
              -0.14726924896240234,
              0.11500425636768341
            ],
            [
              0.04323713108897209,
              -0.02632644958794117,
              -0.12503141164779663
            ],
            [
              -0.08531049638986588,
              0.03978920727968216,
              0.026031920686364174
            ]
          ],
          [
            [
              -0.09447162598371506,
              0.08095337450504303,
              -0.0033416757360100746
            ],
            [
              0.07817487418651581,
              -0.08524847030639648,
              0.15410764515399933
            ],
            [
              0.07341686636209488,
              -0.08353333920240402,
              0.09512470662593842
            ]
          ],
          [
            [
              -0.1630215346813202,
              -0.048441022634506226,
              -0.13386407494544983
            ],
            [
              0.03796912357211113,
              -0.12130269408226013,
              0.10480397939682007
            ],
            [
              -0.09396984428167343,
              0.14544925093650818,
              0.13277694582939148
            ]
          ]
        ]
      },
      {
        "bias": -0.03995319455862045,
        "weights": [
          [
            [
              0.10615699738264084,
              0.1713346689939499,
              -0.20744158327579498
            ],
            [
              0.12267278879880905,
              0.11937644332647324,
              0.00038562045665457845
            ],
            [
              0.03341822326183319,
              0.11432299017906189,
              -0.05625610798597336
            ]
          ],
          [
            [
              0.09210916608572006,
              -0.040792591869831085,
              -0.02658102475106716
            ],
            [
              0.08646120131015778,
              0.12138230353593826,
              -0.1291978806257248
            ],
            [
              0.02896762639284134,
              -0.13562193512916565,
              -0.21209317445755005
            ]
          ],
          [
            [
              0.11792007833719254,
              -0.08320023119449615,
              -0.04069831594824791
            ],
            [
              0.15743722021579742,
              -0.1775541752576828,
              -0.10747846961021423
            ],
            [
              0.15329301357269287,
              0.1677314192056656,
              0.12893836200237274
            ]
          ],
          [
            [
              0.12554802000522614,
              -0.17939364910125732,
              0.11124496906995773
            ],
            [
              0.09351976215839386,
              -0.1847659945487976,
              -0.10156165063381195
            ],
            [
              0.05262088030576706,
              -0.03287182003259659,
              -0.1808682680130005
            ]
          ],
          [
            [
              0.024454670026898384,
              -0.012735440395772457,
              -0.12574359774589539
            ],
            [
              0.07756925374269485,
              -0.010186216793954372,
              0.010992603376507759
            ],
            [
              -0.0616394467651844,
              0.13827480375766754,
              -0.001830886583775282
            ]
          ],
          [
            [
              -0.18649210035800934,
              -0.06740047037601471,
              -0.15099391341209412
            ],
            [
              -0.07808662205934525,
              0.14133435487747192,
              0.17570528388023376
            ],
            [
              -0.1506563127040863,
              0.1270168423652649,
              0.0695977583527565
            ]
          ],
          [
            [
              -0.07790328562259674,
              -0.11900027841329575,
              -0.14872725307941437
            ],
            [
              0.010531118139624596,
              -0.06965688616037369,
              -0.1263745129108429
            ],
            [
              -0.09708639979362488,
              -0.09562280029058456,
              -0.049736279994249344
            ]
          ],
          [
            [
              0.1256728172302246,
              -0.11736968904733658,
              0.12513695657253265
            ],
            [
              -0.023180535063147545,
              0.1055678203701973,
              0.0043745096772909164
            ],
            [
              -0.05807867273688316,
              0.10425814986228943,
              -0.020190350711345673
            ]
          ],
          [
            [
              -0.06526564061641693,
              -0.07953085005283356,
              0.06664080917835236
            ],
            [
              -0.14328138530254364,
              0.0676945149898529,
              -0.16580939292907715
            ],
            [
              -0.094744972884655,
              -0.027153242379426956,
              -0.0967867374420166
            ]
          ],
          [
            [
              0.03862609341740608,
              -0.10124414414167404,
              0.14332693815231323
            ],
            [
              0.16817833483219147,
              0.024794770404696465,
              0.06339366734027863
            ],
            [
              -0.0812276303768158,
              0.19088798761367798,
              -0.07698020339012146
            ]
          ]
        ]
      },
      {
        "bias": -0.1186998263001442,
        "weights": [
          [
            [
              -0.1698475033044815,
              -0.052456241101026535,
              0.0413820780813694
            ],
            [
              -0.06934557110071182,
              -0.10775590687990189,
              0.09477849304676056
            ],
            [
              -0.09385121613740921,
              -0.0356290377676487,
              0.04569070041179657
            ]
          ],
          [
            [
              0.22217205166816711,
              0.07174063473939896,
              -0.11545348912477493
            ],
            [
              0.21276743710041046,
              0.1291293352842331,
              0.01896503008902073
            ],
            [
              0.14763914048671722,
              0.1861116588115692,
              0.08590038865804672
            ]
          ],
          [
            [
              0.026769159361720085,
              -0.045213937759399414,
              0.075718954205513
            ],
            [
              -0.14487768709659576,
              0.0035822070203721523,
              0.14938460290431976
            ],
            [
              -0.06984766572713852,
              -0.07488036900758743,
              0.10114625096321106
            ]
          ],
          [
            [
              0.23332081735134125,
              0.09064438939094543,
              -0.036316052079200745
            ],
            [
              -0.16097210347652435,
              0.005021014250814915,
              0.06244467943906784
            ],
            [
              -0.03754465654492378,
              0.045506302267313004,
              -0.042660053819417953
            ]
          ],
          [
            [
              -0.21556663513183594,
              -0.026264134794473648,
              0.0604860857129097
            ],
            [
              0.2277263104915619,
              0.19397714734077454,
              0.0751928836107254
            ],
            [
              0.03162621706724167,
              -0.10699104517698288,
              -0.004026363138109446
            ]
          ],
          [
            [
              0.08232510834932327,
              -0.13078849017620087,
              0.03585424646735191
            ],
            [
              0.21168948709964752,
              0.07903169840574265,
              0.05411357805132866
            ],
            [
              0.16992908716201782,
              0.0022068489342927933,
              0.10664689540863037
            ]
          ],
          [
            [
              0.08053668588399887,
              -0.030569858849048615,
              0.051013581454753876
            ],
            [
              -0.1376090943813324,
              -0.1279177963733673,
              0.08727388828992844
            ],
            [
              -0.17089048027992249,
              0.055040109902620316,
              0.09938357025384903
            ]
          ],
          [
            [
              0.049769479781389236,
              -0.10225320607423782,
              -0.06922544538974762
            ],
            [
              0.010851606726646423,
              0.0875324010848999,
              -0.11066267639398575
            ],
            [
              0.1668866127729416,
              0.014141902327537537,
              0.038830194622278214
            ]
          ],
          [
            [
              0.06571630388498306,
              0.15494510531425476,
              -0.06427671760320663
            ],
            [
              0.11934246122837067,
              0.10940946638584137,
              0.2175624519586563
            ],
            [
              0.33665385842323303,
              0.08218508213758469,
              0.2736110985279083
            ]
          ],
          [
            [
              -0.0974932312965393,
              -0.19408659636974335,
              -0.12665219604969025
            ],
            [
              -0.11315779387950897,
              -0.21975912153720856,
              -0.1136365607380867
            ],
            [
              -0.05188465490937233,
              0.02909829467535019,
              -0.08100558072328568
            ]
          ]
        ]
      },
      {
        "bias": -0.09210537374019623,
        "weights": [
          [
            [
              -0.03278696909546852,
              -0.017309516668319702,
              0.08832841366529465
            ],
            [
              0.10297974944114685,
              0.13024617731571198,
              -0.020145995542407036
            ],
            [
              0.19648101925849915,
              0.05248822271823883,
              -0.07985596358776093
            ]
          ],
          [
            [
              -0.054609447717666626,
              0.2046888768672943,
              0.06291133165359497
            ],
            [
              -0.16105268895626068,
              0.2436676025390625,
              0.08801200240850449
            ],
            [
              0.11915095895528793,
              0.20166395604610443,
              0.037480369210243225
            ]
          ],
          [
            [
              0.1711929589509964,
              -0.16010943055152893,
              -0.12285618484020233
            ],
            [
              -0.17299924790859222,
              -0.07008962333202362,
              0.14374801516532898
            ],
            [
              0.09877115488052368,
              -0.1352241039276123,
              0.04064025729894638
            ]
          ],
          [
            [
              0.08953512459993362,
              0.16134575009346008,
              0.19984757900238037
            ],
            [
              -0.004337814636528492,
              -0.11732278764247894,
              0.0945245549082756
            ],
            [
              0.20016124844551086,
              0.20509259402751923,
              -0.009458988904953003
            ]
          ],
          [
            [
              0.011065728031098843,
              0.11924783140420914,
              0.2751632630825043
            ],
            [
              -0.1809077262878418,
              0.04392337054014206,
              -0.10610227286815643
            ],
            [
              0.11697299778461456,
              -0.10463783890008926,
              0.10434195399284363
            ]
          ],
          [
            [
              0.13397638499736786,
              0.23100727796554565,
              0.2506504952907562
            ],
            [
              0.21284300088882446,
              -0.09303019195795059,
              0.04000652953982353
            ],
            [
              0.13550232350826263,
              -0.05390007048845291,
              0.15633025765419006
            ]
          ],
          [
            [
              -0.035088714212179184,
              0.011019790545105934,
              -0.15191912651062012
            ],
            [
              -0.0970035269856453,
              -0.20510318875312805,
              -0.2798207104206085
            ],
            [
              0.22112753987312317,
              0.173477441072464,
              -0.07703046500682831
            ]
          ],
          [
            [
              -0.1316671073436737,
              0.11739280819892883,
              -0.12437774240970612
            ],
            [
              0.14049214124679565,
              0.018660126253962517,
              -0.008317839354276657
            ],
            [
              0.10293585807085037,
              0.12097896635532379,
              -0.18470950424671173
            ]
          ],
          [
            [
              0.07217487692832947,
              0.17033891379833221,
              -0.05641436204314232
            ],
            [
              0.05039115250110626,
              -0.09965449571609497,
              -0.0016430896939709783
            ],
            [
              0.12333089858293533,
              0.07186176627874374,
              -0.021624935790896416
            ]
          ],
          [
            [
              0.05988701060414314,
              -0.09962324053049088,
              -0.047765620052814484
            ],
            [
              0.004566616844385862,
              0.14760108292102814,
              -0.049695611000061035
            ],
            [
              0.08817210793495178,
              0.09744234383106232,
              -0.1272374391555786
            ]
          ]
        ]
      },
      {
        "bias": 0.08263328671455383,
        "weights": [
          [
            [
              0.05567118898034096,
              0.06958293914794922,
              0.29363101720809937
            ],
            [
              -0.15386274456977844,
              -0.1892932951450348,
              0.09584794193506241
            ],
            [
              -0.16181093454360962,
              -0.26432499289512634,
              0.09839805960655212
            ]
          ],
          [
            [
              -0.1616799533367157,
              -0.011068828403949738,
              0.09977106750011444
            ],
            [
              0.0686490461230278,
              -0.03881068900227547,
              -0.05779111757874489
            ],
            [
              0.12616251409053802,
              -0.10615657269954681,
              0.007902081124484539
            ]
          ],
          [
            [
              -0.051640547811985016,
              -0.06663563847541809,
              0.05050617456436157
            ],
            [
              -0.17704543471336365,
              -0.07125069200992584,
              0.07076115161180496
            ],
            [
              -0.08993498235940933,
              0.12576580047607422,
              0.15912599861621857
            ]
          ],
          [
            [
              -0.16754917800426483,
              0.07261624932289124,
              0.04180620238184929
            ],
            [
              0.0661192536354065,
              -0.04214955493807793,
              0.034119412302970886
            ],
            [
              -0.08485493063926697,
              -0.17403626441955566,
              -0.1516757309436798
            ]
          ],
          [
            [
              0.15753023326396942,
              0.14854496717453003,
              0.1365014761686325
            ],
            [
              0.07514838874340057,
              -0.12848225235939026,
              0.020275237038731575
            ],
            [
              -0.07221581786870956,
              0.0022716999519616365,
              -0.19164001941680908
            ]
          ],
          [
            [
              0.08286779373884201,
              -0.013372530229389668,
              -0.021720657125115395
            ],
            [
              -0.21152161061763763,
              0.026690226048231125,
              0.06342209130525589
            ],
            [
              0.21802379190921783,
              0.08808977156877518,
              0.0848800539970398
            ]
          ],
          [
            [
              0.17877766489982605,
              0.02883482351899147,
              0.16922372579574585
            ],
            [
              -0.09378396719694138,
              -0.006063633132725954,
              -0.09353656321763992
            ],
            [
              -0.04188361391425133,
              0.1893092840909958,
              0.13593453168869019
            ]
          ],
          [
            [
              0.019957734271883965,
              0.17231403291225433,
              0.11049658805131912
            ],
            [
              -0.07806538790464401,
              0.0027042622677981853,
              0.11312343180179596
            ],
            [
              -0.1269344538450241,
              -0.0074524227529764175,
              -0.025511115789413452
            ]
          ],
          [
            [
              0.07176779955625534,
              0.044990986585617065,
              0.1393134891986847
            ],
            [
              0.14584551751613617,
              -0.11557573080062866,
              -0.05252663046121597
            ],
            [
              0.33578360080718994,
              0.16844221949577332,
              0.19836050271987915
            ]
          ],
          [
            [
              0.20327317714691162,
              0.08193209767341614,
              0.09176541119813919
            ],
            [
              0.022141672670841217,
              0.2393805980682373,
              0.24619236588478088
            ],
            [
              0.2033611685037613,
              0.2690250277519226,
              0.07805047184228897
            ]
          ]
        ]
      },
      {
        "bias": 0.0020236384589225054,
        "weights": [
          [
            [
              0.10053439438343048,
              -0.11898089200258255,
              -0.02185264602303505
            ],
            [
              0.07545827329158783,
              -0.004810892511159182,
              0.06351689249277115
            ],
            [
              0.10038071125745773,
              0.256062388420105,
              0.14542889595031738
            ]
          ],
          [
            [
              0.11477155238389969,
              0.08614219725131989,
              -0.10725229978561401
            ],
            [
              -0.2381533682346344,
              -0.18247275054454803,
              0.08615956455469131
            ],
            [
              0.11388798803091049,
              -0.22101150453090668,
              -0.06669963151216507
            ]
          ],
          [
            [
              -0.04353608563542366,
              0.1748303472995758,
              0.00718834949657321
            ],
            [
              -0.15852247178554535,
              0.025131087750196457,
              0.07791343331336975
            ],
            [
              0.047718364745378494,
              0.03452707454562187,
              -0.13101045787334442
            ]
          ],
          [
            [
              -0.13334953784942627,
              -0.04534310847520828,
              0.19090056419372559
            ],
            [
              -0.04243757203221321,
              0.13102532923221588,
              -0.000876651203725487
            ],
            [
              -0.11044615507125854,
              -0.010847765021026134,
              -0.28389787673950195
            ]
          ],
          [
            [
              0.09492381662130356,
              0.09689532965421677,
              0.07702462375164032
            ],
            [
              0.09333714842796326,
              0.09936945885419846,
              0.15126819908618927
            ],
            [
              0.11038269847631454,
              0.03863901272416115,
              0.17338909208774567
            ]
          ],
          [
            [
              -0.2164311558008194,
              0.12255308777093887,
              -0.22648969292640686
            ],
            [
              -0.1568596065044403,
              -0.14963537454605103,
              -0.01591780036687851
            ],
            [
              -0.07670484483242035,
              -0.05227745696902275,
              -0.10527215898036957
            ]
          ],
          [
            [
              0.25787675380706787,
              0.2774695158004761,
              0.2681882381439209
            ],
            [
              -0.21463291347026825,
              -0.17441409826278687,
              0.17279638350009918
            ],
            [
              0.07751452922821045,
              0.1427261233329773,
              0.0029161006677895784
            ]
          ],
          [
            [
              -0.023808851838111877,
              -0.1338464319705963,
              -0.16531069576740265
            ],
            [
              0.09184430539608002,
              -0.10058215260505676,
              0.10079031437635422
            ],
            [
              -0.09520717710256577,
              -0.12539193034172058,
              -0.0013041305355727673
            ]
          ],
          [
            [
              -0.202018141746521,
              -0.13908347487449646,
              0.09860333055257797
            ],
            [
              -0.012914903461933136,
              0.030028915032744408,
              -0.05219478905200958
            ],
            [
              -0.06688292324542999,
              -0.1209234818816185,
              -0.02122826874256134
            ]
          ],
          [
            [
              -0.03583580628037453,
              0.019045300781726837,
              -0.09886214882135391
            ],
            [
              0.15042924880981445,
              0.16495978832244873,
              -0.050434794276952744
            ],
            [
              0.056220296770334244,
              -0.06817059218883514,
              -0.040640488266944885
            ]
          ]
        ]
      },
      {
        "bias": 0.017033971846103668,
        "weights": [
          [
            [
              -0.20809075236320496,
              -0.13181592524051666,
              -0.12393893301486969
            ],
            [
              -0.06774646043777466,
              0.03121250309050083,
              -0.07943106442689896
            ],
            [
              -0.10797509551048279,
              0.0999375507235527,
              0.1254819631576538
            ]
          ],
          [
            [
              0.10122480243444443,
              0.09813398867845535,
              0.052496425807476044
            ],
            [
              0.16393233835697174,
              -0.09034610539674759,
              0.05845034122467041
            ],
            [
              -0.02693263627588749,
              -0.2084280252456665,
              0.006234470289200544
            ]
          ],
          [
            [
              0.18094633519649506,
              -0.05955606698989868,
              0.11186791211366653
            ],
            [
              0.08737774938344955,
              0.17498096823692322,
              0.0400092788040638
            ],
            [
              -0.17215411365032196,
              -0.1591709554195404,
              0.17329218983650208
            ]
          ],
          [
            [
              0.14523540437221527,
              0.21107657253742218,
              0.27582937479019165
            ],
            [
              -0.035530272871255875,
              0.11021815985441208,
              -0.11280883103609085
            ],
            [
              0.12257345765829086,
              -0.2404092252254486,
              -0.09588366001844406
            ]
          ],
          [
            [
              -0.17064805328845978,
              -0.21269570291042328,
              -0.09245115518569946
            ],
            [
              -0.002536489861086011,
              -0.04389023408293724,
              0.11974436789751053
            ],
            [
              0.01879681646823883,
              -0.05463852360844612,
              0.0689098984003067
            ]
          ],
          [
            [
              -0.09446363896131516,
              -0.2626676857471466,
              0.037944354116916656
            ],
            [
              -0.028313560411334038,
              0.08721524477005005,
              0.12055739760398865
            ],
            [
              0.07355979830026627,
              0.18201249837875366,
              0.10116560012102127
            ]
          ],
          [
            [
              0.3293829560279846,
              0.32655951380729675,
              0.24378590285778046
            ],
            [
              -0.07051360607147217,
              -0.10129305720329285,
              -0.0892932265996933
            ],
            [
              -0.23557034134864807,
              -0.31763985753059387,
              -0.3160083293914795
            ]
          ],
          [
            [
              -0.03236345574259758,
              -0.10293465107679367,
              -0.1326933354139328
            ],
            [
              -0.03448130562901497,
              -0.035801827907562256,
              0.14836330711841583
            ],
            [
              -0.06528409570455551,
              0.012504453770816326,
              0.009019790217280388
            ]
          ],
          [
            [
              0.07146022468805313,
              0.17739997804164886,
              -0.14866097271442413
            ],
            [
              -0.01479280460625887,
              0.001622064271941781,
              0.1060650423169136
            ],
            [
              -0.0778941810131073,
              -0.12459131330251694,
              0.1424666792154312
            ]
          ],
          [
            [
              -0.15287674963474274,
              -0.057680219411849976,
              -0.11161118000745773
            ],
            [
              0.020092297345399857,
              0.056244343519210815,
              0.0034972724970430136
            ],
            [
              -0.01507959607988596,
              -0.10725513100624084,
              -0.005411537829786539
            ]
          ]
        ]
      },
      {
        "bias": -0.0487380176782608,
        "weights": [
          [
            [
              0.013004053384065628,
              0.1438901126384735,
              0.2067205160856247
            ],
            [
              0.2778065502643585,
              0.035558704286813736,
              0.15905006229877472
            ],
            [
              0.1556456834077835,
              -0.055424440652132034,
              -0.196225106716156
            ]
          ],
          [
            [
              -0.06706154346466064,
              -0.06031229719519615,
              0.1522347778081894
            ],
            [
              -0.1272343546152115,
              -0.024298088625073433,
              -0.17963898181915283
            ],
            [
              -0.296866238117218,
              0.05329625681042671,
              -0.08038515597581863
            ]
          ],
          [
            [
              0.08246057480573654,
              0.11964347958564758,
              -0.15256546437740326
            ],
            [
              0.04718828201293945,
              -0.036873333156108856,
              0.11580844223499298
            ],
            [
              -0.02689993940293789,
              0.14799445867538452,
              0.0425935722887516
            ]
          ],
          [
            [
              -0.2321205884218216,
              0.07651403546333313,
              0.06711816787719727
            ],
            [
              -0.24553300440311432,
              -0.19699813425540924,
              -0.10530014336109161
            ],
            [
              -0.3381549119949341,
              -0.23991091549396515,
              0.08259432017803192
            ]
          ],
          [
            [
              0.1878867745399475,
              0.0027300918009132147,
              0.13993220031261444
            ],
            [
              -0.006729230750352144,
              0.04196777939796448,
              0.12541988492012024
            ],
            [
              -0.18064618110656738,
              -0.02939745783805847,
              -0.12110479176044464
            ]
          ],
          [
            [
              -0.02033473551273346,
              0.1171392872929573,
              0.1683845967054367
            ],
            [
              0.04123875871300697,
              0.12270105630159378,
              0.15763184428215027
            ],
            [
              0.010796451941132545,
              0.1692696511745453,
              -0.012512930668890476
            ]
          ],
          [
            [
              0.01538323238492012,
              0.14960414171218872,
              0.2853028476238251
            ],
            [
              -0.029109112918376923,
              -0.11643902212381363,
              -0.055375710129737854
            ],
            [
              -0.004981658887118101,
              -0.09975367784500122,
              0.01719915121793747
            ]
          ],
          [
            [
              -0.08597826957702637,
              -0.1395689994096756,
              -0.0871158018708229
            ],
            [
              0.07820675522089005,
              0.06476256996393204,
              0.08447449654340744
            ],
            [
              0.04280698299407959,
              0.13454754650592804,
              -0.14602670073509216
            ]
          ],
          [
            [
              -0.2120448648929596,
              -0.10349173098802567,
              -0.01867772452533245
            ],
            [
              -0.13450013101100922,
              0.03246336057782173,
              0.008800385519862175
            ],
            [
              -0.06651842594146729,
              0.0027631367556750774,
              0.1084757074713707
            ]
          ],
          [
            [
              0.024234263226389885,
              0.035659898072481155,
              0.07447188347578049
            ],
            [
              0.14663217961788177,
              0.12224237620830536,
              0.11024618148803711
            ],
            [
              -0.017633860930800438,
              0.11866504698991776,
              0.031190453097224236
            ]
          ]
        ]
      },
      {
        "bias": 0.06205393746495247,
        "weights": [
          [
            [
              0.10403458029031754,
              -0.04516236484050751,
              0.007944069802761078
            ],
            [
              0.027522817254066467,
              -0.06080198660492897,
              0.17122933268547058
            ],
            [
              0.031839076429605484,
              -0.13542407751083374,
              0.147073432803154
            ]
          ],
          [
            [
              -0.07265862077474594,
              0.07584702968597412,
              0.0826362743973732
            ],
            [
              -0.12504354119300842,
              0.10610494017601013,
              -0.05252160131931305
            ],
            [
              -0.1802300661802292,
              0.13104572892189026,
              0.1587398797273636
            ]
          ],
          [
            [
              -0.01467291358858347,
              -0.1736292839050293,
              -0.06778385490179062
            ],
            [
              -0.08540039509534836,
              0.1718093454837799,
              0.037517379969358444
            ],
            [
              -0.11343583464622498,
              -0.09185007214546204,
              0.04145399108529091
            ]
          ],
          [
            [
              -0.0252825990319252,
              0.13854925334453583,
              0.1342930644750595
            ],
            [
              -0.18445101380348206,
              -0.06430703401565552,
              -0.1338326334953308
            ],
            [
              0.044733159244060516,
              0.1775427758693695,
              0.18956460058689117
            ]
          ],
          [
            [
              0.05329892411828041,
              0.14391566812992096,
              0.17773744463920593
            ],
            [
              -0.13861612975597382,
              0.05440625175833702,
              0.18248164653778076
            ],
            [
              0.054199911653995514,
              0.10067229717969894,
              0.03818938881158829
            ]
          ],
          [
            [
              0.15098167955875397,
              -0.10688918083906174,
              0.10139582306146622
            ],
            [
              -0.030306799337267876,
              -0.08467961102724075,
              -0.024463560432195663
            ],
            [
              -0.004675365053117275,
              0.06831468641757965,
              0.10519678145647049
            ]
          ],
          [
            [
              0.005631213542073965,
              0.024092094972729683,
              -0.2629964053630829
            ],
            [
              0.02316136285662651,
              -0.1372058093547821,
              -0.0011137331603094935
            ],
            [
              0.08635002374649048,
              0.12336578965187073,
              -0.20182885229587555
            ]
          ],
          [
            [
              -0.12374411523342133,
              0.06976250559091568,
              0.0033627478405833244
            ],
            [
              -0.06103638559579849,
              -0.01258084923028946,
              -0.16220147907733917
            ],
            [
              0.036776743829250336,
              -0.043156035244464874,
              -0.002188880927860737
            ]
          ],
          [
            [
              0.008888236247003078,
              -0.20282362401485443,
              -0.00037311940104700625
            ],
            [
              -0.06386574357748032,
              0.1379087269306183,
              -0.1674935668706894
            ],
            [
              -0.06518663465976715,
              0.11533026397228241,
              0.04993900656700134
            ]
          ],
          [
            [
              0.13230127096176147,
              0.14546886086463928,
              0.025895265862345695
            ],
            [
              0.2527938485145569,
              0.23856063187122345,
              0.2568085789680481
            ],
            [
              -0.045192964375019073,
              0.02460247091948986,
              -0.09280352294445038
            ]
          ]
        ]
      },
      {
        "bias": -0.0025097853504121304,
        "weights": [
          [
            [
              -0.22498294711112976,
              0.09176423400640488,
              -0.2085607796907425
            ],
            [
              -0.1700950711965561,
              -0.1335902363061905,
              -0.10471974313259125
            ],
            [
              -0.01865343004465103,
              0.05609619617462158,
              0.061930976808071136
            ]
          ],
          [
            [
              0.1914878934621811,
              0.1001431941986084,
              -0.1320115625858307
            ],
            [
              -0.03730002045631409,
              -0.023550791665911674,
              0.1155635267496109
            ],
            [
              -0.11461998522281647,
              -0.16998285055160522,
              -0.0012773670023307204
            ]
          ],
          [
            [
              -0.17897191643714905,
              0.17310252785682678,
              -0.08422792702913284
            ],
            [
              -0.07960566878318787,
              0.0966135635972023,
              -0.017904765903949738
            ],
            [
              0.09933783113956451,
              -0.024894703179597855,
              -0.07360128313302994
            ]
          ],
          [
            [
              0.15306206047534943,
              0.038106270134449005,
              -0.01117273885756731
            ],
            [
              -0.04237715154886246,
              -0.14435125887393951,
              0.13693749904632568
            ],
            [
              0.0670156180858612,
              0.08106747269630432,
              0.17583781480789185
            ]
          ],
          [
            [
              -0.0670420229434967,
              -0.08985667675733566,
              -0.21924220025539398
            ],
            [
              -0.19975325465202332,
              -0.02605069987475872,
              -0.15807080268859863
            ],
            [
              -0.26512908935546875,
              -0.11320961266756058,
              -0.020481813699007034
            ]
          ],
          [
            [
              -0.126532182097435,
              0.0574677474796772,
              0.13956378400325775
            ],
            [
              -0.2515821158885956,
              0.1006961390376091,
              -0.014027233235538006
            ],
            [
              -0.22177976369857788,
              0.057052042335271835,
              -0.15844808518886566
            ]
       
Download .txt
gitextract_939_80p5/

├── .github/
│   └── workflows/
│       └── build.yml
├── .gitignore
├── LICENSE
├── README.md
├── deploy-gh-page.sh
├── package.json
├── public/
│   ├── assets/
│   │   └── data/
│   │       ├── model.json
│   │       └── nn_10.json
│   ├── global.css
│   └── index.html
├── rollup.config.js
├── rollup_start_dev.js
├── src/
│   ├── App.svelte
│   ├── Explainer.svelte
│   ├── Header.svelte
│   ├── article/
│   │   ├── Article.svelte
│   │   └── Youtube.svelte
│   ├── config.js
│   ├── detail-view/
│   │   ├── ActivationAnimator.svelte
│   │   ├── Activationview.svelte
│   │   ├── ConvolutionAnimator.svelte
│   │   ├── Convolutionview.svelte
│   │   ├── Dataview.svelte
│   │   ├── DetailviewUtils.js
│   │   ├── HyperparameterAnimator.svelte
│   │   ├── HyperparameterDataview.svelte
│   │   ├── Hyperparameterview.svelte
│   │   ├── KernelMathView.svelte
│   │   ├── PoolAnimator.svelte
│   │   ├── Poolview.svelte
│   │   └── Softmaxview.svelte
│   ├── main.js
│   ├── overview/
│   │   ├── Modal.svelte
│   │   ├── Overview.svelte
│   │   ├── draw-utils.js
│   │   ├── flatten-draw.js
│   │   ├── intermediate-draw.js
│   │   ├── intermediate-utils.js
│   │   └── overview-draw.js
│   ├── stores.js
│   └── utils/
│       ├── cnn-tf.js
│       ├── cnn.js
│       ├── deploy-to-gh-pages.sh
│       └── utlis.py
└── tiny-vgg/
    ├── README.md
    ├── environment.yaml
    └── tiny-vgg.py
Download .txt
SYMBOL INDEX (32 symbols across 6 files)

FILE: rollup_start_dev.js
  method writeBundle (line 6) | writeBundle() {

FILE: src/detail-view/DetailviewUtils.js
  function array1d (line 3) | function array1d(length, f) {
  function array2d (line 7) | function array2d(height, width, f) {
  function generateOutputMappings (line 11) | function generateOutputMappings(stride, output, kernelLength, padded_inp...
  function compute_input_multiplies_with_weight (line 27) | function compute_input_multiplies_with_weight(hoverH, hoverW,
  function getMatrixSliceFromInputHighlights (line 42) | function getMatrixSliceFromInputHighlights(matrix, highlights, kernelLen...
  function getMatrixSliceFromOutputHighlights (line 50) | function getMatrixSliceFromOutputHighlights(matrix, highlights) {
  function getVisualizationSizeConstraint (line 59) | function getVisualizationSizeConstraint(imageLength) {
  function getDataRange (line 65) | function getDataRange(image) {
  function gridData (line 78) | function gridData(image, constraint=getVisualizationSizeConstraint(image...

FILE: src/utils/cnn-tf.js
  class Node (line 16) | class Node {
    method constructor (line 26) | constructor(layerName, index, type, bias, output) {
  class Link (line 39) | class Link {
    method constructor (line 48) | constructor(source, dest, weight) {

FILE: src/utils/cnn.js
  class Node (line 11) | class Node {
    method constructor (line 21) | constructor(layerName, index, type, bias, output) {
  class Link (line 34) | class Link {
    method constructor (line 35) | constructor(source, dest, weight) {

FILE: src/utils/utlis.py
  function convert_h5_to_json (line 7) | def convert_h5_to_json(model_h5_file, model_json_file):

FILE: tiny-vgg/tiny-vgg.py
  function create_class_dict (line 17) | def create_class_dict():
  function create_val_class_dict (line 36) | def create_val_class_dict():
  function split_val_data (line 57) | def split_val_data():
  function process_path_train (line 71) | def process_path_train(path):
  function process_path_test (line 104) | def process_path_test(path):
  function prepare_for_training (line 138) | def prepare_for_training(dataset, batch_size=32, cache=True,
  function prepare_for_testing (line 157) | def prepare_for_testing(dataset, batch_size=32, cache=True):
  class TinyVGG (line 171) | class TinyVGG(Model):
    method __init__ (line 179) | def __init__(self, filters=10):
    method call (line 196) | def call(self, x):
  function train_step (line 220) | def train_step(image_batch, label_batch):
  function vali_step (line 235) | def vali_step(image_batch, label_batch):
  function test_step (line 244) | def test_step(image_batch, label_batch):
Condensed preview — 47 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (693K chars).
[
  {
    "path": ".github/workflows/build.yml",
    "chars": 613,
    "preview": "name: build\n\non:\n  # Triggers the workflow on push or pull request events but only for the master branch\n  push:\n    bra"
  },
  {
    "path": ".gitignore",
    "chars": 192,
    "preview": ".DS_Store\nnode_modules\npublic/bundle.*\npackage-lock.json\npublic/assets/js/bundle.*\npublic/assets/js/\npublic/assets/css/b"
  },
  {
    "path": "LICENSE",
    "chars": 1082,
    "preview": "MIT License\n\nCopyright (c) 2020 Polo Club of Data Science\n\nPermission is hereby granted, free of charge, to any person o"
  },
  {
    "path": "README.md",
    "chars": 3303,
    "preview": "# CNN Explainer\n\nAn interactive visualization system designed to help non-experts learn about Convolutional Neural Netwo"
  },
  {
    "path": "deploy-gh-page.sh",
    "chars": 182,
    "preview": "npm run build\ncp -r ./public/assets ./dist\ncp -r ./public/bundle* ./dist\ncp -r ./public/global.css ./dist\nnpx gh-pages -"
  },
  {
    "path": "package.json",
    "chars": 669,
    "preview": "{\n  \"name\": \"svelte-app\",\n  \"version\": \"1.0.0\",\n  \"devDependencies\": {\n    \"@rollup/plugin-replace\": \"^2.3.2\",\n    \"gh-p"
  },
  {
    "path": "public/assets/data/model.json",
    "chars": 4695,
    "preview": "{\"format\": \"layers-model\", \"generatedBy\": \"keras v2.2.4-tf\", \"convertedBy\": \"TensorFlow.js Converter v1.3.1.1\", \"modelTo"
  },
  {
    "path": "public/assets/data/nn_10.json",
    "chars": 285847,
    "preview": "[\n  {\n    \"name\": \"conv_1_1\",\n    \"input_shape\": [\n      64,\n      64,\n      3\n    ],\n    \"output_shape\": [\n      62,\n  "
  },
  {
    "path": "public/global.css",
    "chars": 708,
    "preview": ":root {\n\t--outer-shadow: 0 .5rem 1rem rgba(0,0,0,.15);\n\t--outer-shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);\n\t--outer-s"
  },
  {
    "path": "public/index.html",
    "chars": 2991,
    "preview": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\" />\n    <meta name=\"viewport\" content=\"width=device-width\" />\n\n"
  },
  {
    "path": "rollup.config.js",
    "chars": 1634,
    "preview": "import svelte from 'rollup-plugin-svelte';\nimport resolve from 'rollup-plugin-node-resolve';\nimport commonjs from 'rollu"
  },
  {
    "path": "rollup_start_dev.js",
    "chars": 296,
    "preview": "import * as child_process from 'child_process';\n\nlet running_dev_server = false;\n\nexport default {\n\twriteBundle() {\n\t\tif"
  },
  {
    "path": "src/App.svelte",
    "chars": 427,
    "preview": "<script>\n  import Explainer from './Explainer.svelte';\n  import Header from './Header.svelte';\n</script>\n\n<style>\n</styl"
  },
  {
    "path": "src/Explainer.svelte",
    "chars": 591,
    "preview": "<script>\n  import Overview from './overview/Overview.svelte';\n  import { cnnStore } from './stores.js';\n\n  // Enum to co"
  },
  {
    "path": "src/Header.svelte",
    "chars": 2203,
    "preview": "<script>\n</script>\n\n<style>\n\t#header {\n\t\theight: 50px;\n\t\tdisplay: flex;\n\t\tpadding: 0 20px;\n\t\talign-items: center;\n\t\tback"
  },
  {
    "path": "src/article/Article.svelte",
    "chars": 22877,
    "preview": "<script>\n\timport HyperparameterView from '../detail-view/Hyperparameterview.svelte';\n  import Youtube from './Youtube.sv"
  },
  {
    "path": "src/article/Youtube.svelte",
    "chars": 983,
    "preview": "<script context=\"module\">\n\tlet iframeApiReady = false;\n\n\timport { setContext, onMount } from \"svelte\";\n\tvar tag = docume"
  },
  {
    "path": "src/config.js",
    "chars": 915,
    "preview": "/* global d3 */\n\nconst layerColorScales = {\n  input: [d3.interpolateGreys, d3.interpolateGreys, d3.interpolateGreys],\n  "
  },
  {
    "path": "src/detail-view/ActivationAnimator.svelte",
    "chars": 4323,
    "preview": "<script>\n  import { createEventDispatcher } from 'svelte';\n  import { array1d, getMatrixSliceFromOutputHighlights,\n    g"
  },
  {
    "path": "src/detail-view/Activationview.svelte",
    "chars": 3051,
    "preview": "<script>\n\timport ActivationAnimator from './ActivationAnimator.svelte';\n  import { createEventDispatcher } from 'svelte'"
  },
  {
    "path": "src/detail-view/ConvolutionAnimator.svelte",
    "chars": 5295,
    "preview": "<script>\n  import { createEventDispatcher } from 'svelte';\n  import { array1d, getMatrixSliceFromOutputHighlights,\n    c"
  },
  {
    "path": "src/detail-view/Convolutionview.svelte",
    "chars": 4205,
    "preview": "<script>\n\timport ConvolutionAnimator from './ConvolutionAnimator.svelte';\n  import { singleConv } from '../utils/cnn.js'"
  },
  {
    "path": "src/detail-view/Dataview.svelte",
    "chars": 3920,
    "preview": "<script>\n  export let data;\n  export let highlights;\n  export let isKernelMath;\n  export let constraint;\n  export let da"
  },
  {
    "path": "src/detail-view/DetailviewUtils.js",
    "chars": 3898,
    "preview": "import { matrixSlice } from '../utils/cnn.js';\n\nexport function array1d(length, f) {\n  return Array.from({length: length"
  },
  {
    "path": "src/detail-view/HyperparameterAnimator.svelte",
    "chars": 4432,
    "preview": "<script>\n  import { createEventDispatcher } from 'svelte';\n  import { array1d, compute_input_multiplies_with_weight,\n   "
  },
  {
    "path": "src/detail-view/HyperparameterDataview.svelte",
    "chars": 3139,
    "preview": "<script>\n  export let data;\n  export let highlights;\n  export let outputLength;\n  export let stride;\n  export let paddin"
  },
  {
    "path": "src/detail-view/Hyperparameterview.svelte",
    "chars": 5937,
    "preview": "<script>\n\timport HyperparameterAnimator from './HyperparameterAnimator.svelte';\n  import { singleConv } from '../utils/c"
  },
  {
    "path": "src/detail-view/KernelMathView.svelte",
    "chars": 10751,
    "preview": "<script>\n  export let data;\n  export let kernel;\n  export let constraint;\n  export let dataRange;\n  export let kernelRan"
  },
  {
    "path": "src/detail-view/PoolAnimator.svelte",
    "chars": 4896,
    "preview": "<script>\n  import { createEventDispatcher } from 'svelte';\n  import { array1d, getMatrixSliceFromOutputHighlights,\n    c"
  },
  {
    "path": "src/detail-view/Poolview.svelte",
    "chars": 4923,
    "preview": "<script>\n\timport PoolAnimator from './PoolAnimator.svelte';\n  import { singleMaxPooling } from '../utils/cnn.js';\n  impo"
  },
  {
    "path": "src/detail-view/Softmaxview.svelte",
    "chars": 7496,
    "preview": "<script>\n  import { onMount, afterUpdate, createEventDispatcher } from 'svelte';\n  export let logits;\n  export let logit"
  },
  {
    "path": "src/main.js",
    "chars": 114,
    "preview": "import App from './App.svelte';\n\nconst app = new App({\n\ttarget: document.body,\n\tprops: {}\n});\n\nexport default app;"
  },
  {
    "path": "src/overview/Modal.svelte",
    "chars": 5397,
    "preview": "<script>\n  /* global d3 */\n\n  import { onMount, createEventDispatcher } from 'svelte';\n  import { modalStore } from '../"
  },
  {
    "path": "src/overview/Overview.svelte",
    "chars": 52027,
    "preview": "<script>\n  // Svelte functions\n  import { onMount } from 'svelte';\n  import {\n    cnnStore, svgStore, vSpaceAroundGapSto"
  },
  {
    "path": "src/overview/draw-utils.js",
    "chars": 4015,
    "preview": "import { overviewConfig } from '../config.js';\n\n// Configs\nconst nodeLength = overviewConfig.nodeLength;\n\n/**\n * Compute"
  },
  {
    "path": "src/overview/flatten-draw.js",
    "chars": 59646,
    "preview": "/* global d3, SmoothScroll */\n\nimport {\n  svgStore, vSpaceAroundGapStore, hSpaceAroundGapStore, cnnStore,\n  nodeCoordina"
  },
  {
    "path": "src/overview/intermediate-draw.js",
    "chars": 59699,
    "preview": "/* global d3 */\n\nimport {\n  svgStore, vSpaceAroundGapStore, hSpaceAroundGapStore, cnnStore,\n  nodeCoordinateStore, selec"
  },
  {
    "path": "src/overview/intermediate-utils.js",
    "chars": 8251,
    "preview": "/* global d3 */\n\nimport { svgStore, vSpaceAroundGapStore } from '../stores.js';\nimport { overviewConfig } from '../confi"
  },
  {
    "path": "src/overview/overview-draw.js",
    "chars": 30019,
    "preview": "/* global d3, SmoothScroll */\n\nimport {\n  svgStore, vSpaceAroundGapStore, hSpaceAroundGapStore, cnnStore,\n  nodeCoordina"
  },
  {
    "path": "src/stores.js",
    "chars": 937,
    "preview": "import { writable } from 'svelte/store';\n\nexport const cnnStore = writable([]);\nexport const svgStore = writable(undefin"
  },
  {
    "path": "src/utils/cnn-tf.js",
    "chars": 15030,
    "preview": "/* global tf */\n\n// Network input image size\nconst networkInputSize = 64;\n\n// Enum of node types\nconst nodeType = {\n  IN"
  },
  {
    "path": "src/utils/cnn.js",
    "chars": 15062,
    "preview": "// Enum of node types\nconst nodeType = {\n  INPUT: 'input',\n  CONV: 'conv',\n  POOL: 'pool',\n  RELU: 'relu',\n  FC: 'fc',\n "
  },
  {
    "path": "src/utils/deploy-to-gh-pages.sh",
    "chars": 443,
    "preview": "#!/bin/bash\nset -o errexit\n\n# config\ngit config --global user.email \"xiao.hk1997@gmail.com\"\ngit config --global user.nam"
  },
  {
    "path": "src/utils/utlis.py",
    "chars": 2129,
    "preview": "import tensorflow as tf\nfrom json import dump\n\nassert(int(tf.__version__.split('.')[0]) == 2)\n\n\ndef convert_h5_to_json(m"
  },
  {
    "path": "tiny-vgg/README.md",
    "chars": 2886,
    "preview": "# Train a Tiny VGG\n\nThis directory includes code and data to train a Tiny VGG model\n(inspired by the demo CNN in [Stanfo"
  },
  {
    "path": "tiny-vgg/environment.yaml",
    "chars": 250,
    "preview": "name: tiny-vgg\nchannels:\n  - defaults\ndependencies:\n  - pip=20.0.2\n  - python=3.6.10\n  - pip:\n    - h5py==2.10.0\n    - n"
  },
  {
    "path": "tiny-vgg/tiny-vgg.py",
    "chars": 12816,
    "preview": "import tensorflow as tf\nimport numpy as np\nimport pandas as pd\nimport re\nfrom shutil import copyfile\nfrom glob import gl"
  }
]

About this extraction

This page contains the full source code of the poloclub/cnn-explainer GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 47 files (649.6 KB), approximately 185.8k tokens, and a symbol index with 32 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!