Git Product home page Git Product logo

neuralpi's Introduction

NeuralPi

CI License: GPL v3 Downloads

NeuralPi is a guitar pedal using neural networks to emulate real amps and pedals on a Raspberry Pi 4. The NeuralPi software is a VST3 plugin built with JUCE, which can be run as a normal audio plugin or cross-compiled to run on the Raspberry Pi 4 with Elk Audio OS. The NeuralPi includes model selection, EQ, and gain/volume controls from a remote instance of the plugin over WiFi. The pedal runs high quality amp/pedal models on an economical DIY setup, costing around $120 for hardware to build yourself.
Check out a video demo on YouTube
Check out the step by step build guide published on Towards Data Science

app

NeuralPi can sound like an amplifier or distortion/overdrive pedal using the power of neural networks. Models trained from recordings of real amps and pedals can be loaded into the plugin for endless possiblities on your guitar. Create your own models or use custom tones from GuitarML.

WARNING: The audio output of the HiFiBerry DAC + ADC is at line level. Guitar amplifiers expect a low level electric guitar signal (instrument level). Use NeuralPi only where line level inputs are expected.

There are four main components to the guitar pedal:

  1. Raspberry Pi 4b
  2. HiFiBerry DAC + ADC
  3. Elk Audio OS
  4. NeuralPi VST3 plugin

app
This is the normal plugin (v1.3.0), available for Windows (Standalone, VST3) and Mac (Standalone, AU, VST3). After connencting the Raspberry Pi and remote computer to the same local WiFi network, enter the RaspberryPi's IP address (keep the default ports) to enable control over WiFi. The Win/Mac plugins are fully functional guitar plugins that allow you to try out GuitarML's most advanced amp/pedal models without building the Raspberry Pi pedal.

Note: The plugin must be restarted after using the Import Tone button for changes to take effect.

Installing the plugin

See the Release page for the cross-compiled Raspberry Pi / Elk Audio OS compatible VST3 plugin and Win/Mac installers.

After running the plugin or standalone for the first time, the two default models will be copied to the following locations. Any imported models will be copied here as well. Model files must be manually removed from these locations to perform model clean-up.

Mac/Linux: /home/<username>/Documents/GuitarML/NeuralPi/tones 
Windows: C:/Users/<username>/Documents/GuitarML/NeuralPi/tones
Elk Audio OS: /home/mind/Documents/GuitarML/NeuralPi/tones

Conditioned Models

Starting with version 1.3, NeuralPi can load tones conditioned on the Gain parameter. The three default tones included with NeuralPi are now conditioned models (TS9 pedal, Fender Blues Jr. amp, and Blackstar HT40 amp set to overdrive channel). The conditioned model uses a neural network for the full range of the Gain/Drive parameter, rather than just a snapshot model. When a conditioned model is loaded, the Gain knob will turn red.

Adding New Models

Once your NeuralPi is set up, you can add new models from a remote computer using the following steps:

  1. From the remote computer, run the plugin and add new models using the "Import Tone" button. Optionally, you can manually add new json files to the Documents/GuitarML/Chameleon/tones directory. Note: The "tones" directory is created the first time you run NeuralPi.
  2. Turn on your WiFi enabled NeuralPi (see Elk documentation for connecting the Raspberry Pi to a local WiFi network)
  3. Download the update_models.bat(Windows) or update_models.sh(Mac/Linux) to your remote computer. These scripts are located in the "scripts/" directory of this repository. You must change the rpi_ip_address and host_model_path to the Raspberry Pi's IP address and path to your json tones (on remote computer). The json files will be first copied from the remote computer to the NeuralPi, and then back from the NeuralPi to the remote computer. This allows updating models from the NeuralPi when you connect a new remote computer.
  4. From the remote computer connected to the same local WiFi network as NeuralPi, run the update_models.bat(Windows) or update_models.sh(Mac/Linux) from a cmd terminal.

    Note: It is important that all models files have unique names with no spaces.
    Note: Ensure from the terminal output that you were able to connect over WiFi, and that the model files were copied properly.

  5. Restart both the NeuralPi and the remote instance of the NeuralPi plugin. From the remote NeuralPi GUI, enter the Raspberry Pi's IP address. As long as both devices are connected to the local WiFi network, you will be able select models from the NeuralPi plugin dropdown list to change models running on the Raspberry Pi.

IMPORTANT: The plugin uses a sort() function to order the models alphabetically. Due to differences in the behaviour of this function on Linux (Elk OS) vs. Win/Mac, you must start json filenames with a capital letter, otherwise the NeuralPi on Elk will sort models starting with a lowercase letter at the end of the list and the controller will be out of sync with the NeuralPi pedal.

MIDI control of NeuralPi parameters

The “config_neuralpi_MIDI.json” file contains MIDI mapping of NeuralPi parameters.

The names of parameters are: "Gain", "Master", "Bass", "Mid", "Treble", "Presence", "Delay", "Reverb", "Model", "Ir". In that json file, you can see that those parameters have been asigned to incoming MIDI CC# messages "1", "2", "3", "4, "5", "6", "7", "8", "9" and "10" respectively. But editing the file allows you to chose whatever CC# to whatever parameter, by just changing values in the “cc_number” and “parameter_name” commmands.

Sushi will listen to incoming MIDI CC# messages, will normalize (0, 127) MIDI values range to (0, 1) Sushi range, and will set that value to correspondent parameter. For instance, if your MIDI controller sends a CC2 message with value "127", Sushi will receive that message and set "Master" parameter (“Master” is assigned to “CC2”) to be "1" (MIDI “127” value normalized to “1”).

You´ll need to copy the config file to the Raspberry, for instance through ssh over Wifi (login as root):

scp -r config_neuralpi_MIDI.json root@:/home/mind/config_files/

For connecting a MIDI device:

1 - Plug your MIDI device into any Raspberry USB port.

2 - Login as “mind” user, “elk” password, and run Sushi with the MIDI config:

sushi -r --multicore-processing=2 –c ~/config_files/config_neuralpi_MIDI.json &

3 – To list MIDI devices connected to the Raspberry, run:

aconnect –l

4 – You can now connect your MIDI device to Sushi either by their listed ports, or by their names. Run:

aconnect "your-listed-device-name" "Sushi"

NOTE 1: Currentlly, "Model" and "Ir" parameters are a little tricky to control. NeuralPi asigns a value to each file saved in "tones" or "Ir" directory. It divides the (0, 1) range of values by the number of files available, so for instance, if you had just 2 tone files in the directory, one of them would respond to any value in the (0, 0.49) range, and the other would respond to any value in the (0.5, 1) range.

To Do

Elk Audio OS also supports physical controls through Sensei. Gain/Volume and EQ knobs can be added, as well as a LCD screen for selecting different models. One could build an actual guitar pedal with NeuralPi and any number of other digital effects and controls.

While running PyTorch locally on the Raspberry Pi might be a stretch, it is fully capable of recording high quality audio with the HiFiBerry hat. Implement a capture feature by automating the recording of input/output samples, pushing to remote computer for training, then updating the Pi with the newly trained model.

Info

The neural network is a re-creation of the LSTM inference model from Real-Time Guitar Amplifier Emulation with Deep Learning

The Automated-GuitarAmpModelling project was used to train the .json models.
GuitarML maintains a fork with a few extra helpful features, including a Colab training script. IMPORTANT: When training models for NeuralPi, ensure that a LSTM size of 20 is used. NeuralPi is optimized to run models of this size, and other sizes are not currently compatible.

Note: The GuitarML fork of the Automated-GuitarAmpModelling code now contains helper scripts for training conditioned models, which are compatible with NeuralPi v1.3.

The plugin uses RTNeural, which is a highly optimized neural net inference engine intended for audio applications.

The HiFiBerry DAC+ADC card used for this project provides 192kHz/24bit Analog-to-Digital and Digital to Analog, which is industry standard for high quality audio devices. The plugin processes at 44.1kHz (specified in config file) for the neural net DSP.

Build Instructions

To build the plugin for use on the Raspberry Pi with Elk Audio OS, see the official Elk Audio Documentation

Build with Cmake

Dependencies

Ubuntu 22.04

The following packages will need to be installed on Ubuntu in order for build to succeed:

apt install cmake libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxft2-dev

Build

# Clone the repository
$ git clone https://github.com/GuitarML/NeuralPi.git
$ cd NeuralPi

# initialize and set up submodules
$ git submodule update --init --recursive

# build with CMake
$ cmake -Bbuild
$ cmake --build build --config Release

The binaries will be located in NeuralPi/build/NeuralPi_artefacts/

Build with Projucer

  1. Clone or download this repository.

  2. Download and install JUCE This project uses the "Projucer" application from the JUCE website.

  3. Download the RTNeural submodule (cd into the NeuralPi repo first):

    git submodule update --remote --recursive

  4. Download and extract: json Json for c++.

  5. Open the NeuralPi.jucer file and in the appropriate Exporter Header Search Path field, enter the appropriate include paths. For example:

  <full-path-to>/json-develop/include
  <full-path-to>/NeuralPi/modules/RTNeural
  <full-path-to>/NeuralPi/modules/RTNeural/modules/xsimd/include
  1. Build NeuralPi from the Juce Projucer application for the intended build target.

Note: Make sure to build in Release mode unless actually debugging. Debug mode will not keep up with real time playing.

neuralpi's People

Contributors

germanaizek avatar guitarml avatar jatinchowdhury18 avatar mtseng15 avatar razerbeans avatar sedaxel avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

neuralpi's Issues

Failed to load tracks from Json config file

Not sure what I'm doing wrong. I followed the guide and have everything where it should be, but when I run sushi -r --multicore-processing=2 -c ~/config_files/config_neuralpi_fx.json I get the error Failed to load tracks from Json config file.

file extension error in Mac update script

Line 32 should be:

scp $host_ir_path/*.wav root@$rpi_ip_address:$rpi_ir_path/

Line 36 should be:

scp root@$rpi_ip_address:$rpi_model_path/*.json $host_model_path/

LV2 builds?

As you may know jatinchowdhury18 uses a JUCE fork to enable LV2 builds for their plugins.

Will you consider doing the same? this would make your plugins available to a wider audience.

Looking for high quality time-based effects to add

I'm opening this issue as a place to recommend open source time based effects to add to NeuralPi. This includes effects like Reverb, Delay, Chorus, Flange. Ideally these would be high quality effects written in c++ without too many user controls, I'd like to keep it simple. As long as permissions allow, it could be modified to only include the most relevant controls.

The models sound good by themselves, but these effects would add a whole new dimension to NeuralPi's capability. I also know that JUCE has some DSP capability built in, including IR, but have not tested these features yet.

sample rate converter

At the moment the processing is fixed on 44.1, but many systems run on 48k (or even higher). see #2 (comment)

It would be great if we are able to run at other samplerates, does this require training with other datasets?

Segmentation Fault in mod-host. Not listed in guitarix. Ubuntu 22.04

Hi,

I am usingUbuntu 22.04 and the latest deb-file from the releases on this github-project.
I checked, that the plugin is installed in my users .lv2 directory. I also tried to move the plugin to /usr/lib/lv2

I get a segmentation fault in mod-host when I drag the plugin into my pedalboard in the constructor pane.
Guitarix does not even list me the plugin. I did not check the guitarix logs yet. I suppose that the underlying problem is the same.

Is this plugin fit to be used in those applications or would I have to use it only in standalone form?
Anybody experiencing the same issues? Or maybe already fixed somewhere?

I will maybe try to build it on my own and pin the code line where the segfault happens. But could be a waste of time dependending on the answers to above questions.

Use model from SmartAmpPro

Hi and first thank's for this really interesting project! I was wondering which model formats are currently supported by NeuralPI. If i got things right currently the black box modeling of an amp or distorsion pedal has to be done by https://github.com/Alec-Wright/Automated-GuitarAmpModelling. For me the workflow behind https://github.com/GuitarML/SmartAmpPro looks a lot easier so i asked myself if it's possible to train a model on my desktop machine using SmartAmpPro and then transferring it to my PI using the provided scripts in this repo?

Thank's for your feedback 😎

Run individual NeuralPi plugins on each input/output channel

I have a use-case where I'm currently taking my guitar signal, splitting it to run through two different effects boards and then out to two separate amplifiers.

What I'd like to be able to do is use NeuralPi in place of my amps when playing at home, recording, or even potentially in a live scenario to a PA.

Since the NeuralPi + HifiBerry DAC/ADC has two input channels and two output channels, would it be possible to run two versions of NeuralPi in mono, and then set each NeuralPi to a different amplifier model?

I've been trying to get to grips with the Sushi configuration files just to see if I could at least run NeuralPi in mono on one channel only as a first step, but I'm not getting very far. Here's my config file at the moment:

{
    "host_config" : {
        "samplerate" : 44100
    },
    "tracks" : [
        {
            "name" : "channel1",
            "mode" : "mono",
            "inputs" : [
                {
                    "engine_bus" : 0,
                    "track_bus" : 0,
                    "engine_channel" : 0,
                    "track_channel" : 0
                }
            ],
            "outputs" : [
                {
                    "engine_bus" : 0,
                    "track_bus" : 0,
                    "engine_channel" : 0,
                    "track_channel" : 0
                }
            ],
            "plugins" : [
                {
                    "uid"  : "NeuralPi",
                    "path" : "/home/mind/plugins/NeuralPi.vst3",
                    "name" : "NeuralPi",
                    "type" : "vst3x"
                }
            ]
        },
        {
            "name" : "channel2",
            "mode" : "mono",
            "inputs" : [
                {
                    "engine_bus" : 0,
                    "track_bus" : 0,
                    "engine_channel" : 1,
                    "track_channel" : 1
                }
            ],
            "outputs" : [
                {
                    "engine_bus" : 0,
                    "track_bus" : 0,
                    "engine_channel" : 1,
                    "track_channel" : 1
                }
            ],
            "plugins" : [
                {
                    "uid"  : "NeuralPi",
                    "path" : "/home/mind/plugins/NeuralPi.vst3",
                    "name" : "NeuralPi",
                    "type" : "vst3x"
                }
            ]
        }
    ],
    "midi" : {
    }
}

This results in Sushi responding with:

Failed to load tracks from Json config file

I don't see anything in the documentation for Sushi that describes how to run one plugin on a specific channel.

So I guess my first question is,

  • How do I run NeuralPi twice, one input and output from/to channel 0, and then again for channel 1?

.. and then secondly,

  • I assume if I can get this far, my next problem is, how can I control both NeuralPi plugins? Assuming they'll both be listening on the same port, is something going to go wrong?

Questing regarding bitdepth/sample rate

The plugin processes at 44.1kHz (specified in config file) for the neural net DSP.

What would be involved to make it work at 24/96? I'm OK throwing a lot more CPU than a PI at it.

Convert json to the correct format

Hi,
is it possible to use or modify any of your scripts to format my json file into the correct format?

reverb_full.json
{
  "blocks.0.conv.weight": [
    [
      [
        -0.12978893518447876,
        0.06994239240884781,
        -0.4023527503013611,
        -0.41438114643096924,
        -0.6612128019332886,
        -0.3614353537559509,
        -0.27114737033843994,
        0.112068310379982,
        0.38114428520202637,
        0.4887019693851471,
        0.6554356813430786,
        -0.4438362419605255,
        0.39374813437461853
      ]
    ],
    [
      [
        0.16414739191532135,
        0.19401901960372925,
        0.20875263214111328,
        -0.08123783022165298,
        -0.16904081404209137,
        -0.38060006499290466,
        -0.46856534481048584,
        -0.4721149504184723,
        -0.5710168480873108,
        -0.3670860528945923,
        -0.38671302795410156,
        0.6685431003570557,
        -0.04902425408363342
      ]
    ],
    [
      [
        0.4626680910587311,
        0.17784880101680756,
        0.43885505199432373,
        -0.0470849946141243,
        0.002865601796656847,
        -0.40562742948532104,
        -0.3544344902038574,
        -0.2737330496311188,
        -0.22198913991451263,
        0.4236586093902588,
        0.31401094794273376,
        -0.08322042226791382,
        0.10948354750871658
      ]
    ],
    [
      [
        0.13861720263957977,
        -0.08151500672101974,
        -0.019760381430387497,
        -0.5040411353111267,
        -0.05446526035666466,
        -0.0723070278763771,
        0.30191850662231445,
        0.4373033046722412,
        0.16106392443180084,
        0.4336705803871155,
        -0.11624997109174728,
        -0.27015379071235657,
        0.11915561556816101
      ]
    ],
    [
      [
        0.004554027691483498,
        0.4190419912338257,
        0.33041882514953613,
        0.3829888701438904,
        0.2752778232097626,
        0.06909462064504623,
        -0.0584605410695076,
        -0.40082046389579773,
        -0.3158564269542694,
        -0.5295825600624084,
        -0.025273369625210762,
        0.2468806505203247,
        0.46459323167800903
      ]
    ],
    [
      [
        0.33590540289878845,
        0.6873836517333984,
        0.44092845916748047,
        0.13957849144935608,
        0.13420234620571136,
        0.07664095610380173,
        0.4255126416683197,
        0.2557465434074402,
        0.6376649141311646,
        0.1430581659078598,
        0.21847596764564514,
        -0.049670346081256866,
        -0.26276782155036926
      ]
    ],
    [
      [
        0.26874861121177673,
        0.5739907622337341,
        0.5572993159294128,
        0.3524931073188782,
        -0.01863924041390419,
        -0.19228047132492065,
        -0.36702674627304077,
        -0.20725062489509583,
        -0.3086352050304413,
        -0.15353555977344513,
        -0.40351706743240356,
        0.5660814046859741,
        -0.4398500323295593
      ]
    ],
    [
      [
        -0.03482133150100708,
        0.24805614352226257,
        0.38410335779190063,
        0.5632612705230713,
        0.301573783159256,
        0.6491830348968506,
        0.036067891865968704,
        0.3762640953063965,
        -0.22852304577827454,
        0.02845088019967079,
        -0.07039828598499298,
        -0.358144611120224,
        0.4611685872077942
      ]
    ]
  ],
  "blocks.0.conv.bias": [
    -0.1317085176706314,
    0.08011984080076218,
    -0.06573209166526794,
    0.011058688163757324,
    -0.20194905996322632,
    0.06509783118963242,
    -0.16241246461868286,
    0.0880821943283081
  ],
  "blocks.0.film.adaptor.weight": [
    [
      -0.1961742788553238,
      -0.4741583466529846
    ],
    [
      0.011823202483355999,
      0.2024676352739334
    ],
    [
      -0.02621980756521225,
      -0.5196312665939331
    ],
    [
      -0.7068157196044922,
      0.0865970179438591
    ],
    [
      0.3649085760116577,
      0.277482271194458
    ],
    [
      0.18172094225883484,
      0.3868367373943329
    ],
    [
      0.46423014998435974,
      0.1848887801170349
    ],
    [
      0.5936626195907593,
      -0.438988596200943
    ],
    [
      0.2238215059041977,
      0.0662228986620903
    ],
    [
      0.19389455020427704,
      0.02622789889574051
    ],
    [
      -0.4838640093803406,
      -0.36176443099975586
    ],
    [
      0.4020119905471802,
      -0.44867148995399475
    ],
    [
      0.165626659989357,
      0.2308674454689026
    ],
    [
      0.068228580057621,
      -0.2874886095523834
    ],
    [
      0.01961151883006096,
      -0.03211977705359459
    ],
    [
      -0.6209567785263062,
      0.5164832472801208
    ]
  ],
  "blocks.0.film.adaptor.bias": [
    0.6033231019973755,
    -1.1070866584777832,
    -0.5714347958564758,
    -0.4873560070991516,
    0.5016199946403503,
    0.3079793155193329,
    -0.7017751932144165,
    0.4282783269882202,
    -0.16450659930706024,
    -0.7908573746681213,
    -0.0443720780313015,
    0.4885551929473877,
    -0.17147032916545868,
    0.5332466959953308,
    0.4520356059074402,
    0.7016153931617737
  ],
  "blocks.0.act.weight": [
    1.0009664297103882
  ],
  "blocks.0.res.weight": [
    [
      [
        0.5294784903526306
      ]
    ],
    [
      [
        0.86680006980896
      ]
    ],
    [
      [
        -0.44722387194633484
      ]
    ],
    [
      [
        -0.27380549907684326
      ]
    ],
    [
      [
        0.028927665203809738
      ]
    ],
    [
      [
        -0.09963762760162354
      ]
    ],
    [
      [
        0.7559396028518677
      ]
    ],
    [
      [
        0.2093551903963089
      ]
    ]
  ],
  "blocks.1.conv.weight": [
    [
      [
        -0.07711799442768097,
        0.08344656974077225,
        0.04076553136110306,
        0.10020898282527924,
        -0.11097078770399094,
        -0.11143320798873901,
        0.17931348085403442,
        0.11138999462127686,
        0.174846351146698,
        0.393839955329895,
        0.3197454810142517,
        0.08202777057886124,
        -0.031757667660713196
      ],
      [
        0.05229942128062248,
        -0.02818986587226391,
        -0.06452976912260056,
        -0.12040051072835922,
        -0.06633339822292328,
        -0.050939641892910004,
        0.0017103988211601973,
        0.16327659785747528,
        0.5017920136451721,
        0.033963434398174286,
        0.31774571537971497,
        -0.029563620686531067,
        0.09175020456314087
      ],
      [
        -0.09032381325960159,
        -0.12506887316703796,
        -0.002402784302830696,
        0.19625329971313477,
        0.014101732522249222,
        0.1235448494553566,
        -0.007067403290420771,
        0.16727498173713684,
        -0.04353965446352959,
        -0.038468100130558014,
        0.058582037687301636,
        0.09566442668437958,
        -0.2185354232788086
      ],
      [
        0.04715130850672722,
        -0.010219794698059559,
        -0.025507207959890366,
        -0.05043631047010422,
        0.07472377270460129,
        -0.015879040583968163,
        0.0639127641916275,
        -0.19376887381076813,
        -0.13045448064804077,
        -0.08676312863826752,
        -0.24228425323963165,
        -0.15414263308048248,
        -0.005291626788675785
      ],
      [
        0.12142365425825119,
        0.1929740607738495,
        0.07469474524259567,
        -0.15313491225242615,
        -0.10863038152456284,
        -0.01197079662233591,
        -0.11516887694597244,
        -0.3258019983768463,
        -0.2214270383119583,
        -0.08978523313999176,
        -0.13874247670173645,
        -0.030187586322426796,
        -0.17816345393657684
      ],
      [
        -0.05544394627213478,
        -0.16796875,
        0.08019080013036728,
        -0.09363656491041183,
        -0.08548133820295334,
        -0.09318936616182327,
        -0.1595902293920517,
        0.16686087846755981,
        0.01916460320353508,
        0.12172669172286987,
        -0.11159529536962509,
        -0.08751115202903748,
        -0.09395644068717957
      ],
      [
        -0.07485000789165497,
        0.018888575956225395,
        -0.1818024218082428,
        0.06602674722671509,
        0.11201157420873642,
        -0.03815097734332085,
        0.06281216442584991,
        -0.1017046794295311,
        0.4575546383857727,
        -0.16868047416210175,
        0.04529567062854767,
        -0.03917982056736946,
        -0.17269298434257507
      ],
      [
        -0.0518195740878582,
        -0.151108518242836,
        -0.04104355350136757,
        -0.2038569152355194,
        -0.07654033601284027,
        -0.17273098230361938,
        -0.060671161860227585,
        0.006441981997340918,
        0.0938868373632431,
        0.023022949695587158,
        0.014817950315773487,
        -0.04113524779677391,
        0.0032533667981624603
      ]
    ],
    [
      [
        0.24876782298088074,
        0.3743344843387604,
        -0.028564918786287308,
        -0.07152310758829117,
        -0.051795970648527145,
        -0.020912213250994682,
        0.11077337712049484,
        0.004330573137849569,
        0.13782984018325806,
        0.3170555830001831,
        -0.026163361966609955,
        -0.37166401743888855,
        0.06184551864862442
      ],
      [
        -0.15473328530788422,
        0.018668081611394882,
        0.013542679138481617,
        0.09980976581573486,
        -0.16062377393245697,
        -0.27789902687072754,
        -0.18958726525306702,
        -0.004461800679564476,
        0.15716825425624847,
        -0.1337241530418396,
        0.045877762138843536,
        -0.3170774281024933,
        0.1339820772409439
      ],
      [
        0.1870499849319458,
        -0.03221616894006729,
        -0.10382607579231262,
        -0.17632772028446198,
        0.034827083349227905,
        0.11517401039600372,
        0.09103433787822723,
        -0.030097033828496933,
        -0.04792160540819168,
        0.16160252690315247,
        0.20551425218582153,
        0.247818261384964,
        0.6169501543045044
      ],
      [
        0.17939205467700958,
        -0.13420946896076202,
        -0.09155482053756714,
        -0.063503198325634,
        0.01924663968384266,
        0.1048579216003418,
        -0.019625527784228325,
        0.22244016826152802,
        -0.268033891916275,
        -0.0882626324892044,
        0.04404343664646149,
        -0.1612677127122879,
        -0.11129456758499146
      ],
      [
        0.02026752009987831,
        -0.36074432730674744,
        0.16278500854969025,
        0.22947059571743011,
        -0.04950552061200142,
        -0.057763852179050446,
        -0.0818830206990242,
        0.013575565069913864,
        -0.21019314229488373,
        -0.3076876997947693,
        -0.1461399644613266,
        0.133904367685318,
        0.0998762845993042
      ],
      [
        -0.3378638029098511,
        -0.2127697914838791,
        -0.050106726586818695,
        0.1227743923664093,
        0.03564467653632164,
        -0.19554093480110168,
        -0.29954975843429565,
        0.03280189633369446,
        -0.01862158626317978,
        -0.15235278010368347,
        0.11372646689414978,
        -0.4271148443222046,
        -0.16298574209213257
      ],
      [
        -0.0867587998509407,
        0.08702655881643295,
        0.00959621649235487,
        -0.16813340783119202,
        -0.010419685393571854,
        0.08129296451807022,
        -0.06237383931875229,
        -0.0025756366085261106,
        -0.008206075988709927,
        0.04723016172647476,
        0.1614225208759308,
        0.0992753729224205,
        -0.20132234692573547
      ],
      [
        -0.3785432279109955,
        0.07231808453798294,
        -0.023542920127511024,
        0.0905257984995842,
        -0.06828851252794266,
        -0.1431092619895935,
        -0.01614457368850708,
        0.08710993826389313,
        0.06340105086565018,
        -0.08667756617069244,
        -0.02988666296005249,
        -0.1967467963695526,
        -0.08425506949424744
      ]
    ],
    [
      [
        0.07029463350772858,
        0.12211472541093826,
        0.24917125701904297,
        0.06715789437294006,
        0.23083291947841644,
        0.2557414174079895,
        0.2601882815361023,
        0.010869350284337997,
        -0.40890684723854065,
        -0.17995138466358185,
        -0.19274474680423737,
        -0.07687100023031235,
        0.24175651371479034
      ],
      [
        0.34064024686813354,
        0.14762566983699799,
        0.21635271608829498,
        0.051498863846063614,
        -0.05741969496011734,
        0.135874941945076,
        0.04113515838980675,
        -0.16954828798770905,
        0.021020954474806786,
        0.320602685213089,
        -0.03101308085024357,
        -0.09504561126232147,
        0.2561611533164978
      ],
      [
        -0.04220788925886154,
        -0.09460336714982986,
        -0.2327042669057846,
        -0.2023429125547409,
        0.006683331448584795,
        -0.08685456961393356,
        -0.1636045128107071,
        -0.148858904838562,
        0.049193136394023895,
        0.022811580449342728,
        -0.20007291436195374,
        -0.023832429200410843,
        0.3280588984489441
      ],
      [
        -0.11941014975309372,
        -0.06783664971590042,
        -0.1578073650598526,
        -0.13438691198825836,
        0.006253362633287907,
        -0.0807168111205101,
        -0.07808047533035278,
        0.07587487995624542,
        0.050798870623111725,
        -0.04665113985538483,
        0.18117961287498474,
        0.02406664378941059,
        -0.014431656338274479
      ],
      [
        0.07119760662317276,
        -0.026420721784234047,
        0.13266998529434204,
        0.0079205222427845,
        -0.0320766344666481,
        0.1499301791191101,
        0.20276911556720734,
        0.4216448962688446,
        0.3322855830192566,
        0.05882500484585762,
        0.4019351899623871,
        0.36094236373901367,
        -0.020041225478053093
      ],
      [
        0.12826626002788544,
        -0.12717297673225403,
        0.034416552633047104,
        0.20028257369995117,
        0.09474874287843704,
        -0.087567538022995,
        0.05334356427192688,
        0.09066908061504364,
        0.2465364634990692,
        -0.05825085937976837,
        0.2059313952922821,
        0.15784089267253876,
        0.13699451088905334
      ],
      [
        -0.12354554980993271,
        -0.06009582802653313,
        -0.05432235449552536,
        0.033811066299676895,
        0.010687812231481075,
        0.0132676400244236,
        -0.047506529837846756,
        -0.0342421755194664,
        -0.4924405813217163,
        0.23480738699436188,
        -0.09543046355247498,
        -0.12006766349077225,
        -0.01512892171740532
      ],
      [
        0.1932687610387802,
        0.07299831509590149,
        -0.0543348602950573,
        0.10878659784793854,
        -0.018569324165582657,
        -0.04521804302930832,
        0.08221115171909332,
        -0.026313280686736107,
        0.08019635081291199,
        0.15122827887535095,
        0.24969449639320374,
        0.0242612324655056,
        -0.09388268738985062
      ]
    ],
    [
      [
        0.27043581008911133,
        -0.44969457387924194,
        -0.1666576862335205,
        -0.26497069001197815,
        0.5764533877372742,
        0.20759013295173645,
        0.3306817412376404,
        0.29486578702926636,
        0.0977938324213028,
        0.2555561661720276,
        -0.35540542006492615,
        -0.3495061993598938,
        -0.835557222366333
      ],
      [
        -0.2606877386569977,
        0.3111518621444702,
        0.3549477159976959,
        0.08835543692111969,
        0.04856054112315178,
        0.12516269087791443,
        0.26929840445518494,
        -0.5658052563667297,
        -0.17097625136375427,
        0.18108266592025757,
        -0.1875552386045456,
        0.06613697111606598,
        -0.1278935670852661
      ],
      [
        0.4259212613105774,
        0.18712584674358368,
        -0.032536379992961884,
        0.18321184813976288,
        -0.005851003807038069,
        0.1436595618724823,
        -0.09285928308963776,
        0.11592939496040344,
        0.31846562027931213,
        0.49594783782958984,
        0.48627060651779175,
        0.5925988554954529,
        -0.7562071681022644
      ],
      [
        -0.21625615656375885,
        -0.15241824090480804,
        -0.4215477705001831,
        -0.33769044280052185,
        0.08034571260213852,
        -0.31913456320762634,
        -0.11538652330636978,
        0.08503284305334091,
        0.48322033882141113,
        0.12596791982650757,
        -0.19418129324913025,
        0.2733350992202759,
        -0.08419235795736313
      ],
      [
        -0.4720801115036011,
        0.1459440439939499,
        -0.19303129613399506,
        -0.3848494291305542,
        -0.22595950961112976,
        -0.30035921931266785,
        -0.09124832600355148,
        0.07355998456478119,
        0.1722848117351532,
        0.08567722886800766,
        -0.03842289373278618,
        0.21599681675434113,
        -0.09331956505775452
      ],
      [
        -0.34112513065338135,
        -0.02019967883825302,
        0.15071697533130646,
        -0.2777383327484131,
        -0.4460528790950775,
        0.05713145062327385,
        -0.4042286276817322,
        -0.21991927921772003,
        -0.07442343980073929,
        0.0015539726009592414,
        -0.3425571620464325,
        0.13901042938232422,
        -0.13819600641727448
      ],
      [
        -0.1719331443309784,
        0.2536247968673706,
        -0.2756348252296448,
        0.33381301164627075,
        -0.09468775242567062,
        0.023649917915463448,
        0.10144159197807312,
        0.05455831438302994,
        -0.13106973469257355,
        0.00718923332169652,
        -0.20494313538074493,
        0.03357177972793579,
        -0.1398952156305313
      ],
      [
        -0.4734515845775604,
        -0.28328239917755127,
        -0.018328391015529633,
        -0.2750706374645233,
        -0.2860267758369446,
        -0.024580081924796104,
        -0.09798677265644073,
        -0.40284353494644165,
        -0.048121217638254166,
        0.0014556623063981533,
        0.01174885779619217,
        -0.00011105254816357046,
        -0.21119117736816406
      ]
    ],
    [
      [
        -0.17054153978824615,
        0.22628968954086304,
        0.03350615128874779,
        -0.22939208149909973,
        -0.5515426397323608,
        -0.2029648870229721,
        -0.13050390779972076,
        0.04734422639012337,
        -0.1621449589729309,
        -0.6060517430305481,
        0.16212570667266846,
        0.19646407663822174,
        -0.589593768119812
      ],
      [
        0.139724463224411,
        0.24593386054039001,
        -0.12415043264627457,
        -0.0029608379118144512,
        -0.009466027840971947,
        0.07170802354812622,
        0.18684858083724976,
        0.04255121573805809,
        -0.5430652499198914,
        -0.06225709617137909,
        -0.2543848752975464,
        -0.15202884376049042,
        -0.42257949709892273
      ],
      [
        -0.1346481740474701,
        -0.1647387444972992,
        0.08540448546409607,
        0.08808990567922592,
        0.1549173891544342,
        -0.06972523778676987,
        -0.09673846513032913,
        -0.34221169352531433,
        0.010606285184621811,
        0.11623590439558029,
        0.09097792208194733,
        0.3797415792942047,
        -0.39281976222991943
      ],
      [
        0.11389674246311188,
        -0.10373037308454514,
        0.11753188073635101,
        0.11268439143896103,
        -0.3376176357269287,
        -0.02093370631337166,
        0.09395825862884521,
        0.03028901107609272,
        0.10768134891986847,
        0.11409321427345276,
        0.19197754561901093,
        0.3144078850746155,
        -0.010299718007445335
      ],
      [
        0.2967904508113861,
        0.1482078582048416,
        0.1096625030040741,
        0.12157515436410904,
        -0.07039574533700943,
        -0.13718046247959137,
        0.4718051850795746,
        0.31631404161453247,
        0.008566679432988167,
        -0.04294494912028313,
        -0.22443071007728577,
        -0.48259615898132324,
        0.3447238802909851
      ],
      [
        0.17945052683353424,
        0.3376750946044922,
        0.3979697823524475,
        0.07655347883701324,
        -0.17280852794647217,
        -0.1557455211877823,
        0.06390959769487381,
        0.2339915633201599,
        0.36411789059638977,
        0.09057225286960602,
        -0.47313016653060913,
        0.3189946711063385,
        -0.24746465682983398
      ],
      [
        0.08709873259067535,
        -0.06324933469295502,
        0.05374915525317192,
        -0.15729793906211853,
        -0.04355752468109131,
        0.03102252259850502,
        -0.10489819198846817,
        -0.05261972174048424,
        0.01303042285144329,
        -0.06200196221470833,
        0.08539052307605743,
        0.03877132758498192,
        0.49206289649009705
      ],
      [
        0.029569800943136215,
        0.18935789167881012,
        0.20751813054084778,
        -0.07398752123117447,
        -0.1847994327545166,
        0.33626073598861694,
        0.21475651860237122,
        0.2902076840400696,
        0.060747355222702026,
        0.34168562293052673,
        -0.21755242347717285,
        -0.27238723635673523,
        0.03908200189471245
      ]
    ],
    [
      [
        -0.10018479079008102,
        -0.2989886403083801,
        -0.10252587497234344,
        0.24249997735023499,
        0.6282421350479126,
        0.2773405909538269,
        0.03073757141828537,
        -0.3069939613342285,
        -0.47028836607933044,
        0.011656736023724079,
        -0.12899799644947052,
        -0.42961010336875916,
        -0.3695259690284729
      ],
      [
        -0.1627511829137802,
        -0.21711093187332153,
        0.1399671882390976,
        -0.08625957369804382,
        -0.3019210994243622,
        -0.12302842736244202,
        0.2953915596008301,
        0.11214704811573029,
        0.17237843573093414,
        0.07009243965148926,
        -0.29363924264907837,
        -0.17549015581607819,
        -0.04913061112165451
      ],
      [
        -0.19702135026454926,
        -0.15539155900478363,
        -0.13256916403770447,
        -0.2723579406738281,
        -0.23923806846141815,
        0.01393366139382124,
        0.015711817890405655,
        -0.10746638476848602,
        -0.20622670650482178,
        0.19437792897224426,
        0.38927778601646423,
        0.34459325671195984,
        -0.38159385323524475
      ],
      [
        0.20679491758346558,
        0.10050376504659653,
        0.07447122782468796,
        0.1063733622431755,
        0.013168549165129662,
        -0.03835344687104225,
        -0.16357927024364471,
        0.022400906309485435,
        0.25364577770233154,
        -0.012296446599066257,
        0.10518587380647659,
        0.0771317332983017,
        0.31396767497062683
      ],
      [
        0.20826976001262665,
        0.17529833316802979,
        0.20402094721794128,
        0.16573424637317657,
        -0.04683304950594902,
        0.3714047074317932,
        0.2662680447101593,
        0.27120906114578247,
        0.23619318008422852,
        -0.19986508786678314,
        -0.3020937442779541,
        -0.2284863293170929,
        0.43095237016677856
      ],
      [
        0.08802756667137146,
        0.2947675883769989,
        0.3348720967769623,
        -0.20341326296329498,
        -0.17334362864494324,
        0.21839351952075958,
        0.30887338519096375,
        0.21187935769557953,
        0.3637281656265259,
        0.43764179944992065,
        -0.12477471679449081,
        -0.24596546590328217,
        0.0974564254283905
      ],
      [
        0.16108150780200958,
        -0.08050108700990677,
        0.062276776880025864,
        -0.10044875741004944,
        0.10546617209911346,
        -0.028219934552907944,
        -0.15659748017787933,
        -0.02487758733332157,
        -0.020197702571749687,
        0.1524835079908371,
        0.01653343439102173,
        0.11970017105340958,
        -0.016258863732218742
      ],
      [
        -0.1356615126132965,
        0.0376959890127182,
        0.13383057713508606,
        -0.10754768550395966,
        -0.24719782173633575,
        -0.26952916383743286,
        0.22604018449783325,
        0.14375385642051697,
        0.3703441917896271,
        0.278440922498703,
        -0.125310480594635,
        0.00034144986420869827,
        0.07159250974655151
      ]
    ],
    [
      [
        0.23435905575752258,
        0.13378548622131348,
        -0.08327461034059525,
        0.1946486383676529,
        0.4075651466846466,
        0.10072996467351913,
        0.20704364776611328,
        -0.21107782423496246,
        -0.33482858538627625,
        0.0858473852276802,
        -0.3395414352416992,
        -0.3283340036869049,
        0.049451880156993866
      ],
      [
        0.03765861690044403,
        0.16301515698432922,
        0.18324050307273865,
        0.26428842544555664,
        0.13629110157489777,
        -0.03113766945898533,
        -0.33184805512428284,
        0.050400760024785995,
        0.3731294572353363,
        -0.12183599919080734,
        0.2182263731956482,
        -0.14256519079208374,
        0.11456610262393951
      ],
      [
        0.00814778171479702,
        0.15797372162342072,
        -0.20357130467891693,
        -0.05899513512849808,
        -0.06910505890846252,
        0.018917972221970558,
        -0.26122620701789856,
        0.06806804239749908,
        0.30022189021110535,
        0.4514320194721222,
        0.26689812541007996,
        -0.03392300009727478,
        0.035930052399635315
      ],
      [
        0.12228557467460632,
        -0.2013426572084427,
        -0.05517677962779999,
        -0.36085060238838196,
        -0.06642551720142365,
        -0.17502446472644806,
        0.148324653506279,
        0.05258586257696152,
        0.032516684383153915,
        0.3129241466522217,
        -0.08505829423666,
        0.22096145153045654,
        -0.39916980266571045
      ],
      [
        -0.09654733538627625,
        0.02166665717959404,
        -0.11098380386829376,
        -0.008288015611469746,
        -0.22447602450847626,
        -0.07079034298658371,
        0.16778063774108887,
        0.2006673663854599,
        -0.43677249550819397,
        -0.1100853905081749,
        0.2193749099969864,
        0.2665092647075653,
        -0.24603071808815002
      ],
      [
        -0.04567652568221092,
        0.203989639878273,
        -0.05839059501886368,
        -0.10345601290464401,
        -0.027240466326475143,
        0.16040350496768951,
        -0.13164475560188293,
        0.48249030113220215,
        0.02289147675037384,
        0.11381486803293228,
        -0.10405115783214569,
        0.057104773819446564,
        0.05236157402396202
      ],
      [
        0.002305978909134865,
        0.016120631247758865,
        0.022539163008332253,
        -0.03073672391474247,
        0.052956897765398026,
        0.2278418391942978,
        0.2020830512046814,
        -0.5654428601264954,
        0.3782353103160858,
        0.10955580323934555,
        0.004071260802447796,
        0.16767533123493195,
        -0.17628347873687744
      ],
      [
        0.017437059432268143,
        -0.2627226412296295,
        -0.006718270014971495,
        -0.32550424337387085,
        -0.2807493805885315,
        -0.08436501026153564,
        0.1141698881983757,
        0.08631416410207748,
        0.26916632056236267,
        0.027563517913222313,
        -0.1804860532283783,
        0.29752427339553833,
        0.06349758058786392
      ]
    ],
    [
      [
        0.1779889017343521,
        -0.1600475013256073,
        0.20801344513893127,
        -0.23250643908977509,
        -0.07430548965930939,
        -0.12453827261924744,
        -0.1605912297964096,
        -0.2939641773700714,
        0.10646487027406693,
        0.42278754711151123,
        -0.010030798614025116,
        -0.06275814771652222,
        -0.060611359775066376
      ],
      [
        0.10220299661159515,
        -0.0017455823253840208,
        0.0629781186580658,
        0.0676165372133255,
        0.03049355559051037,
        0.03693315386772156,
        -0.05818089842796326,
        0.08723882585763931,
        0.20794284343719482,
        0.14487305283546448,
        -0.4077502191066742,
        0.11882378160953522,
        0.12480950355529785
      ],
      [
        0.05597207322716713,
        0.06744754314422607,
        -0.00030471174977719784,
        -0.08963281661272049,
        0.26044902205467224,
        0.03948526829481125,
        0.01811140403151512,
        -0.04134116694331169,
        -0.08258318156003952,
        -0.04050654545426369,
        0.1985173523426056,
        0.4251660108566284,
        0.1655322164297104
      ],
      [
        -0.11812230199575424,
        0.07767041772603989,
        -0.01848326250910759,
        -0.08781664818525314,
        -0.044253550469875336,
        0.10819171369075775,
        0.13178084790706635,
        -0.055853575468063354,
        -0.03917849063873291,
        -0.05506351217627525,
        0.029477214440703392,
        -0.07246604561805725,
        0.003973443992435932
      ],
      [
        -0.12181282788515091,
        -0.10874608159065247,
        -0.1989222764968872,
        -0.09141463041305542,
        -0.11996316909790039,
        -0.08804897218942642,
        -0.06168311834335327,
        -0.24054567515850067,
        -0.595859169960022,
        0.18332776427268982,
        -0.012392276898026466,
        -0.17548511922359467,
        0.0031862587202340364
      ],
      [
        0.1430831402540207,
        0.09884905070066452,
        0.03985454887151718,
        0.13054624199867249,
        0.13118833303451538,
        0.03103780932724476,
        0.17221613228321075,
        0.24480311572551727,
        0.020765505731105804,
        0.011990304104983807,
        0.021758530288934708,
        -0.037039320915937424,
        0.009539716877043247
      ],
      [
        0.023866163566708565,
        -0.04388217628002167,
        0.19076018035411835,
        0.04761650413274765,
        -0.055160026997327805,
        0.1782846301794052,
        0.046967413276433945,
        -0.003074377542361617,
        0.3948271572589874,
        0.07619931548833847,
        -0.240696519613266,
        0.04158381372690201,
        0.19807595014572144
      ],
      [
        0.1986420601606369,
        0.08786401897668839,
        -0.06125858798623085,
        0.14908376336097717,
        0.025201966986060143,
        0.0918109267950058,
        0.032431695610284805,
        -0.07619578391313553,
        0.05047134682536125,
        0.0744362324476242,
        -0.03230486437678337,
        0.01101916003972292,
        0.15154944360256195
      ]
    ]
  ],
  "blocks.1.conv.bias": [
    0.039022695273160934,
    -0.056102823466062546,
    -0.024983379989862442,
    -0.02455197460949421,
    0.09456279128789902,
    0.07751905173063278,
    0.045637596398591995,
    0.10239540785551071
  ],
  "blocks.1.film.adaptor.weight": [
    [
      -0.1920744776725769,
      -0.36642715334892273
    ],
    [
      -0.10919186472892761,
      0.5845969319343567
    ],
    [
      0.15786893665790558,
      -0.02141219936311245
    ],
    [
      -0.16820427775382996,
      -0.6025196313858032
    ],
    [
      -0.26009872555732727,
      -0.6136142611503601
    ],
    [
      0.07542473077774048,
      -0.2528831958770752
    ],
    [
      -0.571000874042511,
      -0.3739098012447357
    ],
    [
      0.5869722962379456,
      0.5500885844230652
    ],
    [
      -0.3847959041595459,
      0.46421870589256287
    ],
    [
      -0.0139105673879385,
      0.0002011247561313212
    ],
    [
      0.36854156851768494,
      -0.41543304920196533
    ],
    [
      -0.1889561265707016,
      -0.37446048855781555
    ],
    [
      0.395334392786026,
      0.046441443264484406
    ],
    [
      0.6860061287879944,
      -0.43053266406059265
    ],
    [
      0.12603096663951874,
      0.4406793415546417
    ],
    [
      0.6690205931663513,
      0.5749472975730896
    ]
  ],
  "blocks.1.film.adaptor.bias": [
    -0.8090089559555054,
    -0.39953240752220154,
    -0.5466524362564087,
    0.544425368309021,
    -0.55129075050354,
    -0.7276172637939453,
    0.9537842273712158,
    0.5350419878959656,
    0.584915041923523,
    0.6961875557899475,
    0.5572137832641602,
    -0.41713106632232666,
    -0.0772152841091156,
    -0.6040774583816528,
    -0.7484288215637207,
    0.19997663795948029
  ],
  "blocks.1.act.weight": [
    0.46397683024406433
  ],
  "blocks.1.res.weight": [
    [
      [
        0.23954744637012482
      ],
      [
        0.34669551253318787
      ],
      [
        -0.15282149612903595
      ],
      [
        0.05480371415615082
      ],
      [
        0.2873506546020508
      ],
      [
        -0.10003294795751572
      ],
      [
        -0.18082185089588165
      ],
      [
        -0.22808915376663208
      ]
    ],
    [
      [
        0.11672795563936234
      ],
      [
        0.21682190895080566
      ],
      [
        0.011771985329687595
      ],
      [
        -0.44653674960136414
      ],
      [
        0.03224165737628937
      ],
      [
        -0.33767035603523254
      ],
      [
        -0.2661464214324951
      ],
      [
        -0.3970877528190613
      ]
    ],
    [
      [
        0.1665441244840622
      ],
      [
        0.17080971598625183
      ],
      [
        -0.08858447521924973
      ],
      [
        -0.4354017972946167
      ],
      [
        -0.0683634802699089
      ],
      [
        -0.197069451212883
      ],
      [
        -0.1512748748064041
      ],
      [
        -0.2979803681373596
      ]
    ],
    [
      [
        -0.3137238919734955
      ],
      [
        -0.3550548851490021
      ],
      [
        0.06544020026922226
      ],
      [
        0.023617317900061607
      ],
      [
        -0.23568183183670044
      ],
      [
        -0.0637611374258995
      ],
      [
        0.14806506037712097
      ],
      [
        -0.06656362861394882
      ]
    ],
    [
      [
        -0.1331615298986435
      ],
      [
        -0.6523426175117493
      ],
      [
        0.20495125651359558
      ],
      [
        0.5400740504264832
      ],
      [
        -0.21166765689849854
      ],
      [
        0.2856367528438568
      ],
      [
        0.3424408435821533
      ],
      [
        0.41370460391044617
      ]
    ],
    [
      [
        -0.14674000442028046
      ],
      [
        -0.17715959250926971
      ],
      [
        0.013553967699408531
      ],
      [
        0.24048814177513123
      ],
      [
        -0.0704665556550026
      ],
      [
        0.22919435799121857
      ],
      [
        0.08408137410879135
      ],
      [
        0.4208521842956543
      ]
    ],
    [
      [
        -0.49152255058288574
      ],
      [
        -0.04139299690723419
      ],
      [
        -0.02139604464173317
      ],
      [
        0.20046839118003845
      ],
      [
        0.025460761040449142
      ],
      [
        0.15256422758102417
      ],
      [
        0.05383558198809624
      ],
      [
        0.4361012876033783
      ]
    ],
    [
      [
        0.17738568782806396
      ],
      [
        0.08099385350942612
      ],
      [
        -0.0069798962213099
      ],
      [
        0.01131056621670723
      ],
      [
        0.08092645555734634
      ],
      [
        -0.3337112367153168
      ],
      [
        -0.06901954859495163
      ],
      [
        -0.24957706034183502
      ]
    ]
  ],
  "blocks.2.conv.weight": [
    [
      [
        0.042302925139665604,
        0.05812886357307434,
        -0.017028488218784332,
        0.21401230990886688,
        0.036968931555747986,
        -0.1744750291109085,
        -0.2161342054605484,
        -0.025922851637005806,
        -0.0842086598277092,
        -0.20764105021953583,
        0.02421467751264572,
        -0.3531104028224945,
        -0.1883394718170166
      ],
      [
        -0.3981703221797943,
        -0.1130186915397644,
        0.40913382172584534,
        0.25374260544776917,
        -0.6101715564727783,
        -0.4309099018573761,
        -0.26369962096214294,
        -0.026872923597693443,
        0.2881311774253845,
        0.46864965558052063,
        -0.4857276976108551,
        0.055999647825956345,
        -0.3691211938858032
      ],
      [
        -0.08321228623390198,
        -0.015520812943577766,
        -0.050983887165784836,
        0.16907940804958344,
        0.2185622900724411,
        0.11868663132190704,
        -0.4334658682346344,
        -0.20049965381622314,
        -0.08636908233165741,
        0.23347865045070648,
        0.008874882012605667,
        -0.22822465002536774,
        0.03427339717745781
      ],
      [
        0.1583331823348999,
        0.21785101294517517,
        -0.007748717442154884,
        0.015719464048743248,
        -0.16047391295433044,
        0.00945714395493269,
        0.22464659810066223,
        -0.010890563949942589,
        -0.23374931514263153,
        0.1802576631307602,
        0.2226865142583847,
        -0.39087703824043274,
        0.05699333921074867
      ],
      [
        0.07877740263938904,
        0.05214906111359596,
        -0.18903762102127075,
        -0.2785540819168091,
        -0.44223323464393616,
        -0.06915342062711716,
        0.08193379640579224,
        0.30619966983795166,
        0.10452526807785034,
        -0.2701376676559448,
        -0.08986003696918488,
        -0.010921251960098743,
        -0.0020618224516510963
      ],
      [
        -0.18850408494472504,
        0.36784055829048157,
        0.15623976290225983,
        0.030214982107281685,
        -0.13492557406425476,
        -0.01358084473758936,
        0.5254725217819214,
        0.11026216298341751,
        0.17129576206207275,
        -0.2865180969238281,
        -0.21366530656814575,
        -0.022590843960642815,
        0.19957730174064636
      ],
      [
        -0.14945471286773682,
        -0.18137574195861816,
        -0.026874937117099762,
        0.3480578660964966,
        0.0909683033823967,
        0.16701620817184448,
        -0.062405116856098175,
        0.13997827470302582,
        -0.08923236280679703,
        -0.29058945178985596,
        -0.3905898928642273,
        0.1414465308189392,
        -0.17668388783931732
      ],
      [
        -0.024948712438344955,
        0.18569087982177734,
        0.04716763645410538,
        -0.09749851375818253,
        0.023025646805763245,
        -0.0032634465023875237,
        0.013677077367901802,
        0.011096068657934666,
        0.039893195033073425,
        -0.06749336421489716,
        -0.11657410860061646,
        -0.19226881861686707,
        0.36002758145332336
      ]
    ],
    [
      [
        0.018794765695929527,
        -0.04854359105229378,
        0.06093686446547508,
        0.04129151999950409,
        -0.01986480876803398,
        0.05597305670380592,
        0.08483155816793442,
        -0.056019775569438934,
        -0.16339939832687378,
        0.13466030359268188,
        -0.06305363029241562,
        -0.06917708367109299,
        0.29835259914398193
      ],
      [
        0.44919830560684204,
        0.06609741598367691,
        -0.29530850052833557,
        -0.41037529706954956,
        0.22997121512889862,
        -0.13931187987327576,
        -0.015815576538443565,
        -0.09883420169353485,
        -0.04509291052818298,
        0.04496622085571289,
        -0.29582253098487854,
        0.4430769979953766,
        -0.5363903641700745
      ],
      [
        0.30153951048851013,
        0.02906051091849804,
        -0.060390692204236984,
        -0.003235982730984688,
        0.023522503674030304,
        -0.058983296155929565,
        0.10836510360240936,
        0.03903922811150551,
        -0.2574644684791565,
        -0.037354975938797,
        0.2148008793592453,
        -0.26852503418922424,
        0.7900221347808838
      ],
      [
        -0.009816979989409447,
        0.019347937777638435,
        -0.049596384167671204,
        -0.178575798869133,
        -0.03636026754975319,
        -0.06520947068929672,
        0.08327341079711914,
        0.15124307572841644,
        0.28080323338508606,
        -0.23220577836036682,
        0.2989444136619568,
        -0.37834128737449646,
        -0.28357169032096863
      ],
      [
        -0.04165118560194969,
        -0.1091410294175148,
        0.10321768373250961,
        0.2518506348133087,
        0.061602674424648285,
        -0.061559371650218964,
        -0.19340044260025024,
        -0.2039005011320114,
        -0.12686926126480103,
        0.014805780723690987,
        0.20863491296768188,
        0.0718926414847374,
        0.4390872120857239
      ],
      [
        -0.09115459769964218,
        -0.12582772970199585,
        -0.08682774007320404,
        0.21417851746082306,
        -0.05365053191781044,
        0.21613655984401703,
        -0.14710424840450287,
        0.2360914647579193,
        0.2796229124069214,
        0.30518659949302673,
        -0.07373419404029846,
        0.12649141252040863,
        0.4455512464046478
      ],
      [
        0.1126805767416954,
        0.18960946798324585,
        0.09249379485845566,
        -0.016542766243219376,
        -0.07027817517518997,
        0.020508404821157455,
        -0.08619462698698044,
        -0.08408643305301666,
        -0.20637762546539307,
        0.061270106583833694,
        -0.2315180003643036,
        -0.143284410238266,
        -0.269182950258255
      ],
      [
        0.023935889825224876,
        -0.07135897874832153,
        -0.02039148658514023,
        0.05636071413755417,
        0.08204059302806854,
        0.030124934390187263,
        -0.06034364551305771,
        0.09145268052816391,
        0.03147534281015396,
        0.08998837321996689,
        -0.049865398555994034,
        0.1325392872095108,
        0.2876489758491516
      ]
    ],
    [
      [
        -0.02080969512462616,
        -0.1516072303056717,
        0.05467855557799339,
        -0.13758286833763123,
        0.07437773048877716,
        -0.37717968225479126,
        -0.0612809844315052,
        -0.17326612770557404,
        0.20051884651184082,
        -0.13219794631004333,
        0.20328886806964874,
        0.18447192013263702,
        0.19627216458320618
      ],
      [
        -0.022603970021009445,
        -0.2215559035539627,
        -0.26102596521377563,
        0.08430757373571396,
        0.5245946049690247,
        0.18946191668510437,
        0.05823566019535065,
        -0.49699312448501587,
        0.22230565547943115,
        -0.21894347667694092,
        0.17838886380195618,
        0.06199624389410019,
        -0.22345858812332153
      ],
      [
        -0.13019904494285583,
        -0.19500508904457092,
        -0.11263452470302582,
        0.011433353647589684,
        0.25218749046325684,
        -0.30130019783973694,
        -0.058566730469465256,
        -0.17522254586219788,
        0.33434075117111206,
        -0.12287484854459763,
        0.3654686212539673,
        0.07613032311201096,
        0.5201212763786316
      ],
      [
        -0.0697302296757698,
        -0.022790104150772095,
        0.03205697238445282,
        -0.2153303474187851,
        -0.14588795602321625,
        0.4398595094680786,
        0.07740787416696548,
        -0.16747014224529266,
        -0.2686308026313782,
        0.109615258872509,
        -0.007168420124799013,
        -0.28231170773506165,
        -0.0024874687660485506
      ],
      [
        -0.22512882947921753,
        0.010060486383736134,
        0.1768382489681244,
        0.013268758542835712,
        0.25504589080810547,
        -0.4111330807209015,
        -0.11999591439962387,
        0.05113569647073746,
        0.36847925186157227,
        -0.3341072201728821,
        0.03197495639324188,
        0.36555343866348267,
        0.040890008211135864
      ],
      [
        0.4295658767223358,
        -0.18235012888908386,
        0.21934936940670013,
        0.1968214362859726,
        -0.22744803130626678,
        0.08305782824754715,
        -0.09272929280996323,
        0.17586298286914825,
        -0.29921531677246094,
        -0.03585651144385338,
        -0.39855679869651794,
        -0.33673492074012756,
        0.1356787532567978
      ],
      [
        -0.2734551429748535,
        -0.0006026334594935179,
        0.18349674344062805,
        -0.38620027899742126,
        0.007867281325161457,
        -0.08330663293600082,
        0.15197980403900146,
        -0.40322571992874146,
        0.21204786002635956,
        0.23872846364974976,
        0.38217785954475403,
        0.36864376068115234,
        0.10453195869922638
      ],
      [
        0.052610721439123154,
        0.06546774506568909,
        0.015612546354532242,
        0.0037276153452694416,
        0.02909095026552677,
        -0.14818838238716125,
        -0.07156664878129959,
        0.08279628306627274,
        -0.019486675038933754,
        -0.06681805104017258,
        -0.10597877204418182,
        0.061754532158374786,
        0.12112778425216675
      ]
    ],
    [
      [
        -0.0011757483007386327,
        -0.0825626403093338,
        0.039483506232500076,
        0.24234600365161896,
        0.23232528567314148,
        -0.10964268445968628,
        -0.2175772786140442,
        -0.03258737176656723,
        0.004764114040881395,
        -0.10513864457607269,
        0.1936071813106537,
        -0.0717867836356163,
        0.055987536907196045
      ],
      [
        -0.021806472912430763,
        -0.31341448426246643,
        -0.14348652958869934,
        -0.04423408582806587,
        0.3228727877140045,
        0.1748380810022354,
        -0.20736585557460785,
        -0.49010998010635376,
        -0.35420921444892883,
        -0.07287399470806122,
        0.24886147677898407,
        -0.3459588885307312,
        0.047189369797706604
      ],
      [
        0.10918571799993515,
        0.08538851886987686,
        -0.07444615662097931,
        0.274750292301178,
        0.5600765347480774,
        -0.07289984822273254,
        -0.19735059142112732,
        -0.023003779351711273,
        0.11494889855384827,
        0.04610098525881767,
        0.08002474159002304,
        0.16255833208560944,
        -0.19888806343078613
      ],
      [
        0.013424809090793133,
        0.09575644880533218,
        0.0981195867061615,
        -0.19667422771453857,
        -0.20901012420654297,
        0.4243069887161255,
        0.6010630130767822,
        0.13020959496498108,
        -0.04498521238565445,
        0.3268528878688812,
        -0.2323828786611557,
        -0.1965591013431549,
        -0.2652651369571686
      ],
      [
        -0.16260890662670135,
        -0.03275205194950104,
        0.10057061910629272,
        0.32879889011383057,
        0.257962703704834,
        -0.49918946623802185,
        -0.49425598978996277,
        -0.45664289593696594,
        0.03311961516737938,
        -0.2701968550682068,
        -0.27150633931159973,
        0.08212704956531525,
        0.29593634605407715
      ],
      [
        -0.06146293878555298,
        -0.08728741109371185,
        -0.11555509269237518,
        0.1321323961019516,
        -0.3508555293083191,
        0.06007988750934601,
        0.23624441027641296,
        0.3698098361492157,
        0.14656364917755127,
        0.24697034060955048,
        0.16683486104011536,
        -0.56537264585495,
        0.28089019656181335
      ],
      [
        -0.31575241684913635,
        0.13158656656742096,
        0.02425883337855339,
        0.13450096547603607,
        -0.04030974581837654,
        -0.1387663632631302,
        -0.08086878806352615,
        -0.0831875205039978,
        -0.00653885817155242,
        -0.11045091599225998,
        0.16943678259849548,
        -0.08379548788070679,
        0.5775655508041382
      ],
      [
        -0.004729136824607849,
        0.11973187327384949,
        0.011500759981572628,
        0.04821019992232323,
        -0.0447445809841156,
        -0.08600669354200363,
        -0.046265747398138046,
        0.25892430543899536,
        0.2185135781764984,
        -0.05220106989145279,
        -0.27641984820365906,
        -0.1385708898305893,
        -0.1408577412366867
      ]
    ],
    [
      [
        -0.12556935846805573,
        -0.0913490578532219,
        0.023431388661265373,
        -0.09533507376909256,
        0.11570210754871368,
        0.007166499271988869,
        0.009387651458382607,
        0.041432734578847885,
        -0.14410941302776337,
        0.1486606001853943,
        -0.027691666036844254,
        0.052236951887607574,
        0.013944285921752453
      ],
      [
        -0.17028076946735382,
        -0.17090395092964172,
        0.01644560880959034,
        0.018029795959591866,
        0.12463334202766418,
        -0.0003349094185978174,
        0.13800199329853058,
        -0.049568504095077515,
        -0.07172860950231552,
        0.18021665513515472,
        0.023101987317204475,
        0.07503353804349899,
        -0.05736663565039635
      ],
      [
        0.09779833257198334,
        -0.09212134033441544,
        0.24566930532455444,
        -0.12670977413654327,
        0.1136486753821373,
        -0.07556597143411636,
        -0.11651601642370224,
        0.1083005741238594,
        -0.01369608473032713,
        -0.11454367637634277,
        -0.2676527202129364,
        0.062393512576818466,
        0.07553189992904663
      ],
      [
        -0.14937381446361542,
        0.20880231261253357,
        -0.10762286186218262,
        0.06591565161943436,
        0.13656900823116302,
        0.07967280596494675,
        -0.15156175196170807,
        -0.05784711614251137,
        -0.1291966289281845,
        -0.11062819510698318,
        0.08637568354606628,
        0.18944311141967773,
        -0.019343869760632515
      ],
      [
        -0.0469803586602211,
        0.08708063513040543,
        -0.05655796453356743,
        -0.03194216638803482,
        0.0372529998421669,
        -0.03449789062142372,
        -0.01605222187936306,
        -0.11881158500909805,
        0.009977188892662525,
        -0.04805803671479225,
        -0.03833668678998947,
        0.06325516104698181,
        0.13845576345920563
      ],
      [
        0.027384700253605843,
        -0.15406648814678192,
        -0.16805808246135712,
        0.01621837727725506,
        0.05457168444991112,
        -0.01525944471359253,
        0.09279331564903259,
        -0.025054771453142166,
        0.007079185917973518,
        -0.0009824222652241588,
        0.14853297173976898,
        -0.047118160873651505,
        -0.02686961740255356
      ],
      [
        -0.008065653033554554,
        -0.08667774498462677,
        -0.21699479222297668,
        0.12566159665584564,
        0.12085999548435211,
        -0.10498573631048203,
        0.06118301674723625,
        -0.37377193570137024,
        -0.044523268938064575,
        0.130159392952919,
        0.23742204904556274,
        -0.08586287498474121,
        0.261667937040329
      ],
      [
        -0.05605006217956543,
        0.048204150050878525,
        0.11863311380147934,
        0.09359629452228546,
        -0.13927583396434784,
        -0.13754688203334808,
        0.02697843499481678,
        0.04993334040045738,
        0.07862292230129242,
        -0.07477141916751862,
        -0.053003713488578796,
        -0.04571643844246864,
        -0.05139997974038124
      ]
    ],
    [
      [
        -0.14175096154212952,
        0.09246259182691574,
        -0.0180851761251688,
        0.15945203602313995,
        0.12937825918197632,
        0.3056008815765381,
        0.17975565791130066,
        0.13392971456050873,
        0.01996927708387375,
        0.151113823056221,
        0.0944669097661972,
        -0.2932913899421692,
        -0.0485091358423233
      ],
      [
        0.11238046735525131,
        -0.18119393289089203,
        0.1808876097202301,
        0.35582438111305237,
        0.012699928134679794,
        0.3105449378490448,
        -0.3047097623348236,
        -0.0402444526553154,
        -0.4741934537887573,
        -0.39380231499671936,
        0.40187764167785645,
        0.12694688141345978,
        -0.2906889319419861
      ],
      [
        0.005408168770372868,
        0.0062219831161201,
        -0.06655839830636978,
        0.3337653577327728,
        0.20031887292861938,
        0.26062238216400146,
        0.2353270947933197,
        0.25394895672798157,
        -0.12596523761749268,
        0.03002074547111988,
        0.41407614946365356,
        -0.43255797028541565,
        0.15355683863162994
      ],
      [
        0.13131792843341827,
        -0.07640839368104935,
        0.08188767731189728,
        0.12746386229991913,
        0.05238056555390358,
        -0.09570308774709702,
        0.06121968850493431,
        0.13387957215309143,
        0.15156526863574982,
        0.10637279599905014,
        -0.12179148942232132,
        0.015852028504014015,
        -0.19375799596309662
      ],
      [
        -0.26896539330482483,
        0.1614542305469513,
        0.1887732744216919,
        0.12025163322687149,
        0.46361416578292847,
        0.05037417635321617,
        -0.044854067265987396,
        -0.4203989505767822,
        -0.3254135251045227,
        -0.04996519908308983,
        0.1670684814453125,
        -0.2803362011909485,
        0.27805498242378235
      ],
      [
        -0.34904828667640686,
        -0.2508484423160553,
        -0.17883628606796265,
        -0.3995896875858307,
        -0.11125840246677399,
        -0.21119296550750732,
        -0.3311212360858917,
        -0.0474163293838501,
        0.23661580681800842,
        0.28178560733795166,
        0.5157320499420166,
        0.06491059809923172,
        0.2019345760345459
      ],
      [
        -0.27065184712409973,
        -0.005401803646236658,
        -0.11246684193611145,
        0.06621542572975159,
        -0.0981183871626854,
        -0.15993854403495789,
        0.0818425789475441,
        0.009093777276575565,
        0.30233633518218994,
        0.07470807433128357,
        -0.20221956074237823,
        -0.23100616037845612,
        -0.07519477605819702
      ],
      [
        -0.056394219398498535,
        -0.15594331920146942,
        -0.1337529718875885,
        0.07362402975559235,
        -0.009338864125311375,
        0.13735711574554443,
        -0.01541760191321373,
        0.033531609922647476,
        0.12635640799999237,
        0.07177902013063431,
        0.17831608653068542,
        -0.008924552239477634,
        0.20463907718658447
      ]
    ],
    [
      [
        -0.166639044880867,
        0.15671204030513763,
        -0.042657624930143356,
        0.295663446187973,
        -0.015998871996998787,
        0.02938792295753956,
        0.11986452341079712,
        -0.20917385816574097,
        -0.024100812152028084,
        -0.06466366350650787,
        -0.14135527610778809,
        0.18636704981327057,
        -0.18023350834846497
      ],
      [
        0.13711857795715332,
        0.46231240034103394,
        -0.25706353783607483,
        0.07903585582971573,
        -0.3276607096195221,
        -0.06454015523195267,
        0.09584563225507736,
        0.15281891822814941,
        0.28096333146095276,
        0.13049067556858063,
        -0.227244570851326,
        -0.09301065653562546,
        -0.16641609370708466
      ],
      [
        -0.17691512405872345,
        0.2574894428253174,
        -0.0429946631193161,
        0.27093032002449036,
        -0.03727075085043907,
        -0.0775587409734726,
        0.028388718143105507,
        -0.11398856341838837,
        -0.0958770141005516,
        0.03453848510980606,
        -0.39786413311958313,
        0.20372332632541656,
        -0.5898315906524658
      ],
      [
        0.07253791391849518,
        0.034997377544641495,
        0.054773569107055664,
        -0.2716198265552521,
        0.0708584189414978,
        0.09530691057443619,
        -0.05171184986829758,
        0.31924110651016235,
        -0.03605696186423302,
        -0.08274602890014648,
        0.1310851275920868,
        0.05437471345067024,
        -0.14254072308540344
      ],
      [
        -0.16797514259815216,
        0.30599647760391235,
        -0.07904310524463654,
        0.2033257931470871,
        -0.14211183786392212,
        -0.10064072906970978,
        -0.10524185746908188,
        -0.19574539363384247,
        -0.11848238855600357,
        0.018031228333711624,
        -0.11799951642751694,
        -0.07346449047327042,
        -0.028732173144817352
      ],
      [
        0.3143080174922943,
        -0.2535754442214966,
        0.05641395226120949,
        -0.5174964666366577,
        -0.05373408645391464,
        0.12004651874303818,
        0.28293099999427795,
        0.064997099339962,
        0.6142160892486572,
        -0.2570612132549286,
        0.11212964355945587,
        0.010822638869285583,
        -0.030521130189299583
      ],
      [
        -0.3023134469985962,
        0.02453582175076008,
        0.018106048926711082,
        0.12031307816505432,
        0.19418871402740479,
        0.13607487082481384,
        -0.1954095959663391,
        -0.2048814296722412,
        -0.17974387109279633,
        -0.13314835727214813,
        0.2695736289024353,
        0.3149356245994568,
        -0.042831119149923325
      ],
      [
        0.09654298424720764,
        0.10840856283903122,
        0.04100875183939934,
        -0.07999296486377716,
        -0.04394072666764259,
        -0.12152110040187836,
        -0.0533464252948761,
        -0.005892871879041195,
        0.15376555919647217,
        -0.06453420966863632,
        0.16551461815834045,
        -0.05694327503442764,
        -0.27284565567970276
      ]
    ],
    [
      [
        0.04958530142903328,
        0.15568137168884277,
        -0.1155768632888794,
        -0.19817790389060974,
        0.011534690856933594,
        0.09187686443328857,
        -0.10083793848752975,
        0.04090091586112976,
        -0.07228453457355499,
        -0.004269745200872421,
        0.10389658808708191,
        -0.16116543114185333,
        -0.0159218218177557
      ],
      [
        -0.32402244210243225,
        0.381206214427948,
        0.0029262141324579716,
        -0.2452547401189804,
        -0.13387826085090637,
        0.25543415546417236,
        0.5323817133903503,
        0.10391266644001007,
        0.17875570058822632,
        -0.27056074142456055,
        -0.3100878894329071,
        -0.05427374690771103,
        -0.45604202151298523
      ],
      [
        -0.37218722701072693,
        0.38742315769195557,
        0.3997102677822113,
        -0.3890576660633087,
        -0.3074312210083008,
        0.04711097851395607,
        0.04376719519495964,
        0.1347036063671112,
        -0.25733038783073425,
        -0.10202480852603912,
        -0.2701999247074127,
        -0.1744864135980606,
        0.25014257431030273
      ],
      [
        0.09207035601139069,
        -0.12334035336971283,
        0.048067569732666016,
        0.33369627594947815,
        0.18149752914905548,
        0.10353703796863556,
        0.06939196586608887,
        0.27551114559173584,
        -0.37632355093955994,
        -0.11724822223186493,
        0.19609251618385315,
        -0.20524674654006958,
        0.16043218970298767
      ],
      [
        0.321441650390625,
        -0.11672422289848328,
        -0.2283918410539627,
        -0.09888095408678055,
        -0.2891855239868164,
        0.1787068396806717,
        -0.16611787676811218,
        0.14774145185947418,
        -0.0109942015260458,
        -0.024664996191859245,
        0.0186344925314188,
        -0.3211148977279663,
        -0.06245741248130798
      ],
      [
        0.4019465744495392,
        0.11335063725709915,
        -0.41061392426490784,
        -0.3437502086162567,
        0.17327897250652313,
        -0.20875251293182373,
        0.31558510661125183,
        -0.0855541080236435,
        0.007658416870981455,
        -0.28822413086891174,
        0.17211084067821503,
        0.03316185250878334,
        0.03937337175011635
      ],
      [
        0.08136167377233505,
        0.0790659487247467,
        -0.1040973961353302,
        -0.03388771787285805,
        0.17570127546787262,
        0.029233010485768318,
        0.009137434884905815,
        -0.02008034475147724,
        -0.02122006006538868,
        0.16208471357822418,
        0.13265499472618103,
        0.25323569774627686,
        -0.3968026041984558
      ],
      [
        -0.10731799155473709,
        0.09529867023229599,
        0.010864987969398499,
        -0.031224137172102928,
        -0.21170642971992493,
        -0.05222025141119957,
        0.15311405062675476,
        0.05561760812997818,
        -0.044237736612558365,
        0.06818319112062454,
        -0.11937157809734344,
        -0.2303147166967392,
        0.20271679759025574
      ]
    ]
  ],
  "blocks.2.conv.bias": [
    0.14916932582855225,
    0.14025835692882538,
    0.13262613117694855,
    -0.046721890568733215,
    -0.018422843888401985,
    -0.09165003150701523,
    -0.09306208789348602,
    0.170800119638443
  ],
  "blocks.2.film.adaptor.weight": [
    [
      -0.6932659149169922,
      -0.2938767373561859
    ],
    [
      -0.24610480666160583,
      -0.6929194927215576
    ],
    [
      0.31238552927970886,
      0.5819087028503418
    ],
    [
      -0.3021160364151001,
      -0.5980725288391113
    ],
    [
      -0.3343147039413452,
      -0.3189845383167267
    ],
    [
      -0.31201261281967163,
      0.10692115873098373
    ],
    [
      -0.16420142352581024,
      -0.25916266441345215
    ],
    [
      0.2247622311115265,
      0.2367628663778305
    ],
    [
      -0.26961448788642883,
      0.5766980051994324
    ],
    [
      0.14339613914489746,
      -0.5309446454048157
    ],
    [
      0.19354288280010223,
      0.522554337978363
    ],
    [
      -0.32221391797065735,
      0.17942890524864197
    ],
    [
      -0.6988233923912048,
      0.06517984718084335
    ],
    [
      -0.20203335583209991,
      -0.5521090626716614
    ],
    [
      0.3203757107257843,
      -0.2420022338628769
    ],
    [
      -0.6359699964523315,
      0.022621983662247658
    ]
  ],
  "blocks.2.film.adaptor.bias": [
    -0.3281198740005493,
    0.5030437707901001,
    0.4326990246772766,
    -0.40525928139686584,
    0.6150597333908081,
    -0.5884274244308472,
    0.6774685978889465,
    0.43473199009895325,
    0.24588064849376678,
    0.20120695233345032,
    0.6111481189727783,
    0.7987691760063171,
    0.1606592833995819,
    -0.5648121237754822,
    -0.2585828900337219,
    -0.40277332067489624
  ],
  "blocks.2.act.weight": [
    0.9364520311355591
  ],
  "blocks.2.res.weight": [
    [
      [
        -0.5384361147880554
      ],
      [
        -0.2336815595626831
      ],
      [
        0.07117318361997604
      ],
      [
        0.09980009496212006
      ],
      [
        -0.4221882224082947
      ],
      [
        0.210666224360466
      ],
      [
        -0.0004768809594679624
      ],
      [
        0.38644716143608093
      ]
    ],
    [
      [
        0.11922040581703186
      ],
      [
        0.2649650573730469
      ],
      [
        -0.5876543521881104
      ],
      [
        0.28317925333976746
      ],
      [
        -0.43834036588668823
      ],
      [
        -0.1569688469171524
      ],
      [
        -0.13071726262569427
      ],
      [
        -0.6119948625564575
      ]
    ],
    [
      [
        0.0032197237014770508
      ],
      [
        0.06524438410997391
      ],
      [
        -0.37583503127098083
      ],
      [
        0.13682115077972412
      ],
      [
        -0.09123728424310684
      ],
      [
        -0.08376909792423248
      ],
      [
        -0.219661146402359
      ],
      [
        -0.2829211354255676
      ]
    ],
    [
      [
        0.00422448106110096
      ],
      [
        0.20734821259975433
      ],
      [
        0.002091548405587673
      ],
      [
        0.0028636816423386335
      ],
      [
        -0.05568786710500717
      ],
      [
        0.04467986896634102
      ],
      [
        0.19492967426776886
      ],
      [
        -0.07651954144239426
      ]
    ],
    [
      [
        -0.08751931041479111
      ],
      [
        -0.4893818795681
      ],
      [
        -0.4177725315093994
      ],
      [
        -0.14846733212471008
      ],
      [
        0.40366843342781067
      ],
      [
        0.2351667433977127
      ],
      [
        -0.22704993188381195
      ],
      [
        0.21404793858528137
      ]
    ],
    [
      [
        0.014260658994317055
      ],
      [
        -0.21936975419521332
      ],
      [
        0.26373547315597534
      ],
      [
        -0.39291712641716003
      ],
      [
        0.6747442483901978
      ],
      [
        -0.1638907790184021
      ],
      [
        0.28441107273101807
      ],
      [
        0.2969824969768524
      ]
    ],
    [
      [
        0.005662139039486647
      ],
      [
        -0.0728289783000946
      ],
      [
        0.5855728983879089
      ],
      [
        -0.15520735085010529
      ],
      [
        0.4872515797615051
      ],
      [
        -0.36928656697273254
      ],
      [
        0.4040716588497162
      ],
      [
        0.37036988139152527
      ]
    ],
    [
      [
        0.4146013855934143
      ],
      [
        -0.09546361863613129
      ],
      [
        -0.23100170493125916
      ],
      [
        -0.3339270353317261
      ],
      [
        0.44650888442993164
      ],
      [
        -0.23210509121418
      ],
      [
        0.2597482204437256
      ],
      [
        -0.29240870475769043
      ]
    ]
  ],
  "blocks.3.conv.weight": [
    [
      [
        -0.08733538538217545,
        0.21024365723133087,
        -0.2456134408712387,
        0.1044275239109993,
        0.09352985769510269,
        -0.20266123116016388,
        -0.0293436162173748,
        -0.2773663103580475,
        0.012338626198470592,
        -0.03634793683886528,
        -0.1826593428850174,
        -0.11930405348539352,
        0.3012469410896301
      ],
      [
        0.30670759081840515,
        0.3734196424484253,
        0.08916416764259338,
        -0.016757475212216377,
        0.13074803352355957,
        -0.241920605301857,
        -0.2571471929550171,
        0.2003922462463379,
        0.0892501175403595,
        0.06682393699884415,
        0.058702465146780014,
        0.06220746785402298,
        -0.2437005341053009
      ],
      [
        0.39319589734077454,
        -0.2501198947429657,
        -0.1359901875257492,
        0.11753183603286743,
        0.03501374274492264,
        -0.22700120508670807,
        -0.1872410923242569,
        -0.4308614134788513,
        -0.13315388560295105,
        -0.2334129810333252,
        -0.21977545320987701,
        -0.03052300214767456,
        -0.4173378348350525
      ],
      [
        0.05701402574777603,
        -0.2608729600906372,
        0.060372352600097656,
        -0.17185741662979126,
        -0.036820363253355026,
        -0.05940047651529312,
        0.10850388556718826,
        -0.26606833934783936,
        -0.4574320912361145,
        -0.10528459399938583,
        -0.18038105964660645,
        0.14174805581569672,
        -0.27123019099235535
      ],
      [
        0.010289337486028671,
        0.03980415314435959,
        0.12283183634281158,
        0.08783555030822754,
        -0.06625774502754211,
        0.01969810575246811,
        -0.026897242292761803,
        0.0013981133233755827,
        -0.023125015199184418,
        -0.00864326860755682,
        0.07689265161752701,
        0.03431876003742218,
        0.2498512864112854
      ],
      [
        0.33605659008026123,
        0.10994454473257065,
        -0.26916688680648804,
        -0.23798218369483948,
        0.12151791155338287,
        0.02696118876338005,
        -0.004095083102583885,
        -0.04909403249621391,
        -0.0831366777420044,
        -0.09994573891162872,
        0.03222901001572609,
        0.03695596382021904,
        0.4428698420524597
      ],
      [
        0.23309147357940674,
        -0.007514114025980234,
        0.13793407380580902,
        -0.04823930934071541,
        -0.23101498186588287,
        -0.35190990567207336,
        -0.2758485674858093,
        0.11335022002458572,
        0.1475764811038971,
        -0.12156189233064651,
        0.0251483041793108,
        -0.14925968647003174,
        0.1355188488960266
      ],
      [
        0.38242143392562866,
        0.15674160420894623,
        -0.09016526490449905,
        -0.21488527953624725,
        -0.17856140434741974,
        0.012995455414056778,
        0.13721516728401184,
        -0.26834458112716675,
        0.10962887108325958,
        0.027539679780602455,
        -0.12468165904283524,
        -0.2492360770702362,
        -0.22234129905700684
      ]
    ],
    [
      [
        0.033279746770858765,
        -0.06383601576089859,
        -0.12954406440258026,
        0.19682681560516357,
        -0.47240397334098816,
        -0.47647327184677124,
        -0.12523153424263,
        -0.38062766194343567,
        -0.09223119169473648,
        -0.5084985494613647,
        -0.6081544756889343,
        -0.32855257391929626,
        0.015351127833127975
      ],
      [
        0.17512884736061096,
        -0.21296657621860504,
        0.17618073523044586,
        0.2748861610889435,
        -0.06784897297620773,
        -0.25681304931640625,
        0.4347253143787384,
        0.3747634291648865,
        -0.07288067787885666,
        -0.2686186134815216,
        0.19007912278175354,
        0.3724766969680786,
        0.4339018166065216
      ],
      [
        0.013819281943142414,
        0.003400463378056884,
        -0.1137588769197464,
        0.03973843902349472,
        0.06798584014177322,
        0.04423988610506058,
        -0.17238858342170715,
        -0.02451055496931076,
        -0.0638587549328804,
        0.08455868065357208,
        -0.019681019708514214,
        0.047772280871868134,
        0.0031342727597802877
      ],
      [
        -0.020144592970609665,
        -0.004342038184404373,
        0.16600270569324493,
        -0.08540845662355423,
        0.020794734358787537,
        -0.007538259495049715,
        0.08061189949512482,
        -0.020984450355172157,
        -0.09789735078811646,
        -0.00657848734408617,
        -0.07200466096401215,
        0.035075582563877106,
        -0.07990974187850952
      ],
      [
        -0.2766554355621338,
        0.09297338128089905,
        -0.03296070173382759,
        0.004747266881167889,
        -0.050984784960746765,
        -0.05558013916015625,
        0.07747603207826614,
        0.055413100868463516,
        0.16847363114356995,
        -0.32586678862571716,
        0.5288965106010437,
        0.18204163014888763,
        -0.37795495986938477
      ],
      [
        0.1455540657043457,
        -0.3714866042137146,
        -0.034190740436315536,
        0.07137508690357208,
        -0.20499330759048462,
        0.026525283232331276,
        0.1290159672498703,
        0.014926068484783173,
        -0.48182928562164307,
        -0.13981062173843384,
        0.08141542226076126,
        0.03422005474567413,
        0.10635019838809967
      ],
      [
        -0.31341397762298584,
        -0.2884189486503601,
        -0.10652883350849152,
        0.1129353791475296,
        0.19647304713726044,
        0.026075037196278572,
        0.14385676383972168,
        0.08452686667442322,
        0.0529899001121521,
        -0.08363465219736099,
        0.11454825103282928,
        0.016536032781004906,
        -0.147674098610878
      ],
      [
        -0.011754075065255165,
        0.41292133927345276,
        0.12234421074390411,
        -0.15275076031684875,
        -0.15769599378108978,
        -0.04972359910607338,
        0.23329369723796844,
        -0.17276088893413544,
        -0.029200945049524307,
        0.25691649317741394,
        -0.26591071486473083,
        -0.10472442209720612,
        0.3450007736682892
      ]
    ],
    [
      [
        0.063042052090168,
        0.004831286612898111,
        -0.044456467032432556,
        0.0028597654309123755,
        -0.3638191223144531,
        -0.04482877627015114,
        0.2951658070087433,
        -0.010949022136628628,
        -0.24053864181041718,
        0.13651885092258453,
        0.24156291782855988,
        0.1778622269630432,
        -0.14162121713161469
      ],
      [
        -0.1185818761587143,
        0.2527371644973755,
        0.1496068239212036,
        0.004905912559479475,
        -0.21499593555927277,
        -0.025650477036833763,
        0.15940795838832855,
        -0.1358758956193924,
        0.15362997353076935,
        0.19287243485450745,
        0.07971903681755066,
        0.3816211223602295,
        -0.20776645839214325
      ],
      [
        0.10444226115942001,
        -0.12137496471405029,
        -0.0152202770113945,
        0.15643274784088135,
        0.24745742976665497,
        -0.00568095687776804,
        0.09530632197856903,
        0.08924081921577454,
        0.3231658935546875,
        0.2365088313817978,
        0.21777287125587463,
        -0.17067962884902954,
        0.03878520056605339
      ],
      [
        0.018625035881996155,
        0.1323077529668808,
        0.04485411196947098,
        0.1856810599565506,
        0.16899579763412476,
        -0.09114544838666916,
        0.1176014319062233,
        0.017374573275446892,
        0.01773514412343502,
        -0.03600480780005455,
        0.008110872469842434,
        0.13952656090259552,
        -0.034768521785736084
      ],
      [
        -0.6120953559875488,
        0.06479897350072861,
        0.1258658915758133,
        0.10681696236133575,
        -0.07805287092924118,
        -0.08180447667837143,
        0.013302790001034737,
        -0.008993281982839108,
        0.06548329442739487,
        0.04516347870230675,
        0.338130384683609,
        -0.12487635016441345,
        0.10841941088438034
      ],
      [
        0.06350697576999664,
        -0.22639192640781403,
        0.013757060281932354,
        0.16738198697566986,
        -0.027809511870145798,
        -0.04688091576099396,
        0.15374533832073212,
        0.13209979236125946,
        0.0056101661175489426,
        -0.2625194489955902,
        -0.1192791536450386,
        -0.3821307420730591,
        0.10147406160831451
      ],
      [
        -0.16445402801036835,
        0.23035961389541626,
        -0.24458569288253784,
        -0.03539577126502991,
        -0.10197754204273224,
        0.1748705953359604,
        -0.319319486618042,
        -0.38693854212760925,
        0.11555763334035873,
        0.08325648307800293,
        -0.06793244928121567,
        0.15561988949775696,
        -0.39203599095344543
      ],
      [
        0.13705390691757202,
        0.18373773992061615,
        0.08688736706972122,
        -0.23043853044509888,
        -0.3110984265804291,
        0.391647607088089,
        0.08651680499315262,
        0.19253835082054138,
        -0.19856977462768555,
        -0.07196863740682602,
        0.1777501106262207,
        0.17007958889007568,
        0.06255245208740234
      ]
    ],
    [
      [
        -0.13219071924686432,
        -0.09741141647100449,
        -0.009582742117345333,
        -0.38642436265945435,
        -0.042534973472356796,
        -0.02720736898481846,
        0.20657581090927124,
        -0.18390092253684998,
        0.17545127868652344,
        0.17348156869411469,
        0.26487430930137634,
        -0.07136137038469315,
        -0.2640315592288971
      ],
      [
        -0.25728124380111694,
        0.0885234847664833,
        0.28512710332870483,
        -0.018604733049869537,
        -0.18713508546352386,
        -0.255073606967926,
        -0.0999622642993927,
        0.2856723368167877,
        0.3059076964855194,
        0.2337333709001541,
        0.07397881150245667,
        -0.22733546793460846,
        0.06444068253040314
      ],
      [
        -0.10118497908115387,
        0.43520811200141907,
        -0.26762232184410095,
        -0.3688032925128937,
        0.1425839513540268,
        0.012138520367443562,
        0.024198701605200768,
        -0.14287041127681732,
        -0.08241237699985504,
        -0.1312182992696762,
        -0.013157625682651997,
        0.367502361536026,
        0.6385120749473572
      ],
      [
        -0.10232862830162048,
        -0.002957388525828719,
        -0.2565368413925171,
        0.09094756096601486,
        0.282925009727478,
        -0.0038379516918212175,
        0.20489679276943207,
        -0.394467294216156,
        -0.2526055872440338,
        -0.1320657730102539,
        -0.18242305517196655,
        0.15852709114551544,
        0.2520327866077423
      ],
      [
        0.21238906681537628,
        0.05840926244854927,
        0.13414981961250305,
        -0.06999459862709045,
        0.12756110727787018,
        0.06694547086954117,
        0.040546443313360214,
        0.14975669980049133,
        -0.10002666711807251,
        0.05536379665136337,
        -0.07390477508306503,
        -0.033405598253011703,
        -0.12015867978334427
      ],
      [
        -0.04399632290005684,
        0.08033693581819534,
        0.23249498009681702,
        -0.24108825623989105,
        -0.23499268293380737,
        -0.296334445476532,
        0.16205431520938873,
        0.22945545613765717,
        0.07002239674329758,
        0.06021193042397499,
        -0.08134782314300537,
        -0.19875288009643555,
        -0.03794200345873833
      ],
      [
        -0.39630916714668274,
        0.17404498159885406,
        -0.048879895359277725,
        0.09251925349235535,
        -0.19176828861236572,
        -0.2801040709018707,
        -0.35902339220046997,
        -0.0025556108448654413,
        0.011807153932750225,
        -0.13968341052532196,
        0.1025012657046318,
        0.06803576648235321,
        -0.14817841351032257
      ],
      [
        -0.739862859249115,
        -0.240968257188797,
        -0.1283699870109558,
        -0.2027829885482788,
        -0.2774604260921478,
        0.007845488376915455,
        0.13640187680721283,
        -0.2567867040634155,
        -0.05529760196805,
        -0.2542991042137146,
        0.17615127563476562,
        -0.25256142020225525,
        -0.04221241548657417
      ]
    ],
    [
      [
        -0.017644528299570084,
        0.4792294204235077,
        0.19699878990650177,
        -0.14446516335010529,
        -0.31932389736175537,
        0.01584290899336338,
        0.16917645931243896,
        -0.4943143129348755,
        -0.25480031967163086,
        -0.17901918292045593,
        0.13967692852020264,
        -0.11654534935951233,
        -0.2089083343744278
      ],
      [
        -0.05329635366797447,
        0.3004412055015564,
        0.09908641129732132,
        -0.2667970657348633,
        -0.1100124940276146,
        0.15540741384029388,
        0.26029229164123535,
        0.1492002308368683,
        -0.23104345798492432,
        -0.5631744861602783,
        0.1807589828968048,
        -0.006063258741050959,
        -0.09555453807115555
      ],
      [
        0.41280654072761536,
        0.08426088839769363,
        0.23884454369544983,
        -0.17631058394908905,
        0.17138920724391937,
        0.022707391530275345,
        0.23275740444660187,
        -0.2048809826374054,
        0.08706558495759964,
        0.025881635025143623,
        0.11135394871234894,
        -0.12081026285886765,
        0.5916416049003601
      ],
      [
        0.09029389917850494,
        -0.36626365780830383,
        -0.4509551525115967,
        0.14478754997253418,
        0.07496780902147293,
        -0.20683664083480835,
        -0.3051353693008423,
        0.05268124118447304,
        -0.2700607180595398,
        0.3584316670894623,
        0.14594511687755585,
        0.03712023049592972,
        0.18829795718193054
      ],
      [
        -0.13648934662342072,
        -0.004002707544714212,
        -0.17111742496490479,
        0.26516056060791016,
        -0.04902387037873268,
        0.2448720484972,
        0.13731224834918976,
        0.027741681784391403,
        0.059131450951099396,
        -0.0681024119257927,
        0.04725365340709686,
        -0.09051982313394547,
        0.5538021326065063
      ],
      [
        -0.41936221718788147,
        -0.043552715331315994,
        0.26981881260871887,
        -0.12238448113203049,
        -0.146561861038208,
        -0.17278362810611725,
        -0.17622442543506622,
        0.19715681672096252,
        -0.3803224265575409,
        -0.06370839476585388,
        0.38826698064804077,
        0.09218289703130722,
        -0.2667674422264099
      ],
      [
        0.34959176182746887,
        0.05045986548066139,
        0.1256016492843628,
        0.038488734513521194,
        0.1367255449295044,
        0.4666277766227722,
        0.23472018539905548,
        0.15384803712368011,
        -0.020011117681860924,
        -0.16365200281143188,
        0.16058072447776794,
        0.057563669979572296,
        0.05301740765571594
      ],
      [
        -0.38775286078453064,
        -0.16993224620819092,
        0.20128940045833588,
        0.14629776775836945,
        -0.13188740611076355,
        0.1322903037071228,
        -0.015380091033875942,
        -0.46539270877838135,
        -0.43635958433151245,
        0.21608300507068634,
        0.0026548118330538273,
        -0.12685626745224,
        0.014771152287721634
      ]
    ],
    [
      [
        0.018349623307585716,
        -0.09459630399942398,
        -0.14830762147903442,
        -0.4189240634441376,
        0.053502436727285385,
        -0.32378461956977844,
        -0.4811154305934906,
        0.17687620222568512,
        0.24138514697551727,
        -0.005362086463719606,
        -0.2876951992511749,
        -0.12912823259830475,
        -0.09802258759737015
      ],
      [
        -0.01424879115074873,
        -0.11539134383201599,
        -0.22719018161296844,
        -0.15687108039855957,
        0.06700147688388824,
        -0.0324850007891655,
        -0.32141587138175964,
        0.2300398349761963,
        0.1562364399433136,
        -0.24987216293811798,
        -0.3427765667438507,
        -0.2537469267845154,
        -0.008926705457270145
      ],
      [
        0.11405327171087265,
        0.00794537179172039,
        -0.28635039925575256,
        -0.27111899852752686,
        0.2984883487224579,
        -0.3436138927936554,
        0.11514253169298172,
        -0.20682282745838165,
        -0.022278325632214546,
        0.1180717796087265,
        0.2584743797779083,
        -0.02903069369494915,
        -0.024304039776325226
      ],
      [
        0.14799608290195465,
        0.12619344890117645,
        -0.02318710833787918,
        -0.17670686542987823,
        0.08152773976325989,
        0.2615549862384796,
        -0.09505993872880936,
        -0.20723006129264832,
        -0.17820197343826294,
        0.37450721859931946,
        0.13255250453948975,
        0.09607572108507156,
        -0.25581344962120056
      ],
      [
        -0.034692008048295975,
        -0.14579355716705322,
        0.07089608162641525,
        -0.13520443439483643,
        0.022343050688505173,
        0.07278697937726974,
        -0.14004766941070557,
        0.09160878509283066,
        -0.13485519587993622,
        -0.01881864294409752,
        -0.22081801295280457,
        0.03894174098968506,
        0.1987575888633728
      ],
      [
        0.36161020398139954,
        -0.04076289013028145,
        0.06974820047616959,
        -0.142522394657135,
        0.11113481223583221,
        0.18565352261066437,
        -0.03138866648077965,
        0.21648149192333221,
        0.20080868899822235,
        -0.05624888837337494,
        -0.013025371357798576,
        -0.054304372519254684,
        0.2767125070095062
      ],
      [
        0.24992193281650543,
        0.13358256220817566,
        -0.1727858930826187,
        0.20217666029930115,
        0.12729284167289734,
        -0.11353212594985962,
        0.16266275942325592,
        -0.17445193231105804,
        -0.03584231436252594,
        0.10217517614364624,
        -0.30352404713630676,
        -0.049725357443094254,
        0.0017169982893392444
      ],
      [
        0.21387705206871033,
        0.215788334608078,
        -0.0953279659152031,
        -0.15152983367443085,
        -0.001929646823555231,
        -0.30804333090782166,
        -0.2278209775686264,
        -0.15515023469924927,
        0.045661017298698425,
        0.1307821124792099,
        -0.4070625305175781,
        -0.043692704290151596,
        -0.2357400506734848
      ]
    ],
    [
      [
        -0.05967414006590843,
        -0.1072629764676094,
        -0.031068330630660057,
        0.009980439208447933,
        0.07613594830036163,
        -0.1437998265028,
        -0.04156862944364548,
        -0.012730619870126247,
        0.35170167684555054,
        0.035039182752370834,
        0.08630143851041794,
        -0.11346298456192017,
        -0.1527884155511856
      ],
      [
        0.2554936707019806,
        -0.30675458908081055,
        0.45802372694015503,
        0.45090222358703613,
        -0.005917229223996401,
        0.0389631949365139,
        0.4359929859638214,
        0.11869426816701889,
        0.23802770674228668,
        0.1580159068107605,
        0.40565574169158936,
        0.24171431362628937,
        0.035528745502233505
      ],
      [
        -0.06239422410726547,
        0.049484800547361374,
        -0.16509763896465302,
        0.04579901695251465,
        -0.025723887607455254,
        -0.24244827032089233,
        -0.08524609357118607,
        0.17331191897392273,
        -0.036468684673309326,
        0.05026701092720032,
        -0.04226605221629143,
        -0.0819053202867508,
        0.2916743755340576
      ],
      [
        -0.1246335580945015,
        0.07733143866062164,
        -0.326855331659317,
        0.056152887642383575,
        0.0017406847327947617,
        -0.144600972533226,
        -0.16947634518146515,
        -0.03979022428393364,
        0.050318002700805664,
        0.052597712725400925,
        -0.019057968631386757,
        0.12865428626537323,
        -0.048508450388908386
      ],
      [
        -0.23047685623168945,
        0.04431888833642006,
        0.008816977962851524,
        -0.0248614102602005,
        0.15554729104042053,
        -0.1280829906463623,
        0.06697189062833786,
        0.0737084150314331,
        0.06445915251970291,
        -0.1497979611158371,
        0.2791377007961273,
        0.03342411667108536,
        -0.3520626127719879
      ],
      [
        -0.20422719419002533,
        -0.15535277128219604,
        0.21647945046424866,
        0.04569913446903229,
        0.026036696508526802,
        0.17870613932609558,
        0.13592274487018585,
        0.07881933450698853,
        0.00044057227205485106,
        0.14246730506420135,
        0.10438408702611923,
        -0.34026655554771423,
        0.2237871289253235
      ],
      [
        -0.0070404778234660625,
        -0.1065564900636673,
        0.03488631919026375,
        0.36787059903144836,
        -0.38493213057518005,
        -0.38392144441604614,
        0.16018176078796387,
        -0.044504936784505844,
        -0.16224835813045502,
        -0.1297740638256073,
        0.18816140294075012,
        0.22166207432746887,
        0.15684643387794495
      ],
      [
        0.26851579546928406,
        0.4058031439781189,
        -0.05482875555753708,
        -0.14617161452770233,
        -0.12650494277477264,
        0.14654995501041412,
        -0.11962463706731796,
        0.010663268156349659,
        0.31000590324401855,
        0.21319836378097534,
        -0.09210081398487091,
        -0.3546295762062073,
        0.013322618789970875
      ]
    ],
    [
      [
        -0.3202100098133087,
        -0.3263835906982422,
        -0.17896467447280884,
        0.28077200055122375,
        0.042213790118694305,
        0.09305639564990997,
        0.3277730345726013,
        -0.07935206592082977,
        -0.0033777959179133177,
        0.08354777097702026,
        0.3445926606655121,
        -0.010038455948233604,
        -0.42524972558021545
      ],
      [
        -0.013923780992627144,
        -0.20476636290550232,
        0.15133187174797058,
        0.1370123326778412,
        0.2745070159435272,
        0.2111901044845581,
        0.36260750889778137,
        0.04727374017238617,
        -0.3504597246646881,
        -0.21549049019813538,
        0.18676474690437317,
        -0.18517324328422546,
        0.04945935681462288
      ],
      [
        -0.22845840454101562,
        0.06302805244922638,
        -0.5056307315826416,
        -0.31871816515922546,
        -0.3293391168117523,
        0.11706965416669846,
        -0.017721425741910934,
        -0.2373092919588089,
        0.09297873079776764,
        -0.12215016782283783,
        0.18342110514640808,
        0.34118402004241943,
        0.018600093200802803
      ],
      [
        0.3296360671520233,
        0.3048573136329651,
        -0.08269225060939789,
        -0.11876028776168823,
        0.24677182734012604,
        -0.17952270805835724,
        0.011564702726900578,
        0.7147651314735413,
        0.19353725016117096,
        -0.333340585231781,
        -0.04802167788147926,
        0.19776122272014618,
        0.24430842697620392
      ],
      [
        0.03806803375482559,
        -0.09815440326929092,
        0.22979354858398438,
        -0.03520587459206581,
        0.13799551129341125,
        0.0870244950056076,
        0.14800682663917542,
        0.006074357312172651,
        -0.10282211005687714,
        0.09377951920032501,
        -0.44614964723587036,
        -0.09825755655765533,
        0.634141743183136
      ],
      [
        -0.4497823417186737,
        0.2721659243106842,
        -0.027224721387028694,
        -0.11226151138544083,
        0.16649097204208374,
        0.08729993551969528,
        0.29531165957450867,
        0.10799367725849152,
        0.009675754234194756,
        0.02442089281976223,
        -0.04129619523882866,
        -0.1674843281507492,
        -0.015094163827598095
      ],
      [
        0.4072157144546509,
        -0.40373000502586365,
        0.00292532192543149,
        0.15963932871818542,
        -0.09553155303001404,
        0.18105082213878632,
        -0.17632636427879333,
        -0.08774770796298981,
        -0.2707364857196808,
        -0.038014091551303864,
        0.38831108808517456,
        0.0608341358602047,
        0.015705179423093796
      ],
      [
        -0.02400769107043743,
        -0.1791452318429947,
        0.10384048521518707,
        0.42115333676338196,
        -0.1007244735956192,
        0.1858069747686386,
        -0.10509217530488968,
        -0.0911540761590004,
        0.15072403848171234,
        0.25554367899894714,
        0.15043756365776062,
        -0.3224637508392334,
        -0.33127930760383606
      ]
    ]
  ],
  "blocks.3.conv.bias": [
    0.5453128218650818,
    -0.005450989119708538,
    0.08441212773323059,
    0.4495445489883423,
    -0.011859835125505924,
    -0.11957235634326935,
    -0.046009715646505356,
    0.031568851321935654
  ],
  "blocks.3.film.adaptor.weight": [
    [
      -0.4703525900840759,
      -0.4163438379764557
    ],
    [
      0.10211717337369919,
      0.07643735408782959
    ],
    [
      -0.57769775390625,
      0.5774073600769043
    ],
    [
      0.5015116930007935,
      -0.24346084892749786
    ],
    [
      -0.2656823396682739,
      -0.5893178582191467
    ],
    [
      -0.4388074278831482,
      -0.3820544183254242
    ],
    [
      0.5458298325538635,
      0.22025032341480255
    ],
    [
      0.17997445166110992,
      -0.45629921555519104
    ],
    [
      0.3617345988750458,
      -0.3488155007362366
    ],
    [
      -0.3053486943244934,
      0.5063807964324951
    ],
    [
      -0.057489313185214996,
      0.49040335416793823
    ],
    [
      0.4909038841724396,
      -0.10989192128181458
    ],
    [
      0.5038694143295288,
      -0.0805206224322319
    ],
    [
      -0.40039944648742676,
      -0.1458301991224289
    ],
    [
      0.3808361291885376,
      -0.6814730763435364
    ],
    [
      0.037968408316373825,
      -0.22385548055171967
    ]
  ],
  "blocks.3.film.adaptor.bias": [
    -0.35301700234413147,
    -0.24478888511657715,
    -0.46954867243766785,
    -0.7687292695045471,
    0.3141899108886719,
    -0.3546026945114136,
    -0.35843485593795776,
    -0.6389724016189575,
    0.02104545198380947,
    0.537852942943573,
    -0.25162285566329956,
    -1.0011380910873413,
    0.4740438461303711,
    0.4757183790206909,
    0.20323272049427032,
    -0.5812988877296448
  ],
  "blocks.3.act.weight": [
    0.3828408718109131
  ],
  "blocks.3.res.weight": [
    [
      [
        0.5422722697257996
      ],
      [
        -0.4124143123626709
      ],
      [
        -0.32201293110847473
      ],
      [
        -0.3745921850204468
      ],
      [
        -0.10507630556821823
      ],
      [
        0.3063606321811676
      ],
      [
        0.04905865713953972
      ],
      [
        -0.17169517278671265
      ]
    ],
    [
      [
        -0.24612592160701752
      ],
      [
        0.5142046213150024
      ],
      [
        0.08325240761041641
      ],
      [
        -0.1558322310447693
      ],
      [
        -0.127201646566391
      ],
      [
        0.06651841849088669
      ],
      [
        -0.3328514099121094
      ],
      [
        0.2707619369029999
      ]
    ],
    [
      [
        -0.43317911028862
      ],
      [
        0.326124370098114
      ],
      [
        0.17693698406219482
      ],
      [
        0.20247715711593628
      ],
      [
        0.006584750488400459
      ],
      [
        -0.21704386174678802
      ],
      [
        0.05351390317082405
      ],
      [
        0.16014927625656128
      ]
    ],
    [
      [
        -0.4810495972633362
      ],
      [
        0.3205941617488861
      ],
      [
        0.3732910454273224
      ],
      [
        0.28374385833740234
      ],
      [
        -0.0025999604258686304
      ],
      [
        -0.26356151700019836
      ],
      [
        -0.0968857929110527
      ],
      [
        0.12408136576414108
      ]
    ],
    [
      [
        0.17542067170143127
      ],
      [
        -0.11035909503698349
      ],
      [
        -0.2568899989128113
      ],
      [
        -0.4020760953426361
      ],
      [
        -0.2580086886882782
      ],
      [
        0.23590660095214844
      ],
      [
        0.05085103213787079
      ],
      [
        -0.06613225489854813
      ]
    ],
    [
      [
        0.2241101861000061
      ],
      [
        -0.0665510967373848
      ],
      [
        -0.3218589127063751
      ],
      [
        -0.36391693353652954
      ],
      [
        0.08207287639379501
      ],
      [
        0.24021881818771362
      ],
      [
        0.13522674143314362
      ],
      [
        -0.0577799454331398
      ]
    ],
    [
      [
        -0.12987779080867767
      ],
      [
        0.18411804735660553
      ],
      [
        -0.18807390332221985
      ],
      [
        -0.2538537383079529
      ],
      [
        -0.1086491122841835
      ],
      [
        0.04127176105976105
      ],
      [
        -0.24634313583374023
      ],
      [
        -0.26936089992523193
      ]
    ],
    [
      [
        -0.2778456211090088
      ],
      [
        0.27141186594963074
      ],
      [
        0.14924055337905884
      ],
      [
        0.37110593914985657
      ],
      [
        0.2107274830341339
      ],
      [
        -0.07034390419721603
      ],
      [
        0.16547341644763947
      ],
      [
        0.05719751864671707
      ]
    ]
  ],
  "blocks.4.conv.weight": [
    [
      [
        0.029568342491984367,
        0.05570540577173233,
        -0.14511533081531525,
        0.03406846150755882,
        0.10500923544168472,
        -0.14917540550231934,
        -0.07500039786100388,
        -0.1599312722682953,
        0.19101950526237488,
        -0.22203919291496277,
        -0.09767664968967438,
        -0.10557207465171814,
        0.05071456357836723
      ],
      [
        -0.11247283965349197,
        -0.18400144577026367,
        0.08917919546365738,
        0.0034842367749661207,
        0.043564822524785995,
        -0.24456319212913513,
        0.15539099276065826,
        -0.06675462424755096,
        -0.05904830992221832,
        -0.05209111422300339,
        0.025268645957112312,
        0.10491197556257248,
        0.06426437199115753
      ],
      [
        -0.20048558712005615,
        0.004666151478886604,
        0.013343161903321743,
        -0.08302569389343262,
        0.07045726478099823,
        0.2304110825061798,
        -0.5209764838218689,
        0.10702849179506302,
        -0.08577574789524078,
        -0.23261165618896484,
        -0.1821552813053131,
        0.23960265517234802,
        0.2717319428920746
      ],
      [
        0.04484130069613457,
        0.17964692413806915,
        -0.10708507150411606,
        0.10640309751033783,
        0.06580808758735657,
        -0.20382459461688995,
        0.023867947980761528,
        0.14402800798416138,
        0.39348217844963074,
        0.006522926036268473,
        0.03898504376411438,
        -0.05150695517659187,
        -0.05499696731567383
      ],
      [
        0.043736331164836884,
        -0.09635723382234573,
        -0.08836620301008224,
        0.25182777643203735,
        -0.14310675859451294,
        -0.1283174455165863,
        -0.266286700963974,
        0.12503021955490112,
        -0.1318030208349228,
        0.08527939766645432,
        0.23200197517871857,
        0.01873692497611046,
        0.00874497089534998
      ],
      [
        -0.2743590474128723,
        -0.010303033515810966,
        0.17167887091636658,
        -0.1905050128698349,
        0.03566279634833336,
        -0.07393784075975418,
        -0.11969468742609024,
        0.10750540345907211,
        0.1777433454990387,
        0.2062297761440277,
        -0.2827351987361908,
        0.377290278673172,
        0.09404920041561127
      ],
      [
        0.06721243262290955,
        0.06657686084508896,
        -0.07100248336791992,
        -0.10706602036952972,
        -0.011555279605090618,
        0.12290174514055252,
        -0.09144201874732971,
        -0.12699298560619354,
        -0.007657362148165703,
        0.3018909990787506,
        -0.21372084319591522,
        -0.26935088634490967,
        -0.1641198992729187
      ],
      [
        0.2700157165527344,
        -0.017025571316480637,
        -0.105331651866436,
        0.08568523824214935,
        -0.2340952306985855,
        -0.024598879739642143,
        0.031140970066189766,
        -0.38717207312583923,
        0.0005411410238593817,
        0.2698568105697632,
        -0.1138262152671814,
        0.2300691455602646,
        0.270015686750412
      ]
    ]
  ],
  "blocks.4.conv.bias": [
    -0.12305125594139099
  ],
  "blocks.4.film.adaptor.weight": [
    [
      0.03137900307774544,
      -0.004302097484469414
    ],
    [
      -0.611619770526886,
      -0.5727108120918274
    ]
  ],
  "blocks.4.film.adaptor.bias": [
    -0.5460807085037231,
    -0.2178744077682495
  ],
  "blocks.4.act.weight": [
    0.997266411781311
  ],
  "blocks.4.res.weight": [
    [
      [
        -0.2765498459339142
      ],
      [
        0.24688471853733063
      ],
      [
        0.22262662649154663
      ],
      [
        0.345186710357666
      ],
      [
        -0.04642002284526825
      ],
      [
        0.07204167544841766
      ],
      [
        -0.1451980620622635
      ],
      [
        0.15376943349838257
      ]
    ]
  ]
}

JUCE built-in submodule version doesn't allow headless build, Elk OS SDK does but it's a fork from a different version

Current JUCE module is https://github.com/lv2-porting-project/JUCE.git which is version 6.0.8 from a particular JUCE fork

Elk OS SDK which is currently signaled as the only headless build is using https://github.com/elk-audio/JUCE/commits/mind/headless_plugin_client_next which is a fork of 5.4.5 and is fixing headless builds for VST3 only. Search for JUCE_AUDIOPROCESSOR_NO_GUI=1. Afaik these patches have never been merged in JUCE repo.

Back on built-in JUCE,
JUCE_AUDIOPROCESSOR_NO_GUI=1

is not producing any tangible effect and builds fails when including juce_gui_basics.h since

X11/Xlib.h: No such file or directory

the removal of this dependency is a key for embedding this plugin into already existing platforms like Mod Duo or any whatsoever headless platform

Performance on Pi3?

Hi! just reviewing your documentation. Looks like there was some overhead left over on the 4. any insights on performance on a pi 3 b+? Thanks!

Garbled output when run standalone

Not using rpi, just standalone on a desktop.

Steps:

built tag v1.3.0 (64e554) successfully with cmake
run jack via cadence, 44.1khz, buffer size 256 samples, 2 periods/buffer (tried varying these settings also)
guitar plugged into USB audio device
connect standalone to system ins and outs using carla

Sounds like maybe periodic buffer underruns, where period gets longer with a larger buffer size.

Syncing models between Raspberry Pi and external device

Implement a method, preferably in c++ using no additional dependencies, to sync json model files between the Raspberry Pi and another device running the NeuralPi GUI. (see "osc-user-controls" feature branch). Currently, additional models must be uploaded to the Pi and imported on the other device separately. Implement a feature where the user can upload a model to the remote device using the NeuralPi GUI "Import Tone" button, and also send the model to the Rpi for NeuralPi to receive. It would be beneficial to check and send new models from the Pi to the other device, so that new devices can access the models stored on the Pi. This transfer would be done over a local WiFi network, after specifying the Pi's IP and port number on the GUI.

Acceptance Criteria:

  • Implement a model sync feature on the "osc-user-controls" feature branch
  • Ability to transfer additional models from a device running NeuralPi GUI to the Pi, and reverse over a local WiFi network
  • Model selection in the drop-down menu must be properly synced with the models on the Pi, either by a known ordering (alphabetical) or model ID.
  • Using the c++ Standard Library (TCP/IP file transfer) would be nice, but an external script called from the plugin works too

Windows V1.3.0 exe

Hi,
La version ne s'installe pas avec windows 7 32bits ???
cf64 not expand....

Feature Request (VST version): volume normalisation for IR files

Really love the tones I get out of NeuralPi. The Blues Jr tone capture with Fender 68 Vibrolux IRs sound fantastic!

I had an issue when browsing through some imported IR cabinet files, that they had very different volume levels. So with some IRs the volume would drop significantly and there is no way to sufficiently compensate for that inside the plugin (even turning up "level" fully up doesn't compensate sufficiently for the volume drop). Could you implement a volume normalisation for the loaded IR? I think a small checkbox would suffice.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.