This commit is contained in:
Yuge Zhang 2021-08-23 17:29:28 +08:00 коммит произвёл GitHub
Родитель 52b70bc1e4
Коммит 5d0251fc49
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
32 изменённых файлов: 4 добавлений и 13385 удалений

2
dependencies/recommended_gpu.txt поставляемый
Просмотреть файл

@ -5,7 +5,7 @@ tensorflow
keras == 2.4.3
torch == 1.9.0+cu111
torchvision == 0.10.0+cu111
pytorch-lightning >= 1.2.8
pytorch-lightning >= 1.4.2
onnx
peewee
graphviz

Просмотреть файл

@ -52,7 +52,6 @@ TypeScript (Linux and macOS)
* If ``ts/nni_manager`` is changed, run ``yarn watch`` under this folder. It will watch and build code continually. The ``nnictl`` need to be restarted to reload NNI manager.
* If ``ts/webui`` is changed, run ``yarn dev``\ , which will run a mock API server and a webpack dev server simultaneously. Use ``EXPERIMENT`` environment variable (e.g., ``mnist-tfv1-running``\ ) to specify the mock data being used. Built-in mock experiments are listed in ``src/webui/mock``. An example of the full command is ``EXPERIMENT=mnist-tfv1-running yarn dev``.
* If ``ts/nasui`` is changed, run ``yarn start`` under the corresponding folder. The web UI will refresh automatically if code is changed. There is also a mock API server that is useful when developing. It can be launched via ``node server.js``.
TypeScript (Windows)
********************

Просмотреть файл

@ -12,7 +12,7 @@ from .updater import update_searchspace, update_concurrency, update_duration, up
from .nnictl_utils import stop_experiment, trial_ls, trial_kill, list_experiment, experiment_status,\
log_trial, experiment_clean, platform_clean, experiment_list, \
monitor_experiment, export_trials_data, trial_codegen, webui_url, \
get_config, log_stdout, log_stderr, search_space_auto_gen, webui_nas, \
get_config, log_stdout, log_stderr, search_space_auto_gen, \
save_experiment, load_experiment
from .algo_management import algo_reg, algo_unreg, algo_show, algo_list
from .constants import DEFAULT_REST_PORT
@ -188,10 +188,6 @@ def parse_args():
parser_webui_url = parser_webui_subparsers.add_parser('url', help='show the url of web ui')
parser_webui_url.add_argument('id', nargs='?', help='the id of experiment')
parser_webui_url.set_defaults(func=webui_url)
parser_webui_nas = parser_webui_subparsers.add_parser('nas', help='show nas ui')
parser_webui_nas.add_argument('--port', default=6060, type=int, help='port of nas ui')
parser_webui_nas.add_argument('--logdir', default='.', type=str, help='the logdir where nas ui will read data')
parser_webui_nas.set_defaults(func=webui_nas)
#parse config command
parser_config = subparsers.add_parser('config', help='get config information')

Просмотреть файл

@ -13,7 +13,6 @@ import traceback
from datetime import datetime, timezone
from subprocess import Popen
from nni.tools.annotation import expand_annotations
import nni_node # pylint: disable=wrong-import-order, import-error
from .rest_utils import rest_get, rest_delete, check_rest_server_quick, check_response
from .url_utils import trial_jobs_url, experiment_url, trial_job_id_url, export_data_url, metric_data_url
from .config_utils import Config, Experiments
@ -457,21 +456,6 @@ def webui_url(args):
experiments_dict = Experiments().get_all_experiments()
print_normal('{0} {1}'.format('Web UI url:', ' '.join(experiments_dict[experiment_id].get('webuiUrl'))))
def webui_nas(args):
'''launch nas ui'''
print_normal('Starting NAS UI...')
try:
entry_dir = nni_node.__path__[0]
entry_file = os.path.join(entry_dir, 'nasui', 'server.js')
if sys.platform == 'win32':
node_command = os.path.join(entry_dir, 'node.exe')
else:
node_command = os.path.join(entry_dir, 'node')
cmds = [node_command, '--max-old-space-size=4096', entry_file, '--port', str(args.port), '--logdir', args.logdir]
subprocess.run(cmds, cwd=entry_dir)
except KeyboardInterrupt:
pass
def local_clean(directory):
'''clean up local data'''
print_normal('removing folder {0}'.format(directory))

Просмотреть файл

@ -136,7 +136,7 @@ def trial_keeper_help_info(*args):
def check_version(args):
try:
trial_keeper_version = pkg_resources.get_distribution('nni').version
except pkg_resources.ResolutionError as err:
except pkg_resources.ResolutionError:
# package nni does not exist, try nni-tool package
nni_log(LogType.Error, 'Package nni does not exist!')
os._exit(1)

Просмотреть файл

@ -103,7 +103,7 @@ def trial_runner_help_info(*args):
def check_version(args):
try:
trial_runner_version = pkg_resources.get_distribution('nni').version
except pkg_resources.ResolutionError as err:
except pkg_resources.ResolutionError:
# package nni does not exist, try nni-tool package
nni_log(LogType.Error, 'Package nni does not exist!')
os._exit(1)

Просмотреть файл

@ -191,8 +191,6 @@ stages:
set -e
cd ts/nni_manager
yarn test
cd ../nasui
CI=true yarn test
displayName: TypeScript unit test
- task: PublishTestResults@2
@ -295,8 +293,6 @@ stages:
set -e
cd ts/nni_manager
yarn test
cd ../nasui
CI=true yarn test
displayName: TypeScript unit test
- job: macos
@ -356,7 +352,6 @@ stages:
set -e
export CI=true
(cd ts/nni_manager && yarn test --exclude test/core/nnimanager.test.ts)
(cd ts/nasui && yarn test)
displayName: TypeScript unit test
- script: |

Просмотреть файл

@ -46,7 +46,6 @@ jobs:
export PATH=$PATH:$PWD/toolchain/yarn/bin
export CI=true
(cd ts/nni_manager && yarn test)
(cd ts/nasui && yarn test)
displayName: Unit test
continueOnError: true

Просмотреть файл

@ -149,10 +149,6 @@ def compile_ts():
_yarn('ts/webui')
_yarn('ts/webui', 'build')
_print('Building NAS UI')
_yarn('ts/nasui')
_yarn('ts/nasui', 'build')
_print('Building JupyterLab extension')
_yarn('ts/jupyter_extension')
_yarn('ts/jupyter_extension', 'build')
@ -172,10 +168,6 @@ def symlink_nni_node():
_symlink('ts/webui/build', 'nni_node/static')
Path('nni_node/nasui').mkdir(exist_ok=True)
_symlink('ts/nasui/build', 'nni_node/nasui/build')
_symlink('ts/nasui/server.js', 'nni_node/nasui/server.js')
_symlink('ts/jupyter_extension/dist', 'nni_node/jupyter-extension')
@ -207,10 +199,6 @@ def copy_nni_node(version):
shutil.copytree('ts/webui/build', 'nni_node/static')
Path('nni_node/nasui').mkdir(exist_ok=True)
shutil.copytree('ts/nasui/build', 'nni_node/nasui/build')
shutil.copyfile('ts/nasui/server.js', 'nni_node/nasui/server.js')
shutil.copytree('ts/jupyter_extension/dist', 'nni_node/jupyter-extension')
@ -245,8 +233,6 @@ generated_files = [
'ts/nni_manager/node_modules',
'ts/webui/build',
'ts/webui/node_modules',
'ts/nasui/build',
'ts/nasui/node_modules',
# unit test
'ts/nni_manager/.nyc_output',

Просмотреть файл

@ -1,35 +0,0 @@
$CWD = $PWD
$ErrorActionPreference = "Stop"
# -------------For python unittest-------------
## ------Run annotation test------
echo ""
echo "===========================Testing: nni_annotation==========================="
cd $CWD/../tools/
cmd /c "python -m unittest -v nni_annotation/test_annotation.py 2>&1"
if ($LASTEXITCODE -ne 0) {
throw "Exit code $LASTEXITCODE"
}
## Export certain environment variables for unittest code to work
$env:NNI_TRIAL_JOB_ID="test_trial_job_id"
$env:NNI_PLATFORM="unittest"
## ------Run sdk test------
echo ""
echo "===========================Testing: nni_sdk==========================="
cd $CWD/../src/sdk/pynni/
cmd /c "python -m unittest discover -v tests 2>&1"
if ($LASTEXITCODE -ne 0) {
throw "Exit code $LASTEXITCODE"
}
# -------------For typescript unittest-------------
cd $CWD/../src/nni_manager
echo ""
echo "===========================Testing: nni_manager==========================="
cmd /c "npm run test 2>&1"
# don't check now. adding back later.
# if ($LASTEXITCODE -ne 0) {
# throw "Exit code $LASTEXITCODE"
# }

Просмотреть файл

@ -1,39 +0,0 @@
#!/bin/bash
set -e
CWD=${PWD}
# -------------For python unittest-------------
## ------Run annotation test------
echo ""
echo "===========================Testing: nni_annotation==========================="
#cd ${CWD}/../tools/
#python3 -m unittest -v nni_annotation/test_annotation.py
## Export certain environment variables for unittest code to work
export NNI_TRIAL_JOB_ID=test_trial_job_id
export NNI_PLATFORM=unittest
## ------Run sdk test------
echo ""
echo "===========================Testing: nni_sdk==========================="
#cd ${CWD}/../src/sdk/pynni/
#python3 -m unittest discover -v tests
# -------------For typescript unittest-------------
#cd ${CWD}/../ts/nni_manager
echo ""
echo "===========================Testing: nni_manager==========================="
#npm run test
# -------------For NASUI unittest-------------
#cd ${CWD}/../ts/nasui
echo ""
echo "===========================Testing: nasui==========================="
#CI=true npm test
## ------Run nnictl unit test------
echo ""
echo "===========================Testing: nnictl==========================="
#cd ${CWD}/../tools/nni_cmd/
#python3 -m unittest discover -v tests

23
ts/nasui/.gitignore поставляемый
Просмотреть файл

@ -1,23 +0,0 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,471 +0,0 @@
{"normal_n2_p0": [0.12510386109352112, 0.12485166639089584, 0.12512625753879547, 0.1251252144575119, 0.12483733147382736, 0.12520696222782135, 0.12489466369152069], "normal_n2_p1": [0.12507133185863495, 0.124919593334198, 0.12500512599945068, 0.12506766617298126, 0.12498264014720917, 0.12506002187728882, 0.12494023144245148], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.12490281462669373, 0.12479543685913086, 0.1250968724489212, 0.12525472044944763, 0.12493947893381119, 0.12512518465518951, 0.1251320093870163], "normal_n3_p1": [0.12498760223388672, 0.1251496523618698, 0.12476114928722382, 0.12501442432403564, 0.12514783442020416, 0.1250101923942566, 0.12494546175003052], "normal_n3_p2": [0.1251061111688614, 0.12500056624412537, 0.12485210597515106, 0.12504033744335175, 0.12496867030858994, 0.12513908743858337, 0.12508165836334229], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.12500125169754028, 0.12500613927841187, 0.1251392513513565, 0.12500467896461487, 0.12502941489219666, 0.12501515448093414, 0.12488263845443726], "reduce_n2_p1": [0.12488404661417007, 0.12525683641433716, 0.12508556246757507, 0.12499736249446869, 0.12479124218225479, 0.1250343918800354, 0.12493032962083817], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.1247958093881607, 0.1248902678489685, 0.1250632405281067, 0.12503990530967712, 0.12521472573280334, 0.12494466453790665, 0.12501908838748932], "reduce_n3_p1": [0.12522971630096436, 0.12477587163448334, 0.12505051493644714, 0.12483099102973938, 0.12520042061805725, 0.12502186000347137, 0.12500840425491333], "reduce_n3_p2": [0.1251133531332016, 0.12500400841236115, 0.12492494285106659, 0.12494467198848724, 0.12503154575824738, 0.12514102458953857, 0.12480618804693222], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.22040978074073792, 0.21996545791625977, 0.22044862806797028, 0.029835037887096405, 0.21993781626224518, 0.0298539437353611, 0.02977948635816574], "normal_n2_p1": [0.036833565682172775, 0.03678881376981735, 0.03681403771042824, 0.036832425743341446, 0.036807820200920105, 0.2721386253833771, 0.27187851071357727], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.271801620721817, 0.036753565073013306, 0.272222638130188, 0.03688819333910942, 0.27188050746917725, 0.036850783973932266, 0.03685220330953598], "normal_n3_p1": [0.18498635292053223, 0.025067873299121857, 0.18464958667755127, 0.1850253939628601, 0.18522357940673828, 0.02503989264369011, 0.025026939809322357], "normal_n3_p2": [0.2721053957939148, 0.036794766783714294, 0.03675107657909393, 0.03680647909641266, 0.2718069553375244, 0.27217763662338257, 0.03681858628988266], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.036815427243709564, 0.03681686148047447, 0.0368560291826725, 0.2720373570919037, 0.2720905542373657, 0.03681948781013489, 0.2717720866203308], "reduce_n2_p1": [0.18483209609985352, 0.1853839010000229, 0.025054868310689926, 0.02503717504441738, 0.18469418585300446, 0.18505442142486572, 0.18490076065063477], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.18474158644676208, 0.18488161265850067, 0.18513856828212738, 0.025051314383745193, 0.025086242705583572, 0.18496134877204895, 0.025047043338418007], "reduce_n3_p1": [0.27247658371925354, 0.27148953080177307, 0.03682326152920723, 0.03675856068730354, 0.036867573857307434, 0.03681477531790733, 0.2719956636428833], "reduce_n3_p2": [0.18511852622032166, 0.18498879671096802, 0.18487109243869781, 0.1849009096622467, 0.025041405111551285, 0.02506314404308796, 0.024996018037199974], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.22040978074073792, 0.21996545791625977, 0.22044862806797028, 0.029835037887096405, 0.21993781626224518, 0.0298539437353611, 0.02977948635816574], "normal_n2_p1": [0.036833565682172775, 0.03678881376981735, 0.03681403771042824, 0.036832425743341446, 0.036807820200920105, 0.2721386253833771, 0.27187851071357727], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.271801620721817, 0.036753565073013306, 0.272222638130188, 0.03688819333910942, 0.27188050746917725, 0.036850783973932266, 0.03685220330953598], "normal_n3_p1": [0.18498635292053223, 0.025067873299121857, 0.18464958667755127, 0.1850253939628601, 0.18522357940673828, 0.02503989264369011, 0.025026939809322357], "normal_n3_p2": [0.2721053957939148, 0.036794766783714294, 0.03675107657909393, 0.03680647909641266, 0.2718069553375244, 0.27217763662338257, 0.03681858628988266], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.036815427243709564, 0.03681686148047447, 0.0368560291826725, 0.2720373570919037, 0.2720905542373657, 0.03681948781013489, 0.2717720866203308], "reduce_n2_p1": [0.18483209609985352, 0.1853839010000229, 0.025054868310689926, 0.02503717504441738, 0.18469418585300446, 0.18505442142486572, 0.18490076065063477], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.18474158644676208, 0.18488161265850067, 0.18513856828212738, 0.025051314383745193, 0.025086242705583572, 0.18496134877204895, 0.025047043338418007], "reduce_n3_p1": [0.27247658371925354, 0.27148953080177307, 0.03682326152920723, 0.03675856068730354, 0.036867573857307434, 0.03681477531790733, 0.2719956636428833], "reduce_n3_p2": [0.18511852622032166, 0.18498879671096802, 0.18487109243869781, 0.1849009096622467, 0.025041405111551285, 0.02506314404308796, 0.024996018037199974], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.39235296845436096, 0.251451700925827, 0.11654528230428696, 0.0594351701438427, 0.09840172529220581, 0.019043700769543648, 0.03177664801478386], "normal_n2_p1": [0.009459692984819412, 0.011184139177203178, 0.014328215271234512, 0.02205054461956024, 0.04779971018433571, 0.10667070746421814, 0.5244640707969666], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.07245241850614548, 0.02469700761139393, 0.3084377944469452, 0.025088896974921227, 0.43813416361808777, 0.050370246171951294, 0.02784225344657898], "normal_n3_p1": [0.04362555593252182, 0.007264717482030392, 0.04265182837843895, 0.2793479859828949, 0.299929678440094, 0.013315081596374512, 0.014884491451084614], "normal_n3_p2": [0.10169164836406708, 0.020785443484783173, 0.0294016283005476, 0.0415182001888752, 0.097299724817276, 0.6209920644760132, 0.04963136464357376], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02263825014233589, 0.022986501455307007, 0.022568080574274063, 0.3779161274433136, 0.08386342972517014, 0.013538672588765621, 0.4331737160682678], "reduce_n2_p1": [0.06414740532636642, 0.07082495093345642, 0.018042292445898056, 0.01400163397192955, 0.055102843791246414, 0.36813780665397644, 0.3685108721256256], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.23359210789203644, 0.3325461447238922, 0.22696168720722198, 0.01974831335246563, 0.014716001227498055, 0.0643879771232605, 0.011392415501177311], "reduce_n3_p1": [0.3064649999141693, 0.4190903604030609, 0.026581978425383568, 0.027393316850066185, 0.05324295535683632, 0.016465317457914352, 0.11958715319633484], "reduce_n3_p2": [0.04490531235933304, 0.2181648164987564, 0.3111935555934906, 0.05931316688656807, 0.0263572596013546, 0.022314490750432014, 0.012822703458368778], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.39235296845436096, 0.251451700925827, 0.11654528230428696, 0.0594351701438427, 0.09840172529220581, 0.019043700769543648, 0.03177664801478386], "normal_n2_p1": [0.009459692984819412, 0.011184139177203178, 0.014328215271234512, 0.02205054461956024, 0.04779971018433571, 0.10667070746421814, 0.5244640707969666], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.07245241850614548, 0.02469700761139393, 0.3084377944469452, 0.025088896974921227, 0.43813416361808777, 0.050370246171951294, 0.02784225344657898], "normal_n3_p1": [0.04362555593252182, 0.007264717482030392, 0.04265182837843895, 0.2793479859828949, 0.299929678440094, 0.013315081596374512, 0.014884491451084614], "normal_n3_p2": [0.10169164836406708, 0.020785443484783173, 0.0294016283005476, 0.0415182001888752, 0.097299724817276, 0.6209920644760132, 0.04963136464357376], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02263825014233589, 0.022986501455307007, 0.022568080574274063, 0.3779161274433136, 0.08386342972517014, 0.013538672588765621, 0.4331737160682678], "reduce_n2_p1": [0.06414740532636642, 0.07082495093345642, 0.018042292445898056, 0.01400163397192955, 0.055102843791246414, 0.36813780665397644, 0.3685108721256256], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.23359210789203644, 0.3325461447238922, 0.22696168720722198, 0.01974831335246563, 0.014716001227498055, 0.0643879771232605, 0.011392415501177311], "reduce_n3_p1": [0.3064649999141693, 0.4190903604030609, 0.026581978425383568, 0.027393316850066185, 0.05324295535683632, 0.016465317457914352, 0.11958715319633484], "reduce_n3_p2": [0.04490531235933304, 0.2181648164987564, 0.3111935555934906, 0.05931316688656807, 0.0263572596013546, 0.022314490750432014, 0.012822703458368778], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.21267883479595184, 0.43380218744277954, 0.11502029746770859, 0.14170926809310913, 0.02840367704629898, 0.018637163564562798, 0.02025565877556801], "normal_n2_p1": [0.008053014054894447, 0.009672104381024837, 0.015115602873265743, 0.019636789336800575, 0.03055603988468647, 0.08040187507867813, 0.42239630222320557], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01825183816254139, 0.011935843154788017, 0.06686542183160782, 0.019525887444615364, 0.7239096760749817, 0.06840194016695023, 0.03165784478187561], "normal_n3_p1": [0.02225588820874691, 0.00811865646392107, 0.023472575470805168, 0.32033780217170715, 0.16098405420780182, 0.015136550180613995, 0.016448097303509712], "normal_n3_p2": [0.028331952169537544, 0.012752940878272057, 0.018483558669686317, 0.03147561475634575, 0.038208868354558945, 0.7820547223091125, 0.04622446745634079], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02036440372467041, 0.020883994176983833, 0.01800467073917389, 0.5954561233520508, 0.028669413179159164, 0.008313228376209736, 0.2798841595649719], "reduce_n2_p1": [0.02800675481557846, 0.03293122723698616, 0.020060453563928604, 0.010837211273610592, 0.0388413704931736, 0.5936148166656494, 0.20987342298030853], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.17162688076496124, 0.6436641812324524, 0.10078085958957672, 0.01890481449663639, 0.011363090947270393, 0.015287521295249462, 0.008011254481971264], "reduce_n3_p1": [0.15300190448760986, 0.40965476632118225, 0.04808111488819122, 0.039916589856147766, 0.10632611811161041, 0.022524556145071983, 0.1525658369064331], "reduce_n3_p2": [0.022178301587700844, 0.12260428816080093, 0.5461222529411316, 0.043324921280145645, 0.07387503236532211, 0.03512754291296005, 0.017138369381427765], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.21267883479595184, 0.43380218744277954, 0.11502029746770859, 0.14170926809310913, 0.02840367704629898, 0.018637163564562798, 0.02025565877556801], "normal_n2_p1": [0.008053014054894447, 0.009672104381024837, 0.015115602873265743, 0.019636789336800575, 0.03055603988468647, 0.08040187507867813, 0.42239630222320557], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01825183816254139, 0.011935843154788017, 0.06686542183160782, 0.019525887444615364, 0.7239096760749817, 0.06840194016695023, 0.03165784478187561], "normal_n3_p1": [0.02225588820874691, 0.00811865646392107, 0.023472575470805168, 0.32033780217170715, 0.16098405420780182, 0.015136550180613995, 0.016448097303509712], "normal_n3_p2": [0.028331952169537544, 0.012752940878272057, 0.018483558669686317, 0.03147561475634575, 0.038208868354558945, 0.7820547223091125, 0.04622446745634079], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02036440372467041, 0.020883994176983833, 0.01800467073917389, 0.5954561233520508, 0.028669413179159164, 0.008313228376209736, 0.2798841595649719], "reduce_n2_p1": [0.02800675481557846, 0.03293122723698616, 0.020060453563928604, 0.010837211273610592, 0.0388413704931736, 0.5936148166656494, 0.20987342298030853], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.17162688076496124, 0.6436641812324524, 0.10078085958957672, 0.01890481449663639, 0.011363090947270393, 0.015287521295249462, 0.008011254481971264], "reduce_n3_p1": [0.15300190448760986, 0.40965476632118225, 0.04808111488819122, 0.039916589856147766, 0.10632611811161041, 0.022524556145071983, 0.1525658369064331], "reduce_n3_p2": [0.022178301587700844, 0.12260428816080093, 0.5461222529411316, 0.043324921280145645, 0.07387503236532211, 0.03512754291296005, 0.017138369381427765], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2656702399253845, 0.20735245943069458, 0.11498136073350906, 0.2890162765979767, 0.019842231646180153, 0.02680804766714573, 0.02573312446475029], "normal_n2_p1": [0.016837168484926224, 0.017620382830500603, 0.02979249693453312, 0.039153020828962326, 0.06952035427093506, 0.09949430823326111, 0.3245354890823364], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.008524206466972828, 0.017873940989375114, 0.025837259367108345, 0.019342973828315735, 0.7602460384368896, 0.07781635969877243, 0.04278924688696861], "normal_n3_p1": [0.023638853803277016, 0.020786713808774948, 0.02713296376168728, 0.4423049986362457, 0.21798717975616455, 0.02539020963013172, 0.026517996564507484], "normal_n3_p2": [0.017716258764266968, 0.02176636829972267, 0.029331360012292862, 0.06070980429649353, 0.02847978286445141, 0.7162687182426453, 0.05147082731127739], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.021054646000266075, 0.020440518856048584, 0.013846069574356079, 0.7755191922187805, 0.0148176159709692, 0.006552428938448429, 0.11866246163845062], "reduce_n2_p1": [0.03374938294291496, 0.04036983475089073, 0.043744392693042755, 0.01852535456418991, 0.055207133293151855, 0.39677298069000244, 0.19092874228954315], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.21019963920116425, 0.5704988241195679, 0.09819363802671432, 0.04251769185066223, 0.022004202008247375, 0.01332039199769497, 0.01569017395377159], "reduce_n3_p1": [0.10310911387205124, 0.5820677280426025, 0.04964950308203697, 0.030755143612623215, 0.03691011294722557, 0.030572716146707535, 0.12569712102413177], "reduce_n3_p2": [0.019600195810198784, 0.05256284773349762, 0.21741919219493866, 0.04585668817162514, 0.25513961911201477, 0.06866370886564255, 0.02543008327484131], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2656702399253845, 0.20735245943069458, 0.11498136073350906, 0.2890162765979767, 0.019842231646180153, 0.02680804766714573, 0.02573312446475029], "normal_n2_p1": [0.016837168484926224, 0.017620382830500603, 0.02979249693453312, 0.039153020828962326, 0.06952035427093506, 0.09949430823326111, 0.3245354890823364], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.008524206466972828, 0.017873940989375114, 0.025837259367108345, 0.019342973828315735, 0.7602460384368896, 0.07781635969877243, 0.04278924688696861], "normal_n3_p1": [0.023638853803277016, 0.020786713808774948, 0.02713296376168728, 0.4423049986362457, 0.21798717975616455, 0.02539020963013172, 0.026517996564507484], "normal_n3_p2": [0.017716258764266968, 0.02176636829972267, 0.029331360012292862, 0.06070980429649353, 0.02847978286445141, 0.7162687182426453, 0.05147082731127739], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.021054646000266075, 0.020440518856048584, 0.013846069574356079, 0.7755191922187805, 0.0148176159709692, 0.006552428938448429, 0.11866246163845062], "reduce_n2_p1": [0.03374938294291496, 0.04036983475089073, 0.043744392693042755, 0.01852535456418991, 0.055207133293151855, 0.39677298069000244, 0.19092874228954315], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.21019963920116425, 0.5704988241195679, 0.09819363802671432, 0.04251769185066223, 0.022004202008247375, 0.01332039199769497, 0.01569017395377159], "reduce_n3_p1": [0.10310911387205124, 0.5820677280426025, 0.04964950308203697, 0.030755143612623215, 0.03691011294722557, 0.030572716146707535, 0.12569712102413177], "reduce_n3_p2": [0.019600195810198784, 0.05256284773349762, 0.21741919219493866, 0.04585668817162514, 0.25513961911201477, 0.06866370886564255, 0.02543008327484131], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.28031525015830994, 0.23637504875659943, 0.16899323463439941, 0.15409566462039948, 0.018465198576450348, 0.04457315802574158, 0.0538918636739254], "normal_n2_p1": [0.022037217393517494, 0.020121054723858833, 0.03178705275058746, 0.030696507543325424, 0.026238616555929184, 0.05249606817960739, 0.16935372352600098], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009456105530261993, 0.06988755613565445, 0.024205835536122322, 0.031444888561964035, 0.6465086936950684, 0.06981690973043442, 0.0951792523264885], "normal_n3_p1": [0.027367888018488884, 0.05540458858013153, 0.03414324298501015, 0.4332617223262787, 0.2873321771621704, 0.02515226975083351, 0.03269738703966141], "normal_n3_p2": [0.0191624965518713, 0.06424052268266678, 0.07186813652515411, 0.10108955949544907, 0.027140304446220398, 0.6145390272140503, 0.03383466228842735], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.030722472816705704, 0.029914656654000282, 0.019102610647678375, 0.7504507899284363, 0.01652444340288639, 0.011273928917944431, 0.0984063595533371], "reduce_n2_p1": [0.03486388176679611, 0.048895273357629776, 0.05822115018963814, 0.024573732167482376, 0.06247808784246445, 0.345588743686676, 0.10188119858503342], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.22287054359912872, 0.40198665857315063, 0.08434125036001205, 0.14239411056041718, 0.04956228658556938, 0.020502500236034393, 0.03772156313061714], "reduce_n3_p1": [0.05395388975739479, 0.7333143353462219, 0.030597321689128876, 0.025415293872356415, 0.019321076571941376, 0.027693629264831543, 0.08779779076576233], "reduce_n3_p2": [0.029236312955617905, 0.039216749370098114, 0.15105609595775604, 0.05217717960476875, 0.13911838829517365, 0.12524926662445068, 0.031917888671159744], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.28031525015830994, 0.23637504875659943, 0.16899323463439941, 0.15409566462039948, 0.018465198576450348, 0.04457315802574158, 0.0538918636739254], "normal_n2_p1": [0.022037217393517494, 0.020121054723858833, 0.03178705275058746, 0.030696507543325424, 0.026238616555929184, 0.05249606817960739, 0.16935372352600098], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009456105530261993, 0.06988755613565445, 0.024205835536122322, 0.031444888561964035, 0.6465086936950684, 0.06981690973043442, 0.0951792523264885], "normal_n3_p1": [0.027367888018488884, 0.05540458858013153, 0.03414324298501015, 0.4332617223262787, 0.2873321771621704, 0.02515226975083351, 0.03269738703966141], "normal_n3_p2": [0.0191624965518713, 0.06424052268266678, 0.07186813652515411, 0.10108955949544907, 0.027140304446220398, 0.6145390272140503, 0.03383466228842735], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.030722472816705704, 0.029914656654000282, 0.019102610647678375, 0.7504507899284363, 0.01652444340288639, 0.011273928917944431, 0.0984063595533371], "reduce_n2_p1": [0.03486388176679611, 0.048895273357629776, 0.05822115018963814, 0.024573732167482376, 0.06247808784246445, 0.345588743686676, 0.10188119858503342], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.22287054359912872, 0.40198665857315063, 0.08434125036001205, 0.14239411056041718, 0.04956228658556938, 0.020502500236034393, 0.03772156313061714], "reduce_n3_p1": [0.05395388975739479, 0.7333143353462219, 0.030597321689128876, 0.025415293872356415, 0.019321076571941376, 0.027693629264831543, 0.08779779076576233], "reduce_n3_p2": [0.029236312955617905, 0.039216749370098114, 0.15105609595775604, 0.05217717960476875, 0.13911838829517365, 0.12524926662445068, 0.031917888671159744], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.40745219588279724, 0.29019439220428467, 0.0578833632171154, 0.04989990219473839, 0.01928805373609066, 0.060369621962308884, 0.0916702002286911], "normal_n2_p1": [0.05204378068447113, 0.04302956163883209, 0.06541769206523895, 0.04254964739084244, 0.031384196132421494, 0.06568483263254166, 0.24697095155715942], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.014247558079659939, 0.05065655708312988, 0.029375744983553886, 0.06392376869916916, 0.6009625792503357, 0.07832802832126617, 0.08968906849622726], "normal_n3_p1": [0.026166431605815887, 0.06812744587659836, 0.033217012882232666, 0.3397417366504669, 0.44718149304389954, 0.01767699047923088, 0.018517911434173584], "normal_n3_p2": [0.019358916208148003, 0.04574410244822502, 0.04101264849305153, 0.17311380803585052, 0.025195633992552757, 0.6448269486427307, 0.01633383333683014], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04876985773444176, 0.04796568304300308, 0.042347390204668045, 0.5029987692832947, 0.032598741352558136, 0.02972109615802765, 0.14673925936222076], "reduce_n2_p1": [0.07895223796367645, 0.13457679748535156, 0.09495756030082703, 0.04423557594418526, 0.07845990359783173, 0.2919556200504303, 0.0902254655957222], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0657283291220665, 0.14578242599964142, 0.07232203334569931, 0.46045875549316406, 0.09813529253005981, 0.03238166496157646, 0.05315185710787773], "reduce_n3_p1": [0.015342740342020988, 0.9260051250457764, 0.0074174776673316956, 0.009404681622982025, 0.0065813614055514336, 0.009066947735846043, 0.021120786666870117], "reduce_n3_p2": [0.027857286855578423, 0.02785457856953144, 0.0697706863284111, 0.05405434966087341, 0.076692596077919, 0.11945328861474991, 0.030495809391140938], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.40745219588279724, 0.29019439220428467, 0.0578833632171154, 0.04989990219473839, 0.01928805373609066, 0.060369621962308884, 0.0916702002286911], "normal_n2_p1": [0.05204378068447113, 0.04302956163883209, 0.06541769206523895, 0.04254964739084244, 0.031384196132421494, 0.06568483263254166, 0.24697095155715942], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.014247558079659939, 0.05065655708312988, 0.029375744983553886, 0.06392376869916916, 0.6009625792503357, 0.07832802832126617, 0.08968906849622726], "normal_n3_p1": [0.026166431605815887, 0.06812744587659836, 0.033217012882232666, 0.3397417366504669, 0.44718149304389954, 0.01767699047923088, 0.018517911434173584], "normal_n3_p2": [0.019358916208148003, 0.04574410244822502, 0.04101264849305153, 0.17311380803585052, 0.025195633992552757, 0.6448269486427307, 0.01633383333683014], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04876985773444176, 0.04796568304300308, 0.042347390204668045, 0.5029987692832947, 0.032598741352558136, 0.02972109615802765, 0.14673925936222076], "reduce_n2_p1": [0.07895223796367645, 0.13457679748535156, 0.09495756030082703, 0.04423557594418526, 0.07845990359783173, 0.2919556200504303, 0.0902254655957222], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0657283291220665, 0.14578242599964142, 0.07232203334569931, 0.46045875549316406, 0.09813529253005981, 0.03238166496157646, 0.05315185710787773], "reduce_n3_p1": [0.015342740342020988, 0.9260051250457764, 0.0074174776673316956, 0.009404681622982025, 0.0065813614055514336, 0.009066947735846043, 0.021120786666870117], "reduce_n3_p2": [0.027857286855578423, 0.02785457856953144, 0.0697706863284111, 0.05405434966087341, 0.076692596077919, 0.11945328861474991, 0.030495809391140938], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2863176465034485, 0.44110625982284546, 0.034519318491220474, 0.03161517158150673, 0.031001372262835503, 0.06875138729810715, 0.07879268378019333], "normal_n2_p1": [0.05055892467498779, 0.052263304591178894, 0.09583073854446411, 0.06976516544818878, 0.0450739823281765, 0.06493925303220749, 0.18743056058883667], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.016623929142951965, 0.016323132440447807, 0.027083832770586014, 0.05177085101604462, 0.6164419054985046, 0.0883152186870575, 0.14711788296699524], "normal_n3_p1": [0.029574843123555183, 0.20804037153720856, 0.04353385418653488, 0.4941936433315277, 0.16437800228595734, 0.0160712618380785, 0.012835165485739708], "normal_n3_p2": [0.016004517674446106, 0.017076198011636734, 0.015828978270292282, 0.05496317893266678, 0.020216744393110275, 0.8488839268684387, 0.008224863559007645], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.044549889862537384, 0.04697452113032341, 0.039506588131189346, 0.16353262960910797, 0.03793143108487129, 0.04008207097649574, 0.13943201303482056], "reduce_n2_p1": [0.07797633111476898, 0.11307460814714432, 0.2822635769844055, 0.06527566909790039, 0.07053232192993164, 0.24087466299533844, 0.0665384978055954], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.07364903390407562, 0.27624431252479553, 0.07432092726230621, 0.15915599465370178, 0.09745396673679352, 0.06017805263400078, 0.11502077430486679], "reduce_n3_p1": [0.009308733977377415, 0.9449781775474548, 0.0056167226284742355, 0.008971335366368294, 0.005504903383553028, 0.006414951756596565, 0.012639875523746014], "reduce_n3_p2": [0.06610076874494553, 0.05237789824604988, 0.1025969535112381, 0.09261137247085571, 0.09668194502592087, 0.12388099730014801, 0.06069521605968475], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2863176465034485, 0.44110625982284546, 0.034519318491220474, 0.03161517158150673, 0.031001372262835503, 0.06875138729810715, 0.07879268378019333], "normal_n2_p1": [0.05055892467498779, 0.052263304591178894, 0.09583073854446411, 0.06976516544818878, 0.0450739823281765, 0.06493925303220749, 0.18743056058883667], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.016623929142951965, 0.016323132440447807, 0.027083832770586014, 0.05177085101604462, 0.6164419054985046, 0.0883152186870575, 0.14711788296699524], "normal_n3_p1": [0.029574843123555183, 0.20804037153720856, 0.04353385418653488, 0.4941936433315277, 0.16437800228595734, 0.0160712618380785, 0.012835165485739708], "normal_n3_p2": [0.016004517674446106, 0.017076198011636734, 0.015828978270292282, 0.05496317893266678, 0.020216744393110275, 0.8488839268684387, 0.008224863559007645], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.044549889862537384, 0.04697452113032341, 0.039506588131189346, 0.16353262960910797, 0.03793143108487129, 0.04008207097649574, 0.13943201303482056], "reduce_n2_p1": [0.07797633111476898, 0.11307460814714432, 0.2822635769844055, 0.06527566909790039, 0.07053232192993164, 0.24087466299533844, 0.0665384978055954], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.07364903390407562, 0.27624431252479553, 0.07432092726230621, 0.15915599465370178, 0.09745396673679352, 0.06017805263400078, 0.11502077430486679], "reduce_n3_p1": [0.009308733977377415, 0.9449781775474548, 0.0056167226284742355, 0.008971335366368294, 0.005504903383553028, 0.006414951756596565, 0.012639875523746014], "reduce_n3_p2": [0.06610076874494553, 0.05237789824604988, 0.1025969535112381, 0.09261137247085571, 0.09668194502592087, 0.12388099730014801, 0.06069521605968475], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06297755241394043, 0.6076533198356628, 0.02498018369078636, 0.028879988938570023, 0.044320736080408096, 0.02810767851769924, 0.1500719040632248], "normal_n2_p1": [0.03212028369307518, 0.0785636231303215, 0.12165815383195877, 0.1371358036994934, 0.10217661410570145, 0.07038214057683945, 0.2242540568113327], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.025111885741353035, 0.014248637482523918, 0.03297353908419609, 0.0709686353802681, 0.5972440838813782, 0.11024649441242218, 0.11133856326341629], "normal_n3_p1": [0.016871390864253044, 0.044609732925891876, 0.02194346860051155, 0.8365957140922546, 0.04980747774243355, 0.009106270968914032, 0.007309791631996632], "normal_n3_p2": [0.012767359614372253, 0.008892688900232315, 0.009049758315086365, 0.01736779510974884, 0.015253353863954544, 0.9177945256233215, 0.006787460763007402], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.11150762438774109, 0.11092741787433624, 0.054108403623104095, 0.1889827698469162, 0.048632487654685974, 0.03789719194173813, 0.12972640991210938], "reduce_n2_p1": [0.07656197249889374, 0.1059044674038887, 0.06698085367679596, 0.05722066015005112, 0.05911342054605484, 0.530799925327301, 0.05017389729619026], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03390084579586983, 0.3124750256538391, 0.04012787714600563, 0.04986348748207092, 0.08063299208879471, 0.05998650938272476, 0.24200347065925598], "reduce_n3_p1": [0.010758563876152039, 0.9174217581748962, 0.010228807106614113, 0.014043197967112064, 0.00870781671255827, 0.00876837782561779, 0.013624809682369232], "reduce_n3_p2": [0.05922224000096321, 0.05584828183054924, 0.10934027284383774, 0.13664953410625458, 0.050446853041648865, 0.03501580283045769, 0.0660482868552208], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06297755241394043, 0.6076533198356628, 0.02498018369078636, 0.028879988938570023, 0.044320736080408096, 0.02810767851769924, 0.1500719040632248], "normal_n2_p1": [0.03212028369307518, 0.0785636231303215, 0.12165815383195877, 0.1371358036994934, 0.10217661410570145, 0.07038214057683945, 0.2242540568113327], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.025111885741353035, 0.014248637482523918, 0.03297353908419609, 0.0709686353802681, 0.5972440838813782, 0.11024649441242218, 0.11133856326341629], "normal_n3_p1": [0.016871390864253044, 0.044609732925891876, 0.02194346860051155, 0.8365957140922546, 0.04980747774243355, 0.009106270968914032, 0.007309791631996632], "normal_n3_p2": [0.012767359614372253, 0.008892688900232315, 0.009049758315086365, 0.01736779510974884, 0.015253353863954544, 0.9177945256233215, 0.006787460763007402], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.11150762438774109, 0.11092741787433624, 0.054108403623104095, 0.1889827698469162, 0.048632487654685974, 0.03789719194173813, 0.12972640991210938], "reduce_n2_p1": [0.07656197249889374, 0.1059044674038887, 0.06698085367679596, 0.05722066015005112, 0.05911342054605484, 0.530799925327301, 0.05017389729619026], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03390084579586983, 0.3124750256538391, 0.04012787714600563, 0.04986348748207092, 0.08063299208879471, 0.05998650938272476, 0.24200347065925598], "reduce_n3_p1": [0.010758563876152039, 0.9174217581748962, 0.010228807106614113, 0.014043197967112064, 0.00870781671255827, 0.00876837782561779, 0.013624809682369232], "reduce_n3_p2": [0.05922224000096321, 0.05584828183054924, 0.10934027284383774, 0.13664953410625458, 0.050446853041648865, 0.03501580283045769, 0.0660482868552208], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.025863630697131157, 0.26887965202331543, 0.02478301338851452, 0.028007447719573975, 0.06761261820793152, 0.023096976801753044, 0.4887673258781433], "normal_n2_p1": [0.03655236214399338, 0.15862658619880676, 0.18583273887634277, 0.2620188593864441, 0.14248359203338623, 0.034967370331287384, 0.08092039078474045], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.048614200204610825, 0.030763233080506325, 0.05067896842956543, 0.16797824203968048, 0.5216032266616821, 0.06962236016988754, 0.04713786393404007], "normal_n3_p1": [0.01744563691318035, 0.02652638964354992, 0.020083842799067497, 0.8710284233093262, 0.031189318746328354, 0.011366983875632286, 0.010972029529511929], "normal_n3_p2": [0.014444478787481785, 0.01065350417047739, 0.011329051107168198, 0.008677007630467415, 0.013844955712556839, 0.9200257658958435, 0.008616222999989986], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.14187248051166534, 0.15081466734409332, 0.08684657514095306, 0.1481497436761856, 0.06390637904405594, 0.052459605038166046, 0.19743825495243073], "reduce_n2_p1": [0.1188485249876976, 0.12762372195720673, 0.055011406540870667, 0.08563802391290665, 0.10164057463407516, 0.33387288451194763, 0.059369366616010666], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.024838104844093323, 0.25490671396255493, 0.030745506286621094, 0.03166557848453522, 0.06345795840024948, 0.0664047971367836, 0.21698148548603058], "reduce_n3_p1": [0.011349393054842949, 0.9215550422668457, 0.011766892857849598, 0.012598313391208649, 0.009682852774858475, 0.007833153940737247, 0.011524910107254982], "reduce_n3_p2": [0.06172025576233864, 0.061814043670892715, 0.09434127062559128, 0.07102522999048233, 0.030732670798897743, 0.011689365841448307, 0.027248626574873924], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.025863630697131157, 0.26887965202331543, 0.02478301338851452, 0.028007447719573975, 0.06761261820793152, 0.023096976801753044, 0.4887673258781433], "normal_n2_p1": [0.03655236214399338, 0.15862658619880676, 0.18583273887634277, 0.2620188593864441, 0.14248359203338623, 0.034967370331287384, 0.08092039078474045], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.048614200204610825, 0.030763233080506325, 0.05067896842956543, 0.16797824203968048, 0.5216032266616821, 0.06962236016988754, 0.04713786393404007], "normal_n3_p1": [0.01744563691318035, 0.02652638964354992, 0.020083842799067497, 0.8710284233093262, 0.031189318746328354, 0.011366983875632286, 0.010972029529511929], "normal_n3_p2": [0.014444478787481785, 0.01065350417047739, 0.011329051107168198, 0.008677007630467415, 0.013844955712556839, 0.9200257658958435, 0.008616222999989986], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.14187248051166534, 0.15081466734409332, 0.08684657514095306, 0.1481497436761856, 0.06390637904405594, 0.052459605038166046, 0.19743825495243073], "reduce_n2_p1": [0.1188485249876976, 0.12762372195720673, 0.055011406540870667, 0.08563802391290665, 0.10164057463407516, 0.33387288451194763, 0.059369366616010666], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.024838104844093323, 0.25490671396255493, 0.030745506286621094, 0.03166557848453522, 0.06345795840024948, 0.0664047971367836, 0.21698148548603058], "reduce_n3_p1": [0.011349393054842949, 0.9215550422668457, 0.011766892857849598, 0.012598313391208649, 0.009682852774858475, 0.007833153940737247, 0.011524910107254982], "reduce_n3_p2": [0.06172025576233864, 0.061814043670892715, 0.09434127062559128, 0.07102522999048233, 0.030732670798897743, 0.011689365841448307, 0.027248626574873924], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.017353812232613564, 0.6132345199584961, 0.027799854055047035, 0.018486598506569862, 0.17810921370983124, 0.024609507992863655, 0.08969809114933014], "normal_n2_p1": [0.026556236669421196, 0.07405900210142136, 0.13083690404891968, 0.6422612071037292, 0.027641696855425835, 0.013016053475439548, 0.04155178740620613], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.09203936159610748, 0.0920819342136383, 0.07896153628826141, 0.16117529571056366, 0.4068346321582794, 0.07305417954921722, 0.0301046185195446], "normal_n3_p1": [0.029908249154686928, 0.03627705201506615, 0.033398646861314774, 0.8100974559783936, 0.0358005128800869, 0.017874987795948982, 0.02048029750585556], "normal_n3_p2": [0.01700606569647789, 0.015767181292176247, 0.017075736075639725, 0.007555800024420023, 0.013880565762519836, 0.8986359238624573, 0.01323014497756958], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.11421609669923782, 0.24372431635856628, 0.08071620017290115, 0.06488662958145142, 0.10273899883031845, 0.09771563857793808, 0.10714707523584366], "reduce_n2_p1": [0.12293308973312378, 0.06062166020274162, 0.047732170671224594, 0.062340348958969116, 0.13117338716983795, 0.4175844192504883, 0.06330312788486481], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.016165265813469887, 0.13953347504138947, 0.020401882007718086, 0.021198734641075134, 0.034133344888687134, 0.03250810503959656, 0.04975644126534462], "reduce_n3_p1": [0.017453350126743317, 0.8914955854415894, 0.019361253827810287, 0.01628112606704235, 0.013875034637749195, 0.010765119455754757, 0.015301377512514591], "reduce_n3_p2": [0.04796774685382843, 0.047434233129024506, 0.05359629914164543, 0.018726611509919167, 0.01981533318758011, 0.00732897873967886, 0.011939775198698044], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.017353812232613564, 0.6132345199584961, 0.027799854055047035, 0.018486598506569862, 0.17810921370983124, 0.024609507992863655, 0.08969809114933014], "normal_n2_p1": [0.026556236669421196, 0.07405900210142136, 0.13083690404891968, 0.6422612071037292, 0.027641696855425835, 0.013016053475439548, 0.04155178740620613], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.09203936159610748, 0.0920819342136383, 0.07896153628826141, 0.16117529571056366, 0.4068346321582794, 0.07305417954921722, 0.0301046185195446], "normal_n3_p1": [0.029908249154686928, 0.03627705201506615, 0.033398646861314774, 0.8100974559783936, 0.0358005128800869, 0.017874987795948982, 0.02048029750585556], "normal_n3_p2": [0.01700606569647789, 0.015767181292176247, 0.017075736075639725, 0.007555800024420023, 0.013880565762519836, 0.8986359238624573, 0.01323014497756958], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.11421609669923782, 0.24372431635856628, 0.08071620017290115, 0.06488662958145142, 0.10273899883031845, 0.09771563857793808, 0.10714707523584366], "reduce_n2_p1": [0.12293308973312378, 0.06062166020274162, 0.047732170671224594, 0.062340348958969116, 0.13117338716983795, 0.4175844192504883, 0.06330312788486481], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.016165265813469887, 0.13953347504138947, 0.020401882007718086, 0.021198734641075134, 0.034133344888687134, 0.03250810503959656, 0.04975644126534462], "reduce_n3_p1": [0.017453350126743317, 0.8914955854415894, 0.019361253827810287, 0.01628112606704235, 0.013875034637749195, 0.010765119455754757, 0.015301377512514591], "reduce_n3_p2": [0.04796774685382843, 0.047434233129024506, 0.05359629914164543, 0.018726611509919167, 0.01981533318758011, 0.00732897873967886, 0.011939775198698044], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.008423303253948689, 0.8978993892669678, 0.01732752099633217, 0.006417241413146257, 0.03146515041589737, 0.012308250181376934, 0.020383628085255623], "normal_n2_p1": [0.07086030393838882, 0.17123842239379883, 0.4336707592010498, 0.22015917301177979, 0.013146397657692432, 0.013062145560979843, 0.03979407250881195], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.11798051744699478, 0.19379836320877075, 0.09831485897302628, 0.11059999465942383, 0.24539746344089508, 0.12348005175590515, 0.03381425514817238], "normal_n3_p1": [0.038520243018865585, 0.04348589479923248, 0.041529376059770584, 0.7695455551147461, 0.04481839761137962, 0.020514288917183876, 0.020965388044714928], "normal_n3_p2": [0.021874958649277687, 0.027743488550186157, 0.028447283431887627, 0.010807648301124573, 0.017018210142850876, 0.844315767288208, 0.022333262488245964], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04531458020210266, 0.06320086866617203, 0.11926387995481491, 0.03391863778233528, 0.15095998346805573, 0.2943825423717499, 0.05789525806903839], "reduce_n2_p1": [0.28059840202331543, 0.06501036137342453, 0.05137643218040466, 0.08632604777812958, 0.09377758204936981, 0.2585667073726654, 0.06316015869379044], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03393005579710007, 0.23807376623153687, 0.04676070809364319, 0.03868166357278824, 0.04948745295405388, 0.07142260670661926, 0.038445524871349335], "reduce_n3_p1": [0.02919493056833744, 0.8103078007698059, 0.025487268343567848, 0.03546827286481857, 0.02484278939664364, 0.022936878725886345, 0.024817410856485367], "reduce_n3_p2": [0.04602658748626709, 0.05637425184249878, 0.05747273191809654, 0.017600087448954582, 0.027681846171617508, 0.013782160356640816, 0.015591105446219444], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.008423303253948689, 0.8978993892669678, 0.01732752099633217, 0.006417241413146257, 0.03146515041589737, 0.012308250181376934, 0.020383628085255623], "normal_n2_p1": [0.07086030393838882, 0.17123842239379883, 0.4336707592010498, 0.22015917301177979, 0.013146397657692432, 0.013062145560979843, 0.03979407250881195], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.11798051744699478, 0.19379836320877075, 0.09831485897302628, 0.11059999465942383, 0.24539746344089508, 0.12348005175590515, 0.03381425514817238], "normal_n3_p1": [0.038520243018865585, 0.04348589479923248, 0.041529376059770584, 0.7695455551147461, 0.04481839761137962, 0.020514288917183876, 0.020965388044714928], "normal_n3_p2": [0.021874958649277687, 0.027743488550186157, 0.028447283431887627, 0.010807648301124573, 0.017018210142850876, 0.844315767288208, 0.022333262488245964], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04531458020210266, 0.06320086866617203, 0.11926387995481491, 0.03391863778233528, 0.15095998346805573, 0.2943825423717499, 0.05789525806903839], "reduce_n2_p1": [0.28059840202331543, 0.06501036137342453, 0.05137643218040466, 0.08632604777812958, 0.09377758204936981, 0.2585667073726654, 0.06316015869379044], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03393005579710007, 0.23807376623153687, 0.04676070809364319, 0.03868166357278824, 0.04948745295405388, 0.07142260670661926, 0.038445524871349335], "reduce_n3_p1": [0.02919493056833744, 0.8103078007698059, 0.025487268343567848, 0.03546827286481857, 0.02484278939664364, 0.022936878725886345, 0.024817410856485367], "reduce_n3_p2": [0.04602658748626709, 0.05637425184249878, 0.05747273191809654, 0.017600087448954582, 0.027681846171617508, 0.013782160356640816, 0.015591105446219444], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.005088077392429113, 0.955994188785553, 0.010788258165121078, 0.0032565633300691843, 0.008797960355877876, 0.005782763473689556, 0.007580211386084557], "normal_n2_p1": [0.05694582313299179, 0.09791944921016693, 0.12470024079084396, 0.5304037928581238, 0.021019751206040382, 0.02699291706085205, 0.06874183565378189], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.10850870609283447, 0.18012161552906036, 0.10065491497516632, 0.17065435647964478, 0.10696917772293091, 0.15794789791107178, 0.05605052784085274], "normal_n3_p1": [0.01405029371380806, 0.013004135340452194, 0.01163240522146225, 0.9009106755256653, 0.021130120381712914, 0.01583891175687313, 0.011804241687059402], "normal_n3_p2": [0.016171922907233238, 0.017420779913663864, 0.016832225024700165, 0.013544444926083088, 0.015727663412690163, 0.876361072063446, 0.01862386427819729], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02765839174389839, 0.04551718384027481, 0.2961176633834839, 0.027875760570168495, 0.18328522145748138, 0.03940855339169502, 0.027207432314753532], "reduce_n2_p1": [0.08564416319131851, 0.053698379546403885, 0.05394681170582771, 0.19780857861042023, 0.06592775136232376, 0.36741921305656433, 0.0508536659181118], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04356209933757782, 0.18606781959533691, 0.05911865830421448, 0.04902262985706329, 0.169045552611351, 0.14848202466964722, 0.045961894094944], "reduce_n3_p1": [0.028619131073355675, 0.8133513927459717, 0.01413040328770876, 0.0494735985994339, 0.027899594977498055, 0.022440962493419647, 0.02125275507569313], "reduce_n3_p2": [0.09399881958961487, 0.1629478484392166, 0.1149119883775711, 0.03234313428401947, 0.07101311534643173, 0.051107291132211685, 0.052728068083524704], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.005088077392429113, 0.955994188785553, 0.010788258165121078, 0.0032565633300691843, 0.008797960355877876, 0.005782763473689556, 0.007580211386084557], "normal_n2_p1": [0.05694582313299179, 0.09791944921016693, 0.12470024079084396, 0.5304037928581238, 0.021019751206040382, 0.02699291706085205, 0.06874183565378189], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.10850870609283447, 0.18012161552906036, 0.10065491497516632, 0.17065435647964478, 0.10696917772293091, 0.15794789791107178, 0.05605052784085274], "normal_n3_p1": [0.01405029371380806, 0.013004135340452194, 0.01163240522146225, 0.9009106755256653, 0.021130120381712914, 0.01583891175687313, 0.011804241687059402], "normal_n3_p2": [0.016171922907233238, 0.017420779913663864, 0.016832225024700165, 0.013544444926083088, 0.015727663412690163, 0.876361072063446, 0.01862386427819729], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02765839174389839, 0.04551718384027481, 0.2961176633834839, 0.027875760570168495, 0.18328522145748138, 0.03940855339169502, 0.027207432314753532], "reduce_n2_p1": [0.08564416319131851, 0.053698379546403885, 0.05394681170582771, 0.19780857861042023, 0.06592775136232376, 0.36741921305656433, 0.0508536659181118], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04356209933757782, 0.18606781959533691, 0.05911865830421448, 0.04902262985706329, 0.169045552611351, 0.14848202466964722, 0.045961894094944], "reduce_n3_p1": [0.028619131073355675, 0.8133513927459717, 0.01413040328770876, 0.0494735985994339, 0.027899594977498055, 0.022440962493419647, 0.02125275507569313], "reduce_n3_p2": [0.09399881958961487, 0.1629478484392166, 0.1149119883775711, 0.03234313428401947, 0.07101311534643173, 0.051107291132211685, 0.052728068083524704], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.005675198510289192, 0.9567154049873352, 0.01144165638834238, 0.003741919994354248, 0.006170300766825676, 0.006091578863561153, 0.00611514039337635], "normal_n2_p1": [0.08490321785211563, 0.1273333579301834, 0.06465772539377213, 0.47093161940574646, 0.040369194000959396, 0.028084751218557358, 0.0983366072177887], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04728277400135994, 0.03158102557063103, 0.05657823383808136, 0.22728750109672546, 0.048910703510046005, 0.27514392137527466, 0.0703490823507309], "normal_n3_p1": [0.01116939913481474, 0.009695576503872871, 0.0087667778134346, 0.9087597131729126, 0.018730025738477707, 0.019266018643975258, 0.011784675531089306], "normal_n3_p2": [0.014190750196576118, 0.013617982156574726, 0.012165017426013947, 0.017325391992926598, 0.016159243881702423, 0.8925093412399292, 0.01241651363670826], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.011394054628908634, 0.018359903246164322, 0.38415566086769104, 0.018269041553139687, 0.12716922163963318, 0.010922416113317013, 0.0145201925188303], "reduce_n2_p1": [0.09320639818906784, 0.08097559213638306, 0.05566885322332382, 0.44459736347198486, 0.053729720413684845, 0.1503240019083023, 0.04943829029798508], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0456501767039299, 0.20598748326301575, 0.042560189962387085, 0.06326625496149063, 0.3574393093585968, 0.05067625641822815, 0.06467966735363007], "reduce_n3_p1": [0.025034049525856972, 0.8562045097351074, 0.014021745882928371, 0.02777545154094696, 0.01768745295703411, 0.01336079090833664, 0.021614709869027138], "reduce_n3_p2": [0.024432562291622162, 0.0755486711859703, 0.056619103997945786, 0.040028564631938934, 0.1381387859582901, 0.10021901875734329, 0.10449836403131485], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.005675198510289192, 0.9567154049873352, 0.01144165638834238, 0.003741919994354248, 0.006170300766825676, 0.006091578863561153, 0.00611514039337635], "normal_n2_p1": [0.08490321785211563, 0.1273333579301834, 0.06465772539377213, 0.47093161940574646, 0.040369194000959396, 0.028084751218557358, 0.0983366072177887], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04728277400135994, 0.03158102557063103, 0.05657823383808136, 0.22728750109672546, 0.048910703510046005, 0.27514392137527466, 0.0703490823507309], "normal_n3_p1": [0.01116939913481474, 0.009695576503872871, 0.0087667778134346, 0.9087597131729126, 0.018730025738477707, 0.019266018643975258, 0.011784675531089306], "normal_n3_p2": [0.014190750196576118, 0.013617982156574726, 0.012165017426013947, 0.017325391992926598, 0.016159243881702423, 0.8925093412399292, 0.01241651363670826], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.011394054628908634, 0.018359903246164322, 0.38415566086769104, 0.018269041553139687, 0.12716922163963318, 0.010922416113317013, 0.0145201925188303], "reduce_n2_p1": [0.09320639818906784, 0.08097559213638306, 0.05566885322332382, 0.44459736347198486, 0.053729720413684845, 0.1503240019083023, 0.04943829029798508], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0456501767039299, 0.20598748326301575, 0.042560189962387085, 0.06326625496149063, 0.3574393093585968, 0.05067625641822815, 0.06467966735363007], "reduce_n3_p1": [0.025034049525856972, 0.8562045097351074, 0.014021745882928371, 0.02777545154094696, 0.01768745295703411, 0.01336079090833664, 0.021614709869027138], "reduce_n3_p2": [0.024432562291622162, 0.0755486711859703, 0.056619103997945786, 0.040028564631938934, 0.1381387859582901, 0.10021901875734329, 0.10449836403131485], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.00860510766506195, 0.9317945241928101, 0.015737708657979965, 0.007487350609153509, 0.007555608171969652, 0.01024088729172945, 0.007959016598761082], "normal_n2_p1": [0.2077629417181015, 0.3198640048503876, 0.05649189651012421, 0.1563236117362976, 0.04151644557714462, 0.032901618629693985, 0.10882523655891418], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02668984979391098, 0.014782887883484364, 0.03899231180548668, 0.11048952490091324, 0.026809291914105415, 0.684522271156311, 0.06014459207653999], "normal_n3_p1": [0.012768033891916275, 0.011374403722584248, 0.011022479273378849, 0.9025030732154846, 0.021209271624684334, 0.014281919226050377, 0.012429242953658104], "normal_n3_p2": [0.01508814562112093, 0.01602553017437458, 0.014752937480807304, 0.019342493265867233, 0.01638045534491539, 0.8947205543518066, 0.011432074941694736], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.004827322904020548, 0.006437292788177729, 0.2052038162946701, 0.009419908747076988, 0.014006776735186577, 0.003398733213543892, 0.006872151046991348], "reduce_n2_p1": [0.02858009934425354, 0.02851446159183979, 0.017532862722873688, 0.7699220776557922, 0.044057272374629974, 0.05425393953919411, 0.027986403554677963], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.05796990171074867, 0.3081129789352417, 0.0424821674823761, 0.07877383381128311, 0.08475249260663986, 0.018326537683606148, 0.09485206007957458], "reduce_n3_p1": [0.018954219296574593, 0.9175029993057251, 0.011752658523619175, 0.01150136161595583, 0.011293074116110802, 0.005107754375785589, 0.015859493985772133], "reduce_n3_p2": [0.02134666219353676, 0.061584483832120895, 0.03723491355776787, 0.03767186030745506, 0.11999857425689697, 0.182184100151062, 0.036793697625398636], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.00860510766506195, 0.9317945241928101, 0.015737708657979965, 0.007487350609153509, 0.007555608171969652, 0.01024088729172945, 0.007959016598761082], "normal_n2_p1": [0.2077629417181015, 0.3198640048503876, 0.05649189651012421, 0.1563236117362976, 0.04151644557714462, 0.032901618629693985, 0.10882523655891418], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02668984979391098, 0.014782887883484364, 0.03899231180548668, 0.11048952490091324, 0.026809291914105415, 0.684522271156311, 0.06014459207653999], "normal_n3_p1": [0.012768033891916275, 0.011374403722584248, 0.011022479273378849, 0.9025030732154846, 0.021209271624684334, 0.014281919226050377, 0.012429242953658104], "normal_n3_p2": [0.01508814562112093, 0.01602553017437458, 0.014752937480807304, 0.019342493265867233, 0.01638045534491539, 0.8947205543518066, 0.011432074941694736], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.004827322904020548, 0.006437292788177729, 0.2052038162946701, 0.009419908747076988, 0.014006776735186577, 0.003398733213543892, 0.006872151046991348], "reduce_n2_p1": [0.02858009934425354, 0.02851446159183979, 0.017532862722873688, 0.7699220776557922, 0.044057272374629974, 0.05425393953919411, 0.027986403554677963], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.05796990171074867, 0.3081129789352417, 0.0424821674823761, 0.07877383381128311, 0.08475249260663986, 0.018326537683606148, 0.09485206007957458], "reduce_n3_p1": [0.018954219296574593, 0.9175029993057251, 0.011752658523619175, 0.01150136161595583, 0.011293074116110802, 0.005107754375785589, 0.015859493985772133], "reduce_n3_p2": [0.02134666219353676, 0.061584483832120895, 0.03723491355776787, 0.03767186030745506, 0.11999857425689697, 0.182184100151062, 0.036793697625398636], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013356504961848259, 0.8900084495544434, 0.021526657044887543, 0.014563308097422123, 0.011064666323363781, 0.016418281942605972, 0.011699061840772629], "normal_n2_p1": [0.38630709052085876, 0.5304816365242004, 0.018808886408805847, 0.02250763028860092, 0.005568286869674921, 0.009542996995151043, 0.013542048633098602], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03393420949578285, 0.020445842295885086, 0.04913037642836571, 0.05700289458036423, 0.039984289556741714, 0.4454256296157837, 0.32315218448638916], "normal_n3_p1": [0.01908304914832115, 0.019600974395871162, 0.020891498774290085, 0.873924970626831, 0.029730040580034256, 0.009221670217812061, 0.00860051903873682], "normal_n3_p2": [0.021944453939795494, 0.029024949297308922, 0.030136533081531525, 0.028274329379200935, 0.02416476421058178, 0.8296017050743103, 0.018777694553136826], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0021126908250153065, 0.002230127342045307, 0.02386264130473137, 0.004147083032876253, 0.0022939154878258705, 0.001157888094894588, 0.0029062798712402582], "reduce_n2_p1": [0.05952715873718262, 0.06647902727127075, 0.029763415455818176, 0.2985260784626007, 0.19954408705234528, 0.1560174822807312, 0.08028043806552887], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04761269688606262, 0.18466304242610931, 0.022339969873428345, 0.11112973839044571, 0.07223550230264664, 0.011041541583836079, 0.06295851618051529], "reduce_n3_p1": [0.029180848971009254, 0.8905729055404663, 0.017102645710110664, 0.013742280192673206, 0.01273839920759201, 0.006484494544565678, 0.02134060487151146], "reduce_n3_p2": [0.05557499825954437, 0.10679814219474792, 0.050291743129491806, 0.06754948943853378, 0.3480321168899536, 0.17629142105579376, 0.023345986381173134], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013356504961848259, 0.8900084495544434, 0.021526657044887543, 0.014563308097422123, 0.011064666323363781, 0.016418281942605972, 0.011699061840772629], "normal_n2_p1": [0.38630709052085876, 0.5304816365242004, 0.018808886408805847, 0.02250763028860092, 0.005568286869674921, 0.009542996995151043, 0.013542048633098602], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03393420949578285, 0.020445842295885086, 0.04913037642836571, 0.05700289458036423, 0.039984289556741714, 0.4454256296157837, 0.32315218448638916], "normal_n3_p1": [0.01908304914832115, 0.019600974395871162, 0.020891498774290085, 0.873924970626831, 0.029730040580034256, 0.009221670217812061, 0.00860051903873682], "normal_n3_p2": [0.021944453939795494, 0.029024949297308922, 0.030136533081531525, 0.028274329379200935, 0.02416476421058178, 0.8296017050743103, 0.018777694553136826], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0021126908250153065, 0.002230127342045307, 0.02386264130473137, 0.004147083032876253, 0.0022939154878258705, 0.001157888094894588, 0.0029062798712402582], "reduce_n2_p1": [0.05952715873718262, 0.06647902727127075, 0.029763415455818176, 0.2985260784626007, 0.19954408705234528, 0.1560174822807312, 0.08028043806552887], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04761269688606262, 0.18466304242610931, 0.022339969873428345, 0.11112973839044571, 0.07223550230264664, 0.011041541583836079, 0.06295851618051529], "reduce_n3_p1": [0.029180848971009254, 0.8905729055404663, 0.017102645710110664, 0.013742280192673206, 0.01273839920759201, 0.006484494544565678, 0.02134060487151146], "reduce_n3_p2": [0.05557499825954437, 0.10679814219474792, 0.050291743129491806, 0.06754948943853378, 0.3480321168899536, 0.17629142105579376, 0.023345986381173134], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.015425534918904305, 0.8973783254623413, 0.02075340785086155, 0.013222514651715755, 0.013218902051448822, 0.012139038182795048, 0.013686856254935265], "normal_n2_p1": [0.308268666267395, 0.6046999096870422, 0.020609987899661064, 0.018632061779499054, 0.005898996256291866, 0.01664080284535885, 0.011070110835134983], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.044662512838840485, 0.035746365785598755, 0.05708896368741989, 0.09601055085659027, 0.0732080489397049, 0.43243491649627686, 0.216054305434227], "normal_n3_p1": [0.029967069625854492, 0.03336567059159279, 0.04101521149277687, 0.8066446781158447, 0.042684949934482574, 0.010921387933194637, 0.009888689033687115], "normal_n3_p2": [0.02212243527173996, 0.026508724316954613, 0.02419285848736763, 0.02901921048760414, 0.02421727031469345, 0.8423386216163635, 0.01667027361690998], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.006516385357826948, 0.00577898183837533, 0.03425784781575203, 0.011094735004007816, 0.0038127789739519358, 0.002906141337007284, 0.007627129089087248], "reduce_n2_p1": [0.013183340430259705, 0.020953034982085228, 0.010271002538502216, 0.018184103071689606, 0.5089437365531921, 0.23073768615722656, 0.06898889690637589], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0361730121076107, 0.2890087068080902, 0.008046101778745651, 0.04571584239602089, 0.055864542722702026, 0.008634405210614204, 0.05124799907207489], "reduce_n3_p1": [0.023619478568434715, 0.8833571672439575, 0.025053754448890686, 0.013875466771423817, 0.013051524758338928, 0.0076779574155807495, 0.02066810615360737], "reduce_n3_p2": [0.08311193436384201, 0.2702377438545227, 0.07252400368452072, 0.2280668467283249, 0.09113972634077072, 0.027874886989593506, 0.026248853653669357], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.015425534918904305, 0.8973783254623413, 0.02075340785086155, 0.013222514651715755, 0.013218902051448822, 0.012139038182795048, 0.013686856254935265], "normal_n2_p1": [0.308268666267395, 0.6046999096870422, 0.020609987899661064, 0.018632061779499054, 0.005898996256291866, 0.01664080284535885, 0.011070110835134983], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.044662512838840485, 0.035746365785598755, 0.05708896368741989, 0.09601055085659027, 0.0732080489397049, 0.43243491649627686, 0.216054305434227], "normal_n3_p1": [0.029967069625854492, 0.03336567059159279, 0.04101521149277687, 0.8066446781158447, 0.042684949934482574, 0.010921387933194637, 0.009888689033687115], "normal_n3_p2": [0.02212243527173996, 0.026508724316954613, 0.02419285848736763, 0.02901921048760414, 0.02421727031469345, 0.8423386216163635, 0.01667027361690998], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.006516385357826948, 0.00577898183837533, 0.03425784781575203, 0.011094735004007816, 0.0038127789739519358, 0.002906141337007284, 0.007627129089087248], "reduce_n2_p1": [0.013183340430259705, 0.020953034982085228, 0.010271002538502216, 0.018184103071689606, 0.5089437365531921, 0.23073768615722656, 0.06898889690637589], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0361730121076107, 0.2890087068080902, 0.008046101778745651, 0.04571584239602089, 0.055864542722702026, 0.008634405210614204, 0.05124799907207489], "reduce_n3_p1": [0.023619478568434715, 0.8833571672439575, 0.025053754448890686, 0.013875466771423817, 0.013051524758338928, 0.0076779574155807495, 0.02066810615360737], "reduce_n3_p2": [0.08311193436384201, 0.2702377438545227, 0.07252400368452072, 0.2280668467283249, 0.09113972634077072, 0.027874886989593506, 0.026248853653669357], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.015988970175385475, 0.9142967462539673, 0.01579754799604416, 0.010834806598722935, 0.01185762882232666, 0.009404671378433704, 0.013857697136700153], "normal_n2_p1": [0.29327821731567383, 0.4943665862083435, 0.03972960636019707, 0.03507404774427414, 0.015586748719215393, 0.06581810116767883, 0.020335795357823372], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.017639964818954468, 0.016513563692569733, 0.020111888647079468, 0.08068135380744934, 0.05720304325222969, 0.7150781154632568, 0.06796489655971527], "normal_n3_p1": [0.044106870889663696, 0.05362521484494209, 0.08126512914896011, 0.6878632307052612, 0.05902921408414841, 0.02283540926873684, 0.017675183713436127], "normal_n3_p2": [0.012746430933475494, 0.011270645074546337, 0.01024666614830494, 0.01703673042356968, 0.015676815062761307, 0.9093683958053589, 0.012499695643782616], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0342666357755661, 0.02742839604616165, 0.12396371364593506, 0.04889703169465065, 0.014000749215483665, 0.012568546459078789, 0.033604878932237625], "reduce_n2_p1": [0.006587727461010218, 0.01858467422425747, 0.006465396843850613, 0.00370782520622015, 0.6961159706115723, 0.11438589543104172, 0.09274197369813919], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010834958404302597, 0.09139209240674973, 0.004843348637223244, 0.018841931596398354, 0.021180428564548492, 0.007562999613583088, 0.03390514850616455], "reduce_n3_p1": [0.012693524360656738, 0.9299228191375732, 0.010058539919555187, 0.006893366575241089, 0.00876931194216013, 0.006910576019436121, 0.01308514829725027], "reduce_n3_p2": [0.0074393595568835735, 0.022220062091946602, 0.03834041580557823, 0.6155036687850952, 0.04254442825913429, 0.00594601035118103, 0.017400402575731277], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.015988970175385475, 0.9142967462539673, 0.01579754799604416, 0.010834806598722935, 0.01185762882232666, 0.009404671378433704, 0.013857697136700153], "normal_n2_p1": [0.29327821731567383, 0.4943665862083435, 0.03972960636019707, 0.03507404774427414, 0.015586748719215393, 0.06581810116767883, 0.020335795357823372], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.017639964818954468, 0.016513563692569733, 0.020111888647079468, 0.08068135380744934, 0.05720304325222969, 0.7150781154632568, 0.06796489655971527], "normal_n3_p1": [0.044106870889663696, 0.05362521484494209, 0.08126512914896011, 0.6878632307052612, 0.05902921408414841, 0.02283540926873684, 0.017675183713436127], "normal_n3_p2": [0.012746430933475494, 0.011270645074546337, 0.01024666614830494, 0.01703673042356968, 0.015676815062761307, 0.9093683958053589, 0.012499695643782616], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0342666357755661, 0.02742839604616165, 0.12396371364593506, 0.04889703169465065, 0.014000749215483665, 0.012568546459078789, 0.033604878932237625], "reduce_n2_p1": [0.006587727461010218, 0.01858467422425747, 0.006465396843850613, 0.00370782520622015, 0.6961159706115723, 0.11438589543104172, 0.09274197369813919], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010834958404302597, 0.09139209240674973, 0.004843348637223244, 0.018841931596398354, 0.021180428564548492, 0.007562999613583088, 0.03390514850616455], "reduce_n3_p1": [0.012693524360656738, 0.9299228191375732, 0.010058539919555187, 0.006893366575241089, 0.00876931194216013, 0.006910576019436121, 0.01308514829725027], "reduce_n3_p2": [0.0074393595568835735, 0.022220062091946602, 0.03834041580557823, 0.6155036687850952, 0.04254442825913429, 0.00594601035118103, 0.017400402575731277], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013132094405591488, 0.9322366118431091, 0.012690501287579536, 0.006223438773304224, 0.009426193311810493, 0.006876412313431501, 0.01283427607268095], "normal_n2_p1": [0.06942044943571091, 0.7826476693153381, 0.03651074320077896, 0.026171492412686348, 0.013404157012701035, 0.033632125705480576, 0.015385407023131847], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.023895934224128723, 0.02276202104985714, 0.0224995706230402, 0.16436715424060822, 0.11255737394094467, 0.3730063736438751, 0.2374357432126999], "normal_n3_p1": [0.04841681569814682, 0.04720066487789154, 0.052225399762392044, 0.6227271556854248, 0.08899399638175964, 0.058885060250759125, 0.03236759826540947], "normal_n3_p2": [0.009451444260776043, 0.006798438727855682, 0.006326628383249044, 0.015115144662559032, 0.014098292216658592, 0.9191247224807739, 0.013658598065376282], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05643342807888985, 0.058673761785030365, 0.3339708745479584, 0.04884346202015877, 0.030532699078321457, 0.027241624891757965, 0.054708968847990036], "reduce_n2_p1": [0.007231054827570915, 0.020077306777238846, 0.007731197401881218, 0.0025665131397545338, 0.661553144454956, 0.21900500357151031, 0.04664888232946396], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.021336166188120842, 0.1870313584804535, 0.014997588470578194, 0.031728263944387436, 0.03737163543701172, 0.025200026109814644, 0.06966442614793777], "reduce_n3_p1": [0.017416786402463913, 0.8813339471817017, 0.01867583952844143, 0.012548279948532581, 0.015926063060760498, 0.01789993606507778, 0.015124167315661907], "reduce_n3_p2": [0.0032837274484336376, 0.007867545820772648, 0.04721629619598389, 0.17709565162658691, 0.032851286232471466, 0.0040536909364163876, 0.021569162607192993], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013132094405591488, 0.9322366118431091, 0.012690501287579536, 0.006223438773304224, 0.009426193311810493, 0.006876412313431501, 0.01283427607268095], "normal_n2_p1": [0.06942044943571091, 0.7826476693153381, 0.03651074320077896, 0.026171492412686348, 0.013404157012701035, 0.033632125705480576, 0.015385407023131847], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.023895934224128723, 0.02276202104985714, 0.0224995706230402, 0.16436715424060822, 0.11255737394094467, 0.3730063736438751, 0.2374357432126999], "normal_n3_p1": [0.04841681569814682, 0.04720066487789154, 0.052225399762392044, 0.6227271556854248, 0.08899399638175964, 0.058885060250759125, 0.03236759826540947], "normal_n3_p2": [0.009451444260776043, 0.006798438727855682, 0.006326628383249044, 0.015115144662559032, 0.014098292216658592, 0.9191247224807739, 0.013658598065376282], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05643342807888985, 0.058673761785030365, 0.3339708745479584, 0.04884346202015877, 0.030532699078321457, 0.027241624891757965, 0.054708968847990036], "reduce_n2_p1": [0.007231054827570915, 0.020077306777238846, 0.007731197401881218, 0.0025665131397545338, 0.661553144454956, 0.21900500357151031, 0.04664888232946396], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.021336166188120842, 0.1870313584804535, 0.014997588470578194, 0.031728263944387436, 0.03737163543701172, 0.025200026109814644, 0.06966442614793777], "reduce_n3_p1": [0.017416786402463913, 0.8813339471817017, 0.01867583952844143, 0.012548279948532581, 0.015926063060760498, 0.01789993606507778, 0.015124167315661907], "reduce_n3_p2": [0.0032837274484336376, 0.007867545820772648, 0.04721629619598389, 0.17709565162658691, 0.032851286232471466, 0.0040536909364163876, 0.021569162607192993], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.011250653304159641, 0.9324945211410522, 0.011597678996622562, 0.005927244666963816, 0.00858101062476635, 0.007785084657371044, 0.013477236032485962], "normal_n2_p1": [0.013432648032903671, 0.9110732674598694, 0.021401723846793175, 0.013750839978456497, 0.0073221526108682156, 0.013613807037472725, 0.008888643234968185], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018468378111720085, 0.021467214450240135, 0.015654182061553, 0.01956608146429062, 0.08561578392982483, 0.20742559432983398, 0.6052306294441223], "normal_n3_p1": [0.07802026718854904, 0.07302394509315491, 0.07522828876972198, 0.4700409770011902, 0.17132927477359772, 0.04373559355735779, 0.026631753891706467], "normal_n3_p2": [0.011733908206224442, 0.009694702923297882, 0.01024235226213932, 0.018050484359264374, 0.01616206020116806, 0.9067564606666565, 0.012245235033333302], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01625010371208191, 0.029169324785470963, 0.8096568584442139, 0.014711902476847172, 0.023917393758893013, 0.01793753169476986, 0.02065790817141533], "reduce_n2_p1": [0.012653068639338017, 0.03164898231625557, 0.013944623060524464, 0.003519633086398244, 0.252081036567688, 0.5833946466445923, 0.05163469910621643], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02704131416976452, 0.20390038192272186, 0.02771472930908203, 0.03800194337964058, 0.0444524772465229, 0.03438488021492958, 0.02766888216137886], "reduce_n3_p1": [0.016117803752422333, 0.8722472786903381, 0.03911347687244415, 0.012771585024893284, 0.01646878384053707, 0.016169190406799316, 0.012288568541407585], "reduce_n3_p2": [0.004203966818749905, 0.007037641480565071, 0.06503840535879135, 0.15713098645210266, 0.035939767956733704, 0.006411292590200901, 0.04789258912205696], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.011250653304159641, 0.9324945211410522, 0.011597678996622562, 0.005927244666963816, 0.00858101062476635, 0.007785084657371044, 0.013477236032485962], "normal_n2_p1": [0.013432648032903671, 0.9110732674598694, 0.021401723846793175, 0.013750839978456497, 0.0073221526108682156, 0.013613807037472725, 0.008888643234968185], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018468378111720085, 0.021467214450240135, 0.015654182061553, 0.01956608146429062, 0.08561578392982483, 0.20742559432983398, 0.6052306294441223], "normal_n3_p1": [0.07802026718854904, 0.07302394509315491, 0.07522828876972198, 0.4700409770011902, 0.17132927477359772, 0.04373559355735779, 0.026631753891706467], "normal_n3_p2": [0.011733908206224442, 0.009694702923297882, 0.01024235226213932, 0.018050484359264374, 0.01616206020116806, 0.9067564606666565, 0.012245235033333302], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01625010371208191, 0.029169324785470963, 0.8096568584442139, 0.014711902476847172, 0.023917393758893013, 0.01793753169476986, 0.02065790817141533], "reduce_n2_p1": [0.012653068639338017, 0.03164898231625557, 0.013944623060524464, 0.003519633086398244, 0.252081036567688, 0.5833946466445923, 0.05163469910621643], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02704131416976452, 0.20390038192272186, 0.02771472930908203, 0.03800194337964058, 0.0444524772465229, 0.03438488021492958, 0.02766888216137886], "reduce_n3_p1": [0.016117803752422333, 0.8722472786903381, 0.03911347687244415, 0.012771585024893284, 0.01646878384053707, 0.016169190406799316, 0.012288568541407585], "reduce_n3_p2": [0.004203966818749905, 0.007037641480565071, 0.06503840535879135, 0.15713098645210266, 0.035939767956733704, 0.006411292590200901, 0.04789258912205696], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.010760916396975517, 0.9293328523635864, 0.01132201123982668, 0.007014945149421692, 0.008162357844412327, 0.009676369838416576, 0.012468955479562283], "normal_n2_p1": [0.011754537932574749, 0.8661316633224487, 0.030661754310131073, 0.021549899131059647, 0.013024134561419487, 0.023930953815579414, 0.015028240159153938], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03790459409356117, 0.0578475296497345, 0.029010871425271034, 0.015972372144460678, 0.12081793695688248, 0.35280555486679077, 0.33989831805229187], "normal_n3_p1": [0.13886624574661255, 0.1354886144399643, 0.17086480557918549, 0.315207839012146, 0.15331988036632538, 0.010374794714152813, 0.015367481857538223], "normal_n3_p2": [0.016641801223158836, 0.01761796325445175, 0.019645076245069504, 0.018726356327533722, 0.017711181193590164, 0.8870437741279602, 0.01294702384620905], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02656729705631733, 0.053290147334337234, 0.7143145799636841, 0.017536375671625137, 0.05073254182934761, 0.03236100822687149, 0.03274061158299446], "reduce_n2_p1": [0.015458096750080585, 0.017179176211357117, 0.01754368282854557, 0.004548594355583191, 0.2165515422821045, 0.6094562411308289, 0.05782109498977661], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.05101895332336426, 0.6823714971542358, 0.019841426983475685, 0.04368479922413826, 0.0315830260515213, 0.051083583384752274, 0.016847344115376472], "reduce_n3_p1": [0.017146341502666473, 0.8959811329841614, 0.011005583219230175, 0.013777264393866062, 0.022640326991677284, 0.01286983024328947, 0.013665043748915195], "reduce_n3_p2": [0.01068527065217495, 0.011818901635706425, 0.19702813029289246, 0.13280461728572845, 0.06228271499276161, 0.015638846904039383, 0.11110691726207733], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.010760916396975517, 0.9293328523635864, 0.01132201123982668, 0.007014945149421692, 0.008162357844412327, 0.009676369838416576, 0.012468955479562283], "normal_n2_p1": [0.011754537932574749, 0.8661316633224487, 0.030661754310131073, 0.021549899131059647, 0.013024134561419487, 0.023930953815579414, 0.015028240159153938], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03790459409356117, 0.0578475296497345, 0.029010871425271034, 0.015972372144460678, 0.12081793695688248, 0.35280555486679077, 0.33989831805229187], "normal_n3_p1": [0.13886624574661255, 0.1354886144399643, 0.17086480557918549, 0.315207839012146, 0.15331988036632538, 0.010374794714152813, 0.015367481857538223], "normal_n3_p2": [0.016641801223158836, 0.01761796325445175, 0.019645076245069504, 0.018726356327533722, 0.017711181193590164, 0.8870437741279602, 0.01294702384620905], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02656729705631733, 0.053290147334337234, 0.7143145799636841, 0.017536375671625137, 0.05073254182934761, 0.03236100822687149, 0.03274061158299446], "reduce_n2_p1": [0.015458096750080585, 0.017179176211357117, 0.01754368282854557, 0.004548594355583191, 0.2165515422821045, 0.6094562411308289, 0.05782109498977661], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.05101895332336426, 0.6823714971542358, 0.019841426983475685, 0.04368479922413826, 0.0315830260515213, 0.051083583384752274, 0.016847344115376472], "reduce_n3_p1": [0.017146341502666473, 0.8959811329841614, 0.011005583219230175, 0.013777264393866062, 0.022640326991677284, 0.01286983024328947, 0.013665043748915195], "reduce_n3_p2": [0.01068527065217495, 0.011818901635706425, 0.19702813029289246, 0.13280461728572845, 0.06228271499276161, 0.015638846904039383, 0.11110691726207733], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013217831961810589, 0.9202286005020142, 0.013067315332591534, 0.008685905486345291, 0.009381292387843132, 0.011334240436553955, 0.01164485514163971], "normal_n2_p1": [0.01692516915500164, 0.7801993489265442, 0.04626323655247688, 0.037155408412218094, 0.021344240754842758, 0.03693953901529312, 0.028759310021996498], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06057729944586754, 0.15395177900791168, 0.03568710386753082, 0.012150739319622517, 0.06183282658457756, 0.597429633140564, 0.04165992513298988], "normal_n3_p1": [0.1604604423046112, 0.04732392728328705, 0.058506645262241364, 0.3851318955421448, 0.27333736419677734, 0.006536885164678097, 0.015915464609861374], "normal_n3_p2": [0.025956066325306892, 0.03215218707919121, 0.02930445224046707, 0.026865623891353607, 0.021607600152492523, 0.8332356810569763, 0.01858292892575264], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02297515980899334, 0.03383731469511986, 0.6761305332183838, 0.022751105949282646, 0.0642072930932045, 0.04561848193407059, 0.05457543581724167], "reduce_n2_p1": [0.00932848546653986, 0.0060040634125471115, 0.012045500800013542, 0.0038245031610131264, 0.09471719712018967, 0.8338273763656616, 0.02401205152273178], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.10582485049962997, 0.4726928770542145, 0.029803331941366196, 0.08031446486711502, 0.049289025366306305, 0.15686339139938354, 0.02663516439497471], "reduce_n3_p1": [0.02477121539413929, 0.8524771332740784, 0.008540777489542961, 0.021404869854450226, 0.034119196236133575, 0.015895942226052284, 0.019900217652320862], "reduce_n3_p2": [0.019429055973887444, 0.014468039385974407, 0.41589128971099854, 0.10247109085321426, 0.06044508516788483, 0.024961179122328758, 0.02932995744049549], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013217831961810589, 0.9202286005020142, 0.013067315332591534, 0.008685905486345291, 0.009381292387843132, 0.011334240436553955, 0.01164485514163971], "normal_n2_p1": [0.01692516915500164, 0.7801993489265442, 0.04626323655247688, 0.037155408412218094, 0.021344240754842758, 0.03693953901529312, 0.028759310021996498], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06057729944586754, 0.15395177900791168, 0.03568710386753082, 0.012150739319622517, 0.06183282658457756, 0.597429633140564, 0.04165992513298988], "normal_n3_p1": [0.1604604423046112, 0.04732392728328705, 0.058506645262241364, 0.3851318955421448, 0.27333736419677734, 0.006536885164678097, 0.015915464609861374], "normal_n3_p2": [0.025956066325306892, 0.03215218707919121, 0.02930445224046707, 0.026865623891353607, 0.021607600152492523, 0.8332356810569763, 0.01858292892575264], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02297515980899334, 0.03383731469511986, 0.6761305332183838, 0.022751105949282646, 0.0642072930932045, 0.04561848193407059, 0.05457543581724167], "reduce_n2_p1": [0.00932848546653986, 0.0060040634125471115, 0.012045500800013542, 0.0038245031610131264, 0.09471719712018967, 0.8338273763656616, 0.02401205152273178], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.10582485049962997, 0.4726928770542145, 0.029803331941366196, 0.08031446486711502, 0.049289025366306305, 0.15686339139938354, 0.02663516439497471], "reduce_n3_p1": [0.02477121539413929, 0.8524771332740784, 0.008540777489542961, 0.021404869854450226, 0.034119196236133575, 0.015895942226052284, 0.019900217652320862], "reduce_n3_p2": [0.019429055973887444, 0.014468039385974407, 0.41589128971099854, 0.10247109085321426, 0.06044508516788483, 0.024961179122328758, 0.02932995744049549], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.015693578869104385, 0.9116827249526978, 0.014997750520706177, 0.010738288052380085, 0.010063123889267445, 0.012717783451080322, 0.011653300374746323], "normal_n2_p1": [0.030326711013913155, 0.5044147968292236, 0.06866536289453506, 0.07562252879142761, 0.04531437158584595, 0.12961719930171967, 0.06918727606534958], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02487272396683693, 0.022328175604343414, 0.01968448795378208, 0.009015687741339207, 0.028746476396918297, 0.8582716584205627, 0.01166525948792696], "normal_n3_p1": [0.2131468653678894, 0.03294267877936363, 0.050873979926109314, 0.5677975416183472, 0.06528736650943756, 0.009157265536487103, 0.023391462862491608], "normal_n3_p2": [0.01465253159403801, 0.011952131986618042, 0.009945441037416458, 0.018504856154322624, 0.01402331329882145, 0.9105350971221924, 0.009877507574856281], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04797951132059097, 0.05365844443440437, 0.23831231892108917, 0.05168851092457771, 0.14076519012451172, 0.10297372192144394, 0.14252778887748718], "reduce_n2_p1": [0.007783403620123863, 0.004803946707397699, 0.010953854769468307, 0.004274938255548477, 0.062171149998903275, 0.8847654461860657, 0.016135109588503838], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06337592750787735, 0.4861408770084381, 0.048209164291620255, 0.15212436020374298, 0.07872477918863297, 0.08218991756439209, 0.029578931629657745], "reduce_n3_p1": [0.05110421031713486, 0.6143299341201782, 0.03321462497115135, 0.04580249637365341, 0.09675468504428864, 0.04654951021075249, 0.06732437759637833], "reduce_n3_p2": [0.03155190497636795, 0.019976958632469177, 0.47311460971832275, 0.08945466578006744, 0.05411457642912865, 0.03858828544616699, 0.021303953602910042], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.015693578869104385, 0.9116827249526978, 0.014997750520706177, 0.010738288052380085, 0.010063123889267445, 0.012717783451080322, 0.011653300374746323], "normal_n2_p1": [0.030326711013913155, 0.5044147968292236, 0.06866536289453506, 0.07562252879142761, 0.04531437158584595, 0.12961719930171967, 0.06918727606534958], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02487272396683693, 0.022328175604343414, 0.01968448795378208, 0.009015687741339207, 0.028746476396918297, 0.8582716584205627, 0.01166525948792696], "normal_n3_p1": [0.2131468653678894, 0.03294267877936363, 0.050873979926109314, 0.5677975416183472, 0.06528736650943756, 0.009157265536487103, 0.023391462862491608], "normal_n3_p2": [0.01465253159403801, 0.011952131986618042, 0.009945441037416458, 0.018504856154322624, 0.01402331329882145, 0.9105350971221924, 0.009877507574856281], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04797951132059097, 0.05365844443440437, 0.23831231892108917, 0.05168851092457771, 0.14076519012451172, 0.10297372192144394, 0.14252778887748718], "reduce_n2_p1": [0.007783403620123863, 0.004803946707397699, 0.010953854769468307, 0.004274938255548477, 0.062171149998903275, 0.8847654461860657, 0.016135109588503838], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06337592750787735, 0.4861408770084381, 0.048209164291620255, 0.15212436020374298, 0.07872477918863297, 0.08218991756439209, 0.029578931629657745], "reduce_n3_p1": [0.05110421031713486, 0.6143299341201782, 0.03321462497115135, 0.04580249637365341, 0.09675468504428864, 0.04654951021075249, 0.06732437759637833], "reduce_n3_p2": [0.03155190497636795, 0.019976958632469177, 0.47311460971832275, 0.08945466578006744, 0.05411457642912865, 0.03858828544616699, 0.021303953602910042], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.025325192138552666, 0.8822702765464783, 0.01884574629366398, 0.014847340993583202, 0.01309574767947197, 0.01874684728682041, 0.01203314308077097], "normal_n2_p1": [0.03592926636338234, 0.6946585774421692, 0.06371936202049255, 0.0450911708176136, 0.02152797393500805, 0.06676038354635239, 0.026169108226895332], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0556224025785923, 0.026367371901869774, 0.04596879705786705, 0.028852324932813644, 0.06509465724229813, 0.6876174211502075, 0.018488695845007896], "normal_n3_p1": [0.29612788558006287, 0.029336385428905487, 0.052175480872392654, 0.42969459295272827, 0.03966519981622696, 0.02730449289083481, 0.08428581058979034], "normal_n3_p2": [0.01121682208031416, 0.008223187178373337, 0.007694522384554148, 0.01740243285894394, 0.01036984845995903, 0.9225184917449951, 0.008008957840502262], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.22297260165214539, 0.09448257833719254, 0.32585573196411133, 0.0209103561937809, 0.025896649807691574, 0.11738113313913345, 0.030748825520277023], "reduce_n2_p1": [0.009503240697085857, 0.006712905131280422, 0.013039941899478436, 0.005369407124817371, 0.03757969290018082, 0.9028348922729492, 0.014813149347901344], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022011497989296913, 0.17294929921627045, 0.1908491849899292, 0.08605177700519562, 0.2160232663154602, 0.2188107669353485, 0.04297950118780136], "reduce_n3_p1": [0.04978233948349953, 0.4249171316623688, 0.11009686440229416, 0.006843869108706713, 0.1416725069284439, 0.057627998292446136, 0.16957874596118927], "reduce_n3_p2": [0.03718538209795952, 0.021166447550058365, 0.6628457903862, 0.02809036150574684, 0.04762618988752365, 0.02161952294409275, 0.0177504513412714], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.025325192138552666, 0.8822702765464783, 0.01884574629366398, 0.014847340993583202, 0.01309574767947197, 0.01874684728682041, 0.01203314308077097], "normal_n2_p1": [0.03592926636338234, 0.6946585774421692, 0.06371936202049255, 0.0450911708176136, 0.02152797393500805, 0.06676038354635239, 0.026169108226895332], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0556224025785923, 0.026367371901869774, 0.04596879705786705, 0.028852324932813644, 0.06509465724229813, 0.6876174211502075, 0.018488695845007896], "normal_n3_p1": [0.29612788558006287, 0.029336385428905487, 0.052175480872392654, 0.42969459295272827, 0.03966519981622696, 0.02730449289083481, 0.08428581058979034], "normal_n3_p2": [0.01121682208031416, 0.008223187178373337, 0.007694522384554148, 0.01740243285894394, 0.01036984845995903, 0.9225184917449951, 0.008008957840502262], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.22297260165214539, 0.09448257833719254, 0.32585573196411133, 0.0209103561937809, 0.025896649807691574, 0.11738113313913345, 0.030748825520277023], "reduce_n2_p1": [0.009503240697085857, 0.006712905131280422, 0.013039941899478436, 0.005369407124817371, 0.03757969290018082, 0.9028348922729492, 0.014813149347901344], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022011497989296913, 0.17294929921627045, 0.1908491849899292, 0.08605177700519562, 0.2160232663154602, 0.2188107669353485, 0.04297950118780136], "reduce_n3_p1": [0.04978233948349953, 0.4249171316623688, 0.11009686440229416, 0.006843869108706713, 0.1416725069284439, 0.057627998292446136, 0.16957874596118927], "reduce_n3_p2": [0.03718538209795952, 0.021166447550058365, 0.6628457903862, 0.02809036150574684, 0.04762618988752365, 0.02161952294409275, 0.0177504513412714], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04488585516810417, 0.7469443678855896, 0.031851042062044144, 0.04108964651823044, 0.025049259886145592, 0.0456789992749691, 0.01651906780898571], "normal_n2_p1": [0.016954729333519936, 0.9156635403633118, 0.032994359731674194, 0.011442131362855434, 0.004468764644116163, 0.004569109529256821, 0.005486946552991867], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.21725775301456451, 0.052159640938043594, 0.12895795702934265, 0.07009351253509521, 0.16672828793525696, 0.09898374229669571, 0.02718978561460972], "normal_n3_p1": [0.1486072838306427, 0.01790427230298519, 0.030992329120635986, 0.12812162935733795, 0.027464935556054115, 0.0623602569103241, 0.5533914566040039], "normal_n3_p2": [0.012778913602232933, 0.010868661105632782, 0.011727888137102127, 0.01869586855173111, 0.010585341602563858, 0.9119484424591064, 0.008441824465990067], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.18564745783805847, 0.13976401090621948, 0.4469563961029053, 0.016056055203080177, 0.009472628124058247, 0.08108711987733841, 0.01339989248663187], "reduce_n2_p1": [0.017208334058523178, 0.016892725601792336, 0.017375342547893524, 0.007797479163855314, 0.026800818741321564, 0.875923216342926, 0.02014688029885292], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0082836439833045, 0.058166950941085815, 0.6779476404190063, 0.01181226596236229, 0.13271844387054443, 0.05643937364220619, 0.03693558648228645], "reduce_n3_p1": [0.027928119525313377, 0.16209858655929565, 0.4879702031612396, 0.0037968687247484922, 0.014324805699288845, 0.043737396597862244, 0.18862773478031158], "reduce_n3_p2": [0.07121006399393082, 0.03946341201663017, 0.4639897346496582, 0.027606038376688957, 0.11540218442678452, 0.03294660523533821, 0.03587152436375618], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04488585516810417, 0.7469443678855896, 0.031851042062044144, 0.04108964651823044, 0.025049259886145592, 0.0456789992749691, 0.01651906780898571], "normal_n2_p1": [0.016954729333519936, 0.9156635403633118, 0.032994359731674194, 0.011442131362855434, 0.004468764644116163, 0.004569109529256821, 0.005486946552991867], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.21725775301456451, 0.052159640938043594, 0.12895795702934265, 0.07009351253509521, 0.16672828793525696, 0.09898374229669571, 0.02718978561460972], "normal_n3_p1": [0.1486072838306427, 0.01790427230298519, 0.030992329120635986, 0.12812162935733795, 0.027464935556054115, 0.0623602569103241, 0.5533914566040039], "normal_n3_p2": [0.012778913602232933, 0.010868661105632782, 0.011727888137102127, 0.01869586855173111, 0.010585341602563858, 0.9119484424591064, 0.008441824465990067], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.18564745783805847, 0.13976401090621948, 0.4469563961029053, 0.016056055203080177, 0.009472628124058247, 0.08108711987733841, 0.01339989248663187], "reduce_n2_p1": [0.017208334058523178, 0.016892725601792336, 0.017375342547893524, 0.007797479163855314, 0.026800818741321564, 0.875923216342926, 0.02014688029885292], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0082836439833045, 0.058166950941085815, 0.6779476404190063, 0.01181226596236229, 0.13271844387054443, 0.05643937364220619, 0.03693558648228645], "reduce_n3_p1": [0.027928119525313377, 0.16209858655929565, 0.4879702031612396, 0.0037968687247484922, 0.014324805699288845, 0.043737396597862244, 0.18862773478031158], "reduce_n3_p2": [0.07121006399393082, 0.03946341201663017, 0.4639897346496582, 0.027606038376688957, 0.11540218442678452, 0.03294660523533821, 0.03587152436375618], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05533059313893318, 0.541637122631073, 0.04813936725258827, 0.07030106335878372, 0.04686497151851654, 0.05018800497055054, 0.026445958763360977], "normal_n2_p1": [0.012281624600291252, 0.9455745816230774, 0.021739106625318527, 0.007314558140933514, 0.0030599383171647787, 0.0017059575766324997, 0.003233714960515499], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028769580647349358, 0.011521020904183388, 0.021997544914484024, 0.09798844158649445, 0.24600596725940704, 0.015980230644345284, 0.017338590696454048], "normal_n3_p1": [0.7234734892845154, 0.019271252676844597, 0.04125141352415085, 0.10376477241516113, 0.022142313420772552, 0.021026883274316788, 0.04843810945749283], "normal_n3_p2": [0.020178409293293953, 0.019372858107089996, 0.022145632654428482, 0.02058563195168972, 0.01327431108802557, 0.8778346180915833, 0.011386130005121231], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.37998005747795105, 0.4260638654232025, 0.11451250314712524, 0.01249858271330595, 0.003771394956856966, 0.024176230654120445, 0.0051402742974460125], "reduce_n2_p1": [0.02128780446946621, 0.028078541159629822, 0.02189415693283081, 0.009788562543690205, 0.01773448847234249, 0.8609951734542847, 0.018013495951890945], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.019269151613116264, 0.17506256699562073, 0.08110878616571426, 0.007847718894481659, 0.5142121911048889, 0.04389311000704765, 0.13840292394161224], "reduce_n3_p1": [0.04384783282876015, 0.6855139136314392, 0.08151170611381531, 0.004776666406542063, 0.0033939979039132595, 0.1374807357788086, 0.034273505210876465], "reduce_n3_p2": [0.03223283216357231, 0.022142281755805016, 0.8874313235282898, 0.0069851260632276535, 0.016195151954889297, 0.00707274628803134, 0.010004919022321701], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05533059313893318, 0.541637122631073, 0.04813936725258827, 0.07030106335878372, 0.04686497151851654, 0.05018800497055054, 0.026445958763360977], "normal_n2_p1": [0.012281624600291252, 0.9455745816230774, 0.021739106625318527, 0.007314558140933514, 0.0030599383171647787, 0.0017059575766324997, 0.003233714960515499], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028769580647349358, 0.011521020904183388, 0.021997544914484024, 0.09798844158649445, 0.24600596725940704, 0.015980230644345284, 0.017338590696454048], "normal_n3_p1": [0.7234734892845154, 0.019271252676844597, 0.04125141352415085, 0.10376477241516113, 0.022142313420772552, 0.021026883274316788, 0.04843810945749283], "normal_n3_p2": [0.020178409293293953, 0.019372858107089996, 0.022145632654428482, 0.02058563195168972, 0.01327431108802557, 0.8778346180915833, 0.011386130005121231], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.37998005747795105, 0.4260638654232025, 0.11451250314712524, 0.01249858271330595, 0.003771394956856966, 0.024176230654120445, 0.0051402742974460125], "reduce_n2_p1": [0.02128780446946621, 0.028078541159629822, 0.02189415693283081, 0.009788562543690205, 0.01773448847234249, 0.8609951734542847, 0.018013495951890945], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.019269151613116264, 0.17506256699562073, 0.08110878616571426, 0.007847718894481659, 0.5142121911048889, 0.04389311000704765, 0.13840292394161224], "reduce_n3_p1": [0.04384783282876015, 0.6855139136314392, 0.08151170611381531, 0.004776666406542063, 0.0033939979039132595, 0.1374807357788086, 0.034273505210876465], "reduce_n3_p2": [0.03223283216357231, 0.022142281755805016, 0.8874313235282898, 0.0069851260632276535, 0.016195151954889297, 0.00707274628803134, 0.010004919022321701], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04057573899626732, 0.6741125583648682, 0.06002495437860489, 0.019012294709682465, 0.04945354536175728, 0.013405662961304188, 0.026033898815512657], "normal_n2_p1": [0.01203883346170187, 0.9498698115348816, 0.01750408671796322, 0.0064595481380820274, 0.0038153736386448145, 0.0017801066860556602, 0.0031998984050005674], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009330754168331623, 0.006078885402530432, 0.00902526080608368, 0.03981294855475426, 0.7275577783584595, 0.006855224724858999, 0.014746985398232937], "normal_n3_p1": [0.867461621761322, 0.013705947436392307, 0.03162790462374687, 0.04578958824276924, 0.013439333066344261, 0.008982752449810505, 0.00772762019187212], "normal_n3_p2": [0.016788262873888016, 0.01543398667126894, 0.017674922943115234, 0.015147040598094463, 0.013238493353128433, 0.9025819897651672, 0.008122315630316734], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.043709006160497665, 0.8832523822784424, 0.03699805960059166, 0.009131243452429771, 0.0019007106311619282, 0.009725009091198444, 0.0023868458811193705], "reduce_n2_p1": [0.06560749560594559, 0.2135947346687317, 0.048110634088516235, 0.021304195746779442, 0.028493648394942284, 0.5188091993331909, 0.031800612807273865], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0056062666699290276, 0.030097927898168564, 0.005879546049982309, 0.0018192266579717398, 0.8980598449707031, 0.013603053987026215, 0.039862316101789474], "reduce_n3_p1": [0.007851877249777317, 0.9853078126907349, 0.0013882964849472046, 0.0011141709983348846, 0.0003541265323292464, 0.0017733685672283173, 0.001517592929303646], "reduce_n3_p2": [0.03506845235824585, 0.026818150654435158, 0.8932493925094604, 0.006697352044284344, 0.010290821082890034, 0.007382750511169434, 0.010760216042399406], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04057573899626732, 0.6741125583648682, 0.06002495437860489, 0.019012294709682465, 0.04945354536175728, 0.013405662961304188, 0.026033898815512657], "normal_n2_p1": [0.01203883346170187, 0.9498698115348816, 0.01750408671796322, 0.0064595481380820274, 0.0038153736386448145, 0.0017801066860556602, 0.0031998984050005674], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009330754168331623, 0.006078885402530432, 0.00902526080608368, 0.03981294855475426, 0.7275577783584595, 0.006855224724858999, 0.014746985398232937], "normal_n3_p1": [0.867461621761322, 0.013705947436392307, 0.03162790462374687, 0.04578958824276924, 0.013439333066344261, 0.008982752449810505, 0.00772762019187212], "normal_n3_p2": [0.016788262873888016, 0.01543398667126894, 0.017674922943115234, 0.015147040598094463, 0.013238493353128433, 0.9025819897651672, 0.008122315630316734], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.043709006160497665, 0.8832523822784424, 0.03699805960059166, 0.009131243452429771, 0.0019007106311619282, 0.009725009091198444, 0.0023868458811193705], "reduce_n2_p1": [0.06560749560594559, 0.2135947346687317, 0.048110634088516235, 0.021304195746779442, 0.028493648394942284, 0.5188091993331909, 0.031800612807273865], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0056062666699290276, 0.030097927898168564, 0.005879546049982309, 0.0018192266579717398, 0.8980598449707031, 0.013603053987026215, 0.039862316101789474], "reduce_n3_p1": [0.007851877249777317, 0.9853078126907349, 0.0013882964849472046, 0.0011141709983348846, 0.0003541265323292464, 0.0017733685672283173, 0.001517592929303646], "reduce_n3_p2": [0.03506845235824585, 0.026818150654435158, 0.8932493925094604, 0.006697352044284344, 0.010290821082890034, 0.007382750511169434, 0.010760216042399406], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.022465942427515984, 0.8909921050071716, 0.03684459999203682, 0.004939049016684294, 0.015351792797446251, 0.0052906060591340065, 0.0156830083578825], "normal_n2_p1": [0.014718275517225266, 0.9383388161659241, 0.01766100712120533, 0.007807321380823851, 0.006090654991567135, 0.00322548090480268, 0.004344235174357891], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.004742123652249575, 0.004479122813791037, 0.005445340182632208, 0.018435698002576828, 0.9185516834259033, 0.004065356682986021, 0.011489277705550194], "normal_n3_p1": [0.9144355058670044, 0.011816409416496754, 0.024518713355064392, 0.022151455283164978, 0.010234493762254715, 0.0056725600734353065, 0.0031032077968120575], "normal_n3_p2": [0.01804165169596672, 0.018461691215634346, 0.02343844436109066, 0.011832363903522491, 0.014463089406490326, 0.8922943472862244, 0.008763385005295277], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.031989600509405136, 0.8462681770324707, 0.05370670184493065, 0.02264244481921196, 0.004033161327242851, 0.015816036611795425, 0.004742699675261974], "reduce_n2_p1": [0.07913225889205933, 0.783068060874939, 0.023152833804488182, 0.010191993787884712, 0.01181640475988388, 0.04539591819047928, 0.01721675507724285], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005488954484462738, 0.019078711047768593, 0.002678571967408061, 0.0017638393910601735, 0.9235259890556335, 0.012176395393908024, 0.030708150938153267], "reduce_n3_p1": [0.003188281785696745, 0.9941214919090271, 0.00025874056154862046, 0.000952618254814297, 0.00023714103735983372, 0.0002741121279541403, 0.00046684069093316793], "reduce_n3_p2": [0.04701979458332062, 0.0436740443110466, 0.8378987908363342, 0.011677523143589497, 0.01396414078772068, 0.01411284040659666, 0.019545486196875572], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.022465942427515984, 0.8909921050071716, 0.03684459999203682, 0.004939049016684294, 0.015351792797446251, 0.0052906060591340065, 0.0156830083578825], "normal_n2_p1": [0.014718275517225266, 0.9383388161659241, 0.01766100712120533, 0.007807321380823851, 0.006090654991567135, 0.00322548090480268, 0.004344235174357891], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.004742123652249575, 0.004479122813791037, 0.005445340182632208, 0.018435698002576828, 0.9185516834259033, 0.004065356682986021, 0.011489277705550194], "normal_n3_p1": [0.9144355058670044, 0.011816409416496754, 0.024518713355064392, 0.022151455283164978, 0.010234493762254715, 0.0056725600734353065, 0.0031032077968120575], "normal_n3_p2": [0.01804165169596672, 0.018461691215634346, 0.02343844436109066, 0.011832363903522491, 0.014463089406490326, 0.8922943472862244, 0.008763385005295277], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.031989600509405136, 0.8462681770324707, 0.05370670184493065, 0.02264244481921196, 0.004033161327242851, 0.015816036611795425, 0.004742699675261974], "reduce_n2_p1": [0.07913225889205933, 0.783068060874939, 0.023152833804488182, 0.010191993787884712, 0.01181640475988388, 0.04539591819047928, 0.01721675507724285], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005488954484462738, 0.019078711047768593, 0.002678571967408061, 0.0017638393910601735, 0.9235259890556335, 0.012176395393908024, 0.030708150938153267], "reduce_n3_p1": [0.003188281785696745, 0.9941214919090271, 0.00025874056154862046, 0.000952618254814297, 0.00023714103735983372, 0.0002741121279541403, 0.00046684069093316793], "reduce_n3_p2": [0.04701979458332062, 0.0436740443110466, 0.8378987908363342, 0.011677523143589497, 0.01396414078772068, 0.01411284040659666, 0.019545486196875572], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.017993558198213577, 0.9026586413383484, 0.03421502187848091, 0.004894642625004053, 0.012249333783984184, 0.007070306688547134, 0.016560735180974007], "normal_n2_p1": [0.019139515236020088, 0.9016695618629456, 0.023066293448209763, 0.012184693478047848, 0.013056755997240543, 0.007884394377470016, 0.007832709699869156], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0038689468055963516, 0.004635670222342014, 0.004814839456230402, 0.0125594986602664, 0.9508808255195618, 0.0036656956654042006, 0.01055208034813404], "normal_n3_p1": [0.8944448232650757, 0.016701119020581245, 0.02852640487253666, 0.023369602859020233, 0.01333620771765709, 0.008673548698425293, 0.003247680142521858], "normal_n3_p2": [0.019928909838199615, 0.02332376502454281, 0.027412133291363716, 0.02508779987692833, 0.019270531833171844, 0.8278213143348694, 0.023394640535116196], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.007141830865293741, 0.9566063284873962, 0.012363381683826447, 0.008593853563070297, 0.0021110244560986757, 0.005501837003976107, 0.0022535650059580803], "reduce_n2_p1": [0.07796695083379745, 0.7996217012405396, 0.02446204610168934, 0.01088873390108347, 0.01259922981262207, 0.01749558560550213, 0.0182962529361248], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02653004601597786, 0.06796485185623169, 0.00657117972150445, 0.007092371582984924, 0.6410718560218811, 0.03475623577833176, 0.20007003843784332], "reduce_n3_p1": [0.0025917706079781055, 0.9928334951400757, 0.0002537185209803283, 0.0017705372301861644, 0.0005038159433752298, 0.00023372173018287867, 0.0005776870530098677], "reduce_n3_p2": [0.020777912810444832, 0.02845483087003231, 0.9091657996177673, 0.008865960873663425, 0.00814498495310545, 0.007452069781720638, 0.010073667392134666], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.017993558198213577, 0.9026586413383484, 0.03421502187848091, 0.004894642625004053, 0.012249333783984184, 0.007070306688547134, 0.016560735180974007], "normal_n2_p1": [0.019139515236020088, 0.9016695618629456, 0.023066293448209763, 0.012184693478047848, 0.013056755997240543, 0.007884394377470016, 0.007832709699869156], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0038689468055963516, 0.004635670222342014, 0.004814839456230402, 0.0125594986602664, 0.9508808255195618, 0.0036656956654042006, 0.01055208034813404], "normal_n3_p1": [0.8944448232650757, 0.016701119020581245, 0.02852640487253666, 0.023369602859020233, 0.01333620771765709, 0.008673548698425293, 0.003247680142521858], "normal_n3_p2": [0.019928909838199615, 0.02332376502454281, 0.027412133291363716, 0.02508779987692833, 0.019270531833171844, 0.8278213143348694, 0.023394640535116196], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.007141830865293741, 0.9566063284873962, 0.012363381683826447, 0.008593853563070297, 0.0021110244560986757, 0.005501837003976107, 0.0022535650059580803], "reduce_n2_p1": [0.07796695083379745, 0.7996217012405396, 0.02446204610168934, 0.01088873390108347, 0.01259922981262207, 0.01749558560550213, 0.0182962529361248], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02653004601597786, 0.06796485185623169, 0.00657117972150445, 0.007092371582984924, 0.6410718560218811, 0.03475623577833176, 0.20007003843784332], "reduce_n3_p1": [0.0025917706079781055, 0.9928334951400757, 0.0002537185209803283, 0.0017705372301861644, 0.0005038159433752298, 0.00023372173018287867, 0.0005776870530098677], "reduce_n3_p2": [0.020777912810444832, 0.02845483087003231, 0.9091657996177673, 0.008865960873663425, 0.00814498495310545, 0.007452069781720638, 0.010073667392134666], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03169376030564308, 0.8226734399795532, 0.0467839241027832, 0.012784477323293686, 0.024785146117210388, 0.02228771336376667, 0.030197620391845703], "normal_n2_p1": [0.03292284905910492, 0.8214643001556396, 0.034088049083948135, 0.02106105349957943, 0.02707146853208542, 0.020633427426218987, 0.014297566376626492], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.00600459473207593, 0.007983691059052944, 0.007524646818637848, 0.016956407576799393, 0.9321516752243042, 0.005929448641836643, 0.016095900908112526], "normal_n3_p1": [0.8459432125091553, 0.026466771960258484, 0.03947897627949715, 0.02993268333375454, 0.018996519967913628, 0.015876030549407005, 0.004873201251029968], "normal_n3_p2": [0.027353959158062935, 0.035578060895204544, 0.02768842875957489, 0.05007852986454964, 0.02759832888841629, 0.6885184645652771, 0.07096073776483536], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.006452338304370642, 0.9539386034011841, 0.010958576574921608, 0.010244002565741539, 0.0033374920021742582, 0.006244664080440998, 0.0033524688333272934], "reduce_n2_p1": [0.17281122505664825, 0.4813283085823059, 0.061293020844459534, 0.02981892228126526, 0.039594702422618866, 0.02881636470556259, 0.048539966344833374], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.020410237833857536, 0.05572289228439331, 0.005919800605624914, 0.009262590669095516, 0.8267681002616882, 0.030470991507172585, 0.03593911603093147], "reduce_n3_p1": [0.003350235987454653, 0.9846352338790894, 0.0005712898564524949, 0.004086621105670929, 0.0016265696613118052, 0.00047809293027967215, 0.0013764724135398865], "reduce_n3_p2": [0.018652042374014854, 0.03134399652481079, 0.8997407555580139, 0.012232383713126183, 0.010057052597403526, 0.009420132264494896, 0.010048395954072475], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03169376030564308, 0.8226734399795532, 0.0467839241027832, 0.012784477323293686, 0.024785146117210388, 0.02228771336376667, 0.030197620391845703], "normal_n2_p1": [0.03292284905910492, 0.8214643001556396, 0.034088049083948135, 0.02106105349957943, 0.02707146853208542, 0.020633427426218987, 0.014297566376626492], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.00600459473207593, 0.007983691059052944, 0.007524646818637848, 0.016956407576799393, 0.9321516752243042, 0.005929448641836643, 0.016095900908112526], "normal_n3_p1": [0.8459432125091553, 0.026466771960258484, 0.03947897627949715, 0.02993268333375454, 0.018996519967913628, 0.015876030549407005, 0.004873201251029968], "normal_n3_p2": [0.027353959158062935, 0.035578060895204544, 0.02768842875957489, 0.05007852986454964, 0.02759832888841629, 0.6885184645652771, 0.07096073776483536], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.006452338304370642, 0.9539386034011841, 0.010958576574921608, 0.010244002565741539, 0.0033374920021742582, 0.006244664080440998, 0.0033524688333272934], "reduce_n2_p1": [0.17281122505664825, 0.4813283085823059, 0.061293020844459534, 0.02981892228126526, 0.039594702422618866, 0.02881636470556259, 0.048539966344833374], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.020410237833857536, 0.05572289228439331, 0.005919800605624914, 0.009262590669095516, 0.8267681002616882, 0.030470991507172585, 0.03593911603093147], "reduce_n3_p1": [0.003350235987454653, 0.9846352338790894, 0.0005712898564524949, 0.004086621105670929, 0.0016265696613118052, 0.00047809293027967215, 0.0013764724135398865], "reduce_n3_p2": [0.018652042374014854, 0.03134399652481079, 0.8997407555580139, 0.012232383713126183, 0.010057052597403526, 0.009420132264494896, 0.010048395954072475], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.030521783977746964, 0.8790072798728943, 0.022436561062932014, 0.011567815206944942, 0.011355547234416008, 0.015020174905657768, 0.021295227110385895], "normal_n2_p1": [0.050615422427654266, 0.695326566696167, 0.04891883209347725, 0.03434586152434349, 0.049527205526828766, 0.052742913365364075, 0.02193467877805233], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.014397510327398777, 0.020914528518915176, 0.018304038792848587, 0.034856755286455154, 0.8516334891319275, 0.013614892028272152, 0.03257118538022041], "normal_n3_p1": [0.6855413913726807, 0.056375354528427124, 0.07398170232772827, 0.055694449692964554, 0.03787745162844658, 0.03990396857261658, 0.010412399657070637], "normal_n3_p2": [0.027999350801110268, 0.0361822284758091, 0.023432837799191475, 0.021326616406440735, 0.029250113293528557, 0.8251733183860779, 0.018489254638552666], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.012248237617313862, 0.9042643308639526, 0.01980278082191944, 0.02199428528547287, 0.008945687673985958, 0.01284561213105917, 0.00870101060718298], "reduce_n2_p1": [0.18005424737930298, 0.03762336075305939, 0.08422714471817017, 0.033054277300834656, 0.045695070177316666, 0.027141505852341652, 0.06875204294919968], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008507565595209599, 0.0268546249717474, 0.004311365075409412, 0.008187753148376942, 0.917384684085846, 0.015017690137028694, 0.008958711288869381], "reduce_n3_p1": [0.005952273029834032, 0.9630680680274963, 0.001744813984259963, 0.009006232023239136, 0.005164731293916702, 0.0013848374364897609, 0.003940954804420471], "reduce_n3_p2": [0.025891713798046112, 0.04673663154244423, 0.8259424567222595, 0.024983525276184082, 0.020331691950559616, 0.02036609873175621, 0.01945493184030056], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.030521783977746964, 0.8790072798728943, 0.022436561062932014, 0.011567815206944942, 0.011355547234416008, 0.015020174905657768, 0.021295227110385895], "normal_n2_p1": [0.050615422427654266, 0.695326566696167, 0.04891883209347725, 0.03434586152434349, 0.049527205526828766, 0.052742913365364075, 0.02193467877805233], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.014397510327398777, 0.020914528518915176, 0.018304038792848587, 0.034856755286455154, 0.8516334891319275, 0.013614892028272152, 0.03257118538022041], "normal_n3_p1": [0.6855413913726807, 0.056375354528427124, 0.07398170232772827, 0.055694449692964554, 0.03787745162844658, 0.03990396857261658, 0.010412399657070637], "normal_n3_p2": [0.027999350801110268, 0.0361822284758091, 0.023432837799191475, 0.021326616406440735, 0.029250113293528557, 0.8251733183860779, 0.018489254638552666], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.012248237617313862, 0.9042643308639526, 0.01980278082191944, 0.02199428528547287, 0.008945687673985958, 0.01284561213105917, 0.00870101060718298], "reduce_n2_p1": [0.18005424737930298, 0.03762336075305939, 0.08422714471817017, 0.033054277300834656, 0.045695070177316666, 0.027141505852341652, 0.06875204294919968], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008507565595209599, 0.0268546249717474, 0.004311365075409412, 0.008187753148376942, 0.917384684085846, 0.015017690137028694, 0.008958711288869381], "reduce_n3_p1": [0.005952273029834032, 0.9630680680274963, 0.001744813984259963, 0.009006232023239136, 0.005164731293916702, 0.0013848374364897609, 0.003940954804420471], "reduce_n3_p2": [0.025891713798046112, 0.04673663154244423, 0.8259424567222595, 0.024983525276184082, 0.020331691950559616, 0.02036609873175621, 0.01945493184030056], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03908894956111908, 0.8559712171554565, 0.02008780650794506, 0.017398793250322342, 0.00970803014934063, 0.021843547001481056, 0.021419590339064598], "normal_n2_p1": [0.06385655701160431, 0.7364182472229004, 0.04270906373858452, 0.030254904180765152, 0.024787161499261856, 0.05641597509384155, 0.020389849320054054], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03697870299220085, 0.05214136466383934, 0.044933516532182693, 0.07220998406410217, 0.6574154496192932, 0.03252527117729187, 0.07034653425216675], "normal_n3_p1": [0.6416923999786377, 0.06982492655515671, 0.06822960078716278, 0.07502004504203796, 0.0472763255238533, 0.03623927757143974, 0.014908923767507076], "normal_n3_p2": [0.032357990741729736, 0.03264308348298073, 0.02135963924229145, 0.014094489626586437, 0.031738441437482834, 0.8452549576759338, 0.011546304449439049], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.030014654621481895, 0.7564640641212463, 0.046249113976955414, 0.05081607401371002, 0.027301054447889328, 0.03231712430715561, 0.02501029521226883], "reduce_n2_p1": [0.5601195693016052, 0.014999374747276306, 0.1284218728542328, 0.03784411400556564, 0.05677090212702751, 0.03458114713430405, 0.04486828297376633], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008544840849936008, 0.02584698237478733, 0.006013617850840092, 0.013182057067751884, 0.90704345703125, 0.018174756318330765, 0.007252330891788006], "reduce_n3_p1": [0.010971473529934883, 0.9208024740219116, 0.00548379635438323, 0.017694590613245964, 0.013902765698730946, 0.004204356111586094, 0.011367101222276688], "reduce_n3_p2": [0.044321756809949875, 0.08155453205108643, 0.6500359773635864, 0.053330376744270325, 0.04274559020996094, 0.04273277521133423, 0.050566721707582474], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03908894956111908, 0.8559712171554565, 0.02008780650794506, 0.017398793250322342, 0.00970803014934063, 0.021843547001481056, 0.021419590339064598], "normal_n2_p1": [0.06385655701160431, 0.7364182472229004, 0.04270906373858452, 0.030254904180765152, 0.024787161499261856, 0.05641597509384155, 0.020389849320054054], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03697870299220085, 0.05214136466383934, 0.044933516532182693, 0.07220998406410217, 0.6574154496192932, 0.03252527117729187, 0.07034653425216675], "normal_n3_p1": [0.6416923999786377, 0.06982492655515671, 0.06822960078716278, 0.07502004504203796, 0.0472763255238533, 0.03623927757143974, 0.014908923767507076], "normal_n3_p2": [0.032357990741729736, 0.03264308348298073, 0.02135963924229145, 0.014094489626586437, 0.031738441437482834, 0.8452549576759338, 0.011546304449439049], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.030014654621481895, 0.7564640641212463, 0.046249113976955414, 0.05081607401371002, 0.027301054447889328, 0.03231712430715561, 0.02501029521226883], "reduce_n2_p1": [0.5601195693016052, 0.014999374747276306, 0.1284218728542328, 0.03784411400556564, 0.05677090212702751, 0.03458114713430405, 0.04486828297376633], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008544840849936008, 0.02584698237478733, 0.006013617850840092, 0.013182057067751884, 0.90704345703125, 0.018174756318330765, 0.007252330891788006], "reduce_n3_p1": [0.010971473529934883, 0.9208024740219116, 0.00548379635438323, 0.017694590613245964, 0.013902765698730946, 0.004204356111586094, 0.011367101222276688], "reduce_n3_p2": [0.044321756809949875, 0.08155453205108643, 0.6500359773635864, 0.053330376744270325, 0.04274559020996094, 0.04273277521133423, 0.050566721707582474], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.036053743213415146, 0.8699489235877991, 0.017051829025149345, 0.01636350341141224, 0.008173917420208454, 0.016461312770843506, 0.017883460968732834], "normal_n2_p1": [0.09086038917303085, 0.6637784838676453, 0.04694478213787079, 0.030325662344694138, 0.023445812985301018, 0.10181114822626114, 0.020880253985524178], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06467995792627335, 0.09487617015838623, 0.0783587396144867, 0.15389277040958405, 0.3488008379936218, 0.06428972631692886, 0.11891258507966995], "normal_n3_p1": [0.7613516449928284, 0.07083496451377869, 0.04773687943816185, 0.03932744637131691, 0.03232279047369957, 0.01200743205845356, 0.012398695573210716], "normal_n3_p2": [0.034042857587337494, 0.030479982495307922, 0.024782275781035423, 0.013284177519381046, 0.03331802412867546, 0.8423904776573181, 0.008673153817653656], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.056118398904800415, 0.40195855498313904, 0.14417633414268494, 0.15955676138401031, 0.058440208435058594, 0.054891593754291534, 0.05494119971990585], "reduce_n2_p1": [0.1561800092458725, 0.01441537868231535, 0.3729565143585205, 0.062129564583301544, 0.1404290348291397, 0.07265811413526535, 0.06046830490231514], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01060959231108427, 0.027656715363264084, 0.008918755687773228, 0.019358539953827858, 0.8794341087341309, 0.026678677648305893, 0.008713985793292522], "reduce_n3_p1": [0.022372810170054436, 0.7932084798812866, 0.018039437010884285, 0.057679712772369385, 0.03380085155367851, 0.013882243074476719, 0.03032742068171501], "reduce_n3_p2": [0.0553499199450016, 0.12933287024497986, 0.21914973855018616, 0.13268044590950012, 0.06446480005979538, 0.07248783111572266, 0.26208335161209106], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.036053743213415146, 0.8699489235877991, 0.017051829025149345, 0.01636350341141224, 0.008173917420208454, 0.016461312770843506, 0.017883460968732834], "normal_n2_p1": [0.09086038917303085, 0.6637784838676453, 0.04694478213787079, 0.030325662344694138, 0.023445812985301018, 0.10181114822626114, 0.020880253985524178], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06467995792627335, 0.09487617015838623, 0.0783587396144867, 0.15389277040958405, 0.3488008379936218, 0.06428972631692886, 0.11891258507966995], "normal_n3_p1": [0.7613516449928284, 0.07083496451377869, 0.04773687943816185, 0.03932744637131691, 0.03232279047369957, 0.01200743205845356, 0.012398695573210716], "normal_n3_p2": [0.034042857587337494, 0.030479982495307922, 0.024782275781035423, 0.013284177519381046, 0.03331802412867546, 0.8423904776573181, 0.008673153817653656], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.056118398904800415, 0.40195855498313904, 0.14417633414268494, 0.15955676138401031, 0.058440208435058594, 0.054891593754291534, 0.05494119971990585], "reduce_n2_p1": [0.1561800092458725, 0.01441537868231535, 0.3729565143585205, 0.062129564583301544, 0.1404290348291397, 0.07265811413526535, 0.06046830490231514], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01060959231108427, 0.027656715363264084, 0.008918755687773228, 0.019358539953827858, 0.8794341087341309, 0.026678677648305893, 0.008713985793292522], "reduce_n3_p1": [0.022372810170054436, 0.7932084798812866, 0.018039437010884285, 0.057679712772369385, 0.03380085155367851, 0.013882243074476719, 0.03032742068171501], "reduce_n3_p2": [0.0553499199450016, 0.12933287024497986, 0.21914973855018616, 0.13268044590950012, 0.06446480005979538, 0.07248783111572266, 0.26208335161209106], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03412296995520592, 0.8196783661842346, 0.025768855586647987, 0.026086002588272095, 0.011948157101869583, 0.02537650801241398, 0.020627954974770546], "normal_n2_p1": [0.11578051745891571, 0.41784384846687317, 0.06885918229818344, 0.048505403101444244, 0.04064566269516945, 0.24099306762218475, 0.03321497142314911], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05974503234028816, 0.09478063881397247, 0.0792761743068695, 0.32982137799263, 0.1473146677017212, 0.10122980922460556, 0.059168361127376556], "normal_n3_p1": [0.5769740343093872, 0.13505037128925323, 0.08685564994812012, 0.06396843492984772, 0.05421525239944458, 0.019273733720183372, 0.02093070186674595], "normal_n3_p2": [0.019257962703704834, 0.016056014224886894, 0.01726602576673031, 0.01164413895457983, 0.02206949144601822, 0.8825542330741882, 0.009933295659720898], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.033018697053194046, 0.7947959899902344, 0.04453093931078911, 0.009313157759606838, 0.019390679895877838, 0.033133357763290405, 0.022280512377619743], "reduce_n2_p1": [0.046770546585321426, 0.012734929099678993, 0.04684688150882721, 0.07773641496896744, 0.4487469494342804, 0.10781329870223999, 0.10199713706970215], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.030181128531694412, 0.056768547743558884, 0.01929369941353798, 0.04650035500526428, 0.7442535161972046, 0.04889378324151039, 0.019188404083251953], "reduce_n3_p1": [0.03348953649401665, 0.638950765132904, 0.04360540211200714, 0.10363537818193436, 0.07975048571825027, 0.02639755792915821, 0.04511437565088272], "reduce_n3_p2": [0.09669284522533417, 0.30601784586906433, 0.3054144084453583, 0.10035564005374908, 0.045201316475868225, 0.04628105089068413, 0.035618118941783905], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03412296995520592, 0.8196783661842346, 0.025768855586647987, 0.026086002588272095, 0.011948157101869583, 0.02537650801241398, 0.020627954974770546], "normal_n2_p1": [0.11578051745891571, 0.41784384846687317, 0.06885918229818344, 0.048505403101444244, 0.04064566269516945, 0.24099306762218475, 0.03321497142314911], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05974503234028816, 0.09478063881397247, 0.0792761743068695, 0.32982137799263, 0.1473146677017212, 0.10122980922460556, 0.059168361127376556], "normal_n3_p1": [0.5769740343093872, 0.13505037128925323, 0.08685564994812012, 0.06396843492984772, 0.05421525239944458, 0.019273733720183372, 0.02093070186674595], "normal_n3_p2": [0.019257962703704834, 0.016056014224886894, 0.01726602576673031, 0.01164413895457983, 0.02206949144601822, 0.8825542330741882, 0.009933295659720898], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.033018697053194046, 0.7947959899902344, 0.04453093931078911, 0.009313157759606838, 0.019390679895877838, 0.033133357763290405, 0.022280512377619743], "reduce_n2_p1": [0.046770546585321426, 0.012734929099678993, 0.04684688150882721, 0.07773641496896744, 0.4487469494342804, 0.10781329870223999, 0.10199713706970215], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.030181128531694412, 0.056768547743558884, 0.01929369941353798, 0.04650035500526428, 0.7442535161972046, 0.04889378324151039, 0.019188404083251953], "reduce_n3_p1": [0.03348953649401665, 0.638950765132904, 0.04360540211200714, 0.10363537818193436, 0.07975048571825027, 0.02639755792915821, 0.04511437565088272], "reduce_n3_p2": [0.09669284522533417, 0.30601784586906433, 0.3054144084453583, 0.10035564005374908, 0.045201316475868225, 0.04628105089068413, 0.035618118941783905], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.025916052982211113, 0.8681795001029968, 0.026685373857617378, 0.01814769208431244, 0.013210868462920189, 0.009302983991801739, 0.015712859109044075], "normal_n2_p1": [0.08994089812040329, 0.4366133511066437, 0.09463566541671753, 0.07364210486412048, 0.16049402952194214, 0.031263355165719986, 0.049858350306749344], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.08397366106510162, 0.2542625665664673, 0.14902269840240479, 0.2547008693218231, 0.05151566490530968, 0.10744340717792511, 0.013930210843682289], "normal_n3_p1": [0.17785243690013885, 0.06780494749546051, 0.12525132298469543, 0.14482241868972778, 0.17585569620132446, 0.07857845723628998, 0.045322008430957794], "normal_n3_p2": [0.008361606858670712, 0.006874403916299343, 0.00784775335341692, 0.006117756012827158, 0.00959356501698494, 0.9397541284561157, 0.009886791929602623], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03266636282205582, 0.7796105742454529, 0.04455895349383354, 0.004221086855977774, 0.018780238926410675, 0.037880364805459976, 0.02774914912879467], "reduce_n2_p1": [0.039400070905685425, 0.017317024990916252, 0.02187746949493885, 0.06637577712535858, 0.3865938186645508, 0.19221656024456024, 0.21322943270206451], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.07299091666936874, 0.09392868727445602, 0.03981342539191246, 0.14183251559734344, 0.39584094285964966, 0.13696008920669556, 0.046013616025447845], "reduce_n3_p1": [0.0526866652071476, 0.8095288276672363, 0.04286184161901474, 0.007685141172260046, 0.05292847007513046, 0.013541110791265965, 0.010324754752218723], "reduce_n3_p2": [0.07167847454547882, 0.17605945467948914, 0.45406246185302734, 0.10795674473047256, 0.03941620513796806, 0.0359063521027565, 0.023660635575652122], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.025916052982211113, 0.8681795001029968, 0.026685373857617378, 0.01814769208431244, 0.013210868462920189, 0.009302983991801739, 0.015712859109044075], "normal_n2_p1": [0.08994089812040329, 0.4366133511066437, 0.09463566541671753, 0.07364210486412048, 0.16049402952194214, 0.031263355165719986, 0.049858350306749344], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.08397366106510162, 0.2542625665664673, 0.14902269840240479, 0.2547008693218231, 0.05151566490530968, 0.10744340717792511, 0.013930210843682289], "normal_n3_p1": [0.17785243690013885, 0.06780494749546051, 0.12525132298469543, 0.14482241868972778, 0.17585569620132446, 0.07857845723628998, 0.045322008430957794], "normal_n3_p2": [0.008361606858670712, 0.006874403916299343, 0.00784775335341692, 0.006117756012827158, 0.00959356501698494, 0.9397541284561157, 0.009886791929602623], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03266636282205582, 0.7796105742454529, 0.04455895349383354, 0.004221086855977774, 0.018780238926410675, 0.037880364805459976, 0.02774914912879467], "reduce_n2_p1": [0.039400070905685425, 0.017317024990916252, 0.02187746949493885, 0.06637577712535858, 0.3865938186645508, 0.19221656024456024, 0.21322943270206451], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.07299091666936874, 0.09392868727445602, 0.03981342539191246, 0.14183251559734344, 0.39584094285964966, 0.13696008920669556, 0.046013616025447845], "reduce_n3_p1": [0.0526866652071476, 0.8095288276672363, 0.04286184161901474, 0.007685141172260046, 0.05292847007513046, 0.013541110791265965, 0.010324754752218723], "reduce_n3_p2": [0.07167847454547882, 0.17605945467948914, 0.45406246185302734, 0.10795674473047256, 0.03941620513796806, 0.0359063521027565, 0.023660635575652122], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03749050199985504, 0.7635096311569214, 0.049998246133327484, 0.04034895822405815, 0.0248933844268322, 0.015847180038690567, 0.021547991782426834], "normal_n2_p1": [0.09186257421970367, 0.8178479671478271, 0.05064628645777702, 0.018020933493971825, 0.004335619509220123, 0.0031439701560884714, 0.0062191360630095005], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.029922544956207275, 0.01596672832965851, 0.021091444417834282, 0.8566157817840576, 0.013935049064457417, 0.036636676639318466, 0.0030607287771999836], "normal_n3_p1": [0.07242739945650101, 0.033410415053367615, 0.1019880473613739, 0.08644140511751175, 0.2807885408401489, 0.050845786929130554, 0.04901805892586708], "normal_n3_p2": [0.006581596098840237, 0.006261430215090513, 0.00683909235522151, 0.006301035173237324, 0.00773044116795063, 0.9407323002815247, 0.014497225172817707], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.052541542798280716, 0.6086544394493103, 0.09870181232690811, 0.0055722384713590145, 0.028839897364377975, 0.08024405688047409, 0.03649422526359558], "reduce_n2_p1": [0.017392441630363464, 0.014709661714732647, 0.012159687466919422, 0.05146132782101631, 0.08463989943265915, 0.4398888349533081, 0.354278564453125], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.013735787943005562, 0.02386416867375374, 0.021872801706194878, 0.029393766075372696, 0.47458988428115845, 0.3835362195968628, 0.02425595186650753], "reduce_n3_p1": [0.05423079803586006, 0.7729409337043762, 0.040961429476737976, 0.0038964927662163973, 0.0818605124950409, 0.019550658762454987, 0.009427694603800774], "reduce_n3_p2": [0.06578302383422852, 0.09788800776004791, 0.44861873984336853, 0.0916084572672844, 0.05200512334704399, 0.06007063388824463, 0.026164952665567398], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03749050199985504, 0.7635096311569214, 0.049998246133327484, 0.04034895822405815, 0.0248933844268322, 0.015847180038690567, 0.021547991782426834], "normal_n2_p1": [0.09186257421970367, 0.8178479671478271, 0.05064628645777702, 0.018020933493971825, 0.004335619509220123, 0.0031439701560884714, 0.0062191360630095005], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.029922544956207275, 0.01596672832965851, 0.021091444417834282, 0.8566157817840576, 0.013935049064457417, 0.036636676639318466, 0.0030607287771999836], "normal_n3_p1": [0.07242739945650101, 0.033410415053367615, 0.1019880473613739, 0.08644140511751175, 0.2807885408401489, 0.050845786929130554, 0.04901805892586708], "normal_n3_p2": [0.006581596098840237, 0.006261430215090513, 0.00683909235522151, 0.006301035173237324, 0.00773044116795063, 0.9407323002815247, 0.014497225172817707], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.052541542798280716, 0.6086544394493103, 0.09870181232690811, 0.0055722384713590145, 0.028839897364377975, 0.08024405688047409, 0.03649422526359558], "reduce_n2_p1": [0.017392441630363464, 0.014709661714732647, 0.012159687466919422, 0.05146132782101631, 0.08463989943265915, 0.4398888349533081, 0.354278564453125], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.013735787943005562, 0.02386416867375374, 0.021872801706194878, 0.029393766075372696, 0.47458988428115845, 0.3835362195968628, 0.02425595186650753], "reduce_n3_p1": [0.05423079803586006, 0.7729409337043762, 0.040961429476737976, 0.0038964927662163973, 0.0818605124950409, 0.019550658762454987, 0.009427694603800774], "reduce_n3_p2": [0.06578302383422852, 0.09788800776004791, 0.44861873984336853, 0.0916084572672844, 0.05200512334704399, 0.06007063388824463, 0.026164952665567398], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03152276948094368, 0.8328344225883484, 0.03289712965488434, 0.02888786979019642, 0.020986922085285187, 0.018134333193302155, 0.01703561283648014], "normal_n2_p1": [0.10442245006561279, 0.8266245126724243, 0.04294684901833534, 0.014406539499759674, 0.0010610034223645926, 0.0017091399058699608, 0.003590386128053069], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0424044169485569, 0.00853449571877718, 0.01729588396847248, 0.8578290939331055, 0.012661507353186607, 0.03469584882259369, 0.0029181544668972492], "normal_n3_p1": [0.07691261917352676, 0.040691979229450226, 0.21208615601062775, 0.13317786157131195, 0.2345278263092041, 0.03574100509285927, 0.04886160418391228], "normal_n3_p2": [0.009886638261377811, 0.012718062847852707, 0.01448206976056099, 0.01064140535891056, 0.009054122492671013, 0.9145277142524719, 0.017139749601483345], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06466925144195557, 0.5328188538551331, 0.11510393023490906, 0.007999331690371037, 0.02988174371421337, 0.10802067816257477, 0.025799887254834175], "reduce_n2_p1": [0.01585414633154869, 0.0192995835095644, 0.013464505784213543, 0.10409460216760635, 0.1143171414732933, 0.6444536447525024, 0.06283190101385117], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0070983837358653545, 0.011008135974407196, 0.012307393364608288, 0.009447936899960041, 0.8248712420463562, 0.10761573165655136, 0.012077273800969124], "reduce_n3_p1": [0.02780013345181942, 0.9235892295837402, 0.010308295488357544, 0.0022076531313359737, 0.00795489177107811, 0.011297062039375305, 0.005397563334554434], "reduce_n3_p2": [0.06138228252530098, 0.08017415553331375, 0.47229960560798645, 0.059489764273166656, 0.07821672409772873, 0.0657026395201683, 0.030438125133514404], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03152276948094368, 0.8328344225883484, 0.03289712965488434, 0.02888786979019642, 0.020986922085285187, 0.018134333193302155, 0.01703561283648014], "normal_n2_p1": [0.10442245006561279, 0.8266245126724243, 0.04294684901833534, 0.014406539499759674, 0.0010610034223645926, 0.0017091399058699608, 0.003590386128053069], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0424044169485569, 0.00853449571877718, 0.01729588396847248, 0.8578290939331055, 0.012661507353186607, 0.03469584882259369, 0.0029181544668972492], "normal_n3_p1": [0.07691261917352676, 0.040691979229450226, 0.21208615601062775, 0.13317786157131195, 0.2345278263092041, 0.03574100509285927, 0.04886160418391228], "normal_n3_p2": [0.009886638261377811, 0.012718062847852707, 0.01448206976056099, 0.01064140535891056, 0.009054122492671013, 0.9145277142524719, 0.017139749601483345], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06466925144195557, 0.5328188538551331, 0.11510393023490906, 0.007999331690371037, 0.02988174371421337, 0.10802067816257477, 0.025799887254834175], "reduce_n2_p1": [0.01585414633154869, 0.0192995835095644, 0.013464505784213543, 0.10409460216760635, 0.1143171414732933, 0.6444536447525024, 0.06283190101385117], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0070983837358653545, 0.011008135974407196, 0.012307393364608288, 0.009447936899960041, 0.8248712420463562, 0.10761573165655136, 0.012077273800969124], "reduce_n3_p1": [0.02780013345181942, 0.9235892295837402, 0.010308295488357544, 0.0022076531313359737, 0.00795489177107811, 0.011297062039375305, 0.005397563334554434], "reduce_n3_p2": [0.06138228252530098, 0.08017415553331375, 0.47229960560798645, 0.059489764273166656, 0.07821672409772873, 0.0657026395201683, 0.030438125133514404], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02445310167968273, 0.8913462162017822, 0.018035203218460083, 0.01780564896762371, 0.014280053786933422, 0.01239760685712099, 0.01327873207628727], "normal_n2_p1": [0.15579606592655182, 0.7561948895454407, 0.048245225101709366, 0.023028716444969177, 0.0010124907130375504, 0.002529712626710534, 0.004780059680342674], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.07972458004951477, 0.011232513003051281, 0.027079280465841293, 0.7565277218818665, 0.021916113793849945, 0.061163946986198425, 0.005626874044537544], "normal_n3_p1": [0.0706835389137268, 0.04600529372692108, 0.4142497777938843, 0.27456194162368774, 0.05975685641169548, 0.019129402935504913, 0.034861061722040176], "normal_n3_p2": [0.013870377093553543, 0.021263420581817627, 0.024469152092933655, 0.014738393947482109, 0.01021159254014492, 0.8927501440048218, 0.01100858487188816], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03217795863747597, 0.8857133388519287, 0.016970133408904076, 0.00450968649238348, 0.011817649938166142, 0.02146647311747074, 0.009524843655526638], "reduce_n2_p1": [0.019218748435378075, 0.028338385745882988, 0.017384709790349007, 0.16525040566921234, 0.2524414360523224, 0.4450334906578064, 0.03540360555052757], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014796145260334015, 0.014830494299530983, 0.01604151912033558, 0.0102543318644166, 0.6687216758728027, 0.23612084984779358, 0.016697430983185768], "reduce_n3_p1": [0.022064147517085075, 0.930197536945343, 0.007541774306446314, 0.0032409713603556156, 0.0037877459544688463, 0.0118256201967597, 0.007017204537987709], "reduce_n3_p2": [0.07695263624191284, 0.07407201081514359, 0.27614086866378784, 0.09286507964134216, 0.10247161984443665, 0.0963786318898201, 0.05552858114242554], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02445310167968273, 0.8913462162017822, 0.018035203218460083, 0.01780564896762371, 0.014280053786933422, 0.01239760685712099, 0.01327873207628727], "normal_n2_p1": [0.15579606592655182, 0.7561948895454407, 0.048245225101709366, 0.023028716444969177, 0.0010124907130375504, 0.002529712626710534, 0.004780059680342674], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.07972458004951477, 0.011232513003051281, 0.027079280465841293, 0.7565277218818665, 0.021916113793849945, 0.061163946986198425, 0.005626874044537544], "normal_n3_p1": [0.0706835389137268, 0.04600529372692108, 0.4142497777938843, 0.27456194162368774, 0.05975685641169548, 0.019129402935504913, 0.034861061722040176], "normal_n3_p2": [0.013870377093553543, 0.021263420581817627, 0.024469152092933655, 0.014738393947482109, 0.01021159254014492, 0.8927501440048218, 0.01100858487188816], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03217795863747597, 0.8857133388519287, 0.016970133408904076, 0.00450968649238348, 0.011817649938166142, 0.02146647311747074, 0.009524843655526638], "reduce_n2_p1": [0.019218748435378075, 0.028338385745882988, 0.017384709790349007, 0.16525040566921234, 0.2524414360523224, 0.4450334906578064, 0.03540360555052757], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014796145260334015, 0.014830494299530983, 0.01604151912033558, 0.0102543318644166, 0.6687216758728027, 0.23612084984779358, 0.016697430983185768], "reduce_n3_p1": [0.022064147517085075, 0.930197536945343, 0.007541774306446314, 0.0032409713603556156, 0.0037877459544688463, 0.0118256201967597, 0.007017204537987709], "reduce_n3_p2": [0.07695263624191284, 0.07407201081514359, 0.27614086866378784, 0.09286507964134216, 0.10247161984443665, 0.0963786318898201, 0.05552858114242554], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02086474560201168, 0.8938360810279846, 0.019409993663430214, 0.010821561329066753, 0.01395642850548029, 0.01724250055849552, 0.013686435297131538], "normal_n2_p1": [0.05126968026161194, 0.8745694756507874, 0.039143215864896774, 0.01671907864511013, 0.0010713681112974882, 0.003188714850693941, 0.004946989472955465], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0617518313229084, 0.01111370138823986, 0.024916574358940125, 0.7930940985679626, 0.022443871945142746, 0.04819616302847862, 0.0074324109591543674], "normal_n3_p1": [0.06632311642169952, 0.04154464602470398, 0.09885335713624954, 0.6371333003044128, 0.03281290829181671, 0.019372202455997467, 0.03468922898173332], "normal_n3_p2": [0.021551454439759254, 0.02599499374628067, 0.016360096633434296, 0.034290533512830734, 0.014202388003468513, 0.8560240864753723, 0.012027161195874214], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.026519369333982468, 0.9166378974914551, 0.008467813953757286, 0.005342633929103613, 0.01074469368904829, 0.013236953876912594, 0.0086757717654109], "reduce_n2_p1": [0.023002658039331436, 0.04172924533486366, 0.01667201519012451, 0.10299153625965118, 0.6049081683158875, 0.14218847453594208, 0.025542598217725754], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.011305253952741623, 0.010405441746115685, 0.011750470846891403, 0.007503887638449669, 0.8809068202972412, 0.049673691391944885, 0.012392460368573666], "reduce_n3_p1": [0.018351450562477112, 0.9187342524528503, 0.00911315530538559, 0.006963423918932676, 0.003931088373064995, 0.013982262462377548, 0.010841911658644676], "reduce_n3_p2": [0.02936433255672455, 0.03775393217802048, 0.06523672491312027, 0.17435501515865326, 0.13655143976211548, 0.07618804275989532, 0.06122874841094017], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02086474560201168, 0.8938360810279846, 0.019409993663430214, 0.010821561329066753, 0.01395642850548029, 0.01724250055849552, 0.013686435297131538], "normal_n2_p1": [0.05126968026161194, 0.8745694756507874, 0.039143215864896774, 0.01671907864511013, 0.0010713681112974882, 0.003188714850693941, 0.004946989472955465], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0617518313229084, 0.01111370138823986, 0.024916574358940125, 0.7930940985679626, 0.022443871945142746, 0.04819616302847862, 0.0074324109591543674], "normal_n3_p1": [0.06632311642169952, 0.04154464602470398, 0.09885335713624954, 0.6371333003044128, 0.03281290829181671, 0.019372202455997467, 0.03468922898173332], "normal_n3_p2": [0.021551454439759254, 0.02599499374628067, 0.016360096633434296, 0.034290533512830734, 0.014202388003468513, 0.8560240864753723, 0.012027161195874214], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.026519369333982468, 0.9166378974914551, 0.008467813953757286, 0.005342633929103613, 0.01074469368904829, 0.013236953876912594, 0.0086757717654109], "reduce_n2_p1": [0.023002658039331436, 0.04172924533486366, 0.01667201519012451, 0.10299153625965118, 0.6049081683158875, 0.14218847453594208, 0.025542598217725754], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.011305253952741623, 0.010405441746115685, 0.011750470846891403, 0.007503887638449669, 0.8809068202972412, 0.049673691391944885, 0.012392460368573666], "reduce_n3_p1": [0.018351450562477112, 0.9187342524528503, 0.00911315530538559, 0.006963423918932676, 0.003931088373064995, 0.013982262462377548, 0.010841911658644676], "reduce_n3_p2": [0.02936433255672455, 0.03775393217802048, 0.06523672491312027, 0.17435501515865326, 0.13655143976211548, 0.07618804275989532, 0.06122874841094017], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04345687851309776, 0.6709650754928589, 0.055483128875494, 0.02197464555501938, 0.03465629369020462, 0.11295466125011444, 0.025012629106640816], "normal_n2_p1": [0.04180833324790001, 0.8583646416664124, 0.04793841391801834, 0.018702546134591103, 0.0020729023963212967, 0.006374934688210487, 0.008177077397704124], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.036647286266088486, 0.01062245573848486, 0.01872485689818859, 0.8387537598609924, 0.02167581580579281, 0.03348164260387421, 0.00951208733022213], "normal_n3_p1": [0.030690839514136314, 0.019908273592591286, 0.01336543820798397, 0.8795740604400635, 0.011417720466852188, 0.009165003895759583, 0.017650725319981575], "normal_n3_p2": [0.0669335201382637, 0.09261669218540192, 0.0361739918589592, 0.37723222374916077, 0.029690561816096306, 0.2202419638633728, 0.04533740133047104], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02272527851164341, 0.9245490431785583, 0.0066134012304246426, 0.007064139936119318, 0.011323743499815464, 0.011072876863181591, 0.008173125796020031], "reduce_n2_p1": [0.03607933223247528, 0.0741392970085144, 0.021153023466467857, 0.1549062728881836, 0.5434674620628357, 0.06316153705120087, 0.03212597593665123], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010437514632940292, 0.00823951419442892, 0.009688219986855984, 0.00612662686035037, 0.9331653714179993, 0.010543043725192547, 0.010403214953839779], "reduce_n3_p1": [0.028793267905712128, 0.7856088280677795, 0.021451342850923538, 0.02566228061914444, 0.009785558097064495, 0.03288069739937782, 0.02822210267186165], "reduce_n3_p2": [0.03349796310067177, 0.04264552891254425, 0.050659362226724625, 0.2827063500881195, 0.21138764917850494, 0.05211345851421356, 0.06663624197244644], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04345687851309776, 0.6709650754928589, 0.055483128875494, 0.02197464555501938, 0.03465629369020462, 0.11295466125011444, 0.025012629106640816], "normal_n2_p1": [0.04180833324790001, 0.8583646416664124, 0.04793841391801834, 0.018702546134591103, 0.0020729023963212967, 0.006374934688210487, 0.008177077397704124], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.036647286266088486, 0.01062245573848486, 0.01872485689818859, 0.8387537598609924, 0.02167581580579281, 0.03348164260387421, 0.00951208733022213], "normal_n3_p1": [0.030690839514136314, 0.019908273592591286, 0.01336543820798397, 0.8795740604400635, 0.011417720466852188, 0.009165003895759583, 0.017650725319981575], "normal_n3_p2": [0.0669335201382637, 0.09261669218540192, 0.0361739918589592, 0.37723222374916077, 0.029690561816096306, 0.2202419638633728, 0.04533740133047104], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02272527851164341, 0.9245490431785583, 0.0066134012304246426, 0.007064139936119318, 0.011323743499815464, 0.011072876863181591, 0.008173125796020031], "reduce_n2_p1": [0.03607933223247528, 0.0741392970085144, 0.021153023466467857, 0.1549062728881836, 0.5434674620628357, 0.06316153705120087, 0.03212597593665123], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010437514632940292, 0.00823951419442892, 0.009688219986855984, 0.00612662686035037, 0.9331653714179993, 0.010543043725192547, 0.010403214953839779], "reduce_n3_p1": [0.028793267905712128, 0.7856088280677795, 0.021451342850923538, 0.02566228061914444, 0.009785558097064495, 0.03288069739937782, 0.02822210267186165], "reduce_n3_p2": [0.03349796310067177, 0.04264552891254425, 0.050659362226724625, 0.2827063500881195, 0.21138764917850494, 0.05211345851421356, 0.06663624197244644], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.059623029083013535, 0.4674958884716034, 0.053346212953329086, 0.025516267865896225, 0.027564145624637604, 0.2951122224330902, 0.02487398125231266], "normal_n2_p1": [0.03179238736629486, 0.8642930388450623, 0.042237404733896255, 0.017302576452493668, 0.003575075650587678, 0.010564497672021389, 0.010639672167599201], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02105291560292244, 0.011057751253247261, 0.015308337286114693, 0.8723722100257874, 0.0210388395935297, 0.02520456723868847, 0.012121295556426048], "normal_n3_p1": [0.07317014038562775, 0.05895877629518509, 0.0184079110622406, 0.7257319092750549, 0.021593576297163963, 0.029140619561076164, 0.040970977395772934], "normal_n3_p2": [0.13472230732440948, 0.44927260279655457, 0.09134741127490997, 0.02299978770315647, 0.011057177558541298, 0.2536821961402893, 0.015392421744763851], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.034421153366565704, 0.8702611923217773, 0.010539287701249123, 0.015200386755168438, 0.02140156365931034, 0.017599347978830338, 0.015718724578619003], "reduce_n2_p1": [0.035713665187358856, 0.06897696107625961, 0.019662881270051003, 0.16280193626880646, 0.6009222865104675, 0.03581450507044792, 0.026532435789704323], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0272719357162714, 0.015052306465804577, 0.016415590420365334, 0.012136667035520077, 0.8776898980140686, 0.00990931037813425, 0.021826187148690224], "reduce_n3_p1": [0.024483315646648407, 0.8670037388801575, 0.019430506974458694, 0.02346087247133255, 0.011861876584589481, 0.022205449640750885, 0.021343478932976723], "reduce_n3_p2": [0.05003257095813751, 0.06089399382472038, 0.05985719710588455, 0.4440726041793823, 0.08711351454257965, 0.03572949767112732, 0.05091366171836853], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.059623029083013535, 0.4674958884716034, 0.053346212953329086, 0.025516267865896225, 0.027564145624637604, 0.2951122224330902, 0.02487398125231266], "normal_n2_p1": [0.03179238736629486, 0.8642930388450623, 0.042237404733896255, 0.017302576452493668, 0.003575075650587678, 0.010564497672021389, 0.010639672167599201], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02105291560292244, 0.011057751253247261, 0.015308337286114693, 0.8723722100257874, 0.0210388395935297, 0.02520456723868847, 0.012121295556426048], "normal_n3_p1": [0.07317014038562775, 0.05895877629518509, 0.0184079110622406, 0.7257319092750549, 0.021593576297163963, 0.029140619561076164, 0.040970977395772934], "normal_n3_p2": [0.13472230732440948, 0.44927260279655457, 0.09134741127490997, 0.02299978770315647, 0.011057177558541298, 0.2536821961402893, 0.015392421744763851], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.034421153366565704, 0.8702611923217773, 0.010539287701249123, 0.015200386755168438, 0.02140156365931034, 0.017599347978830338, 0.015718724578619003], "reduce_n2_p1": [0.035713665187358856, 0.06897696107625961, 0.019662881270051003, 0.16280193626880646, 0.6009222865104675, 0.03581450507044792, 0.026532435789704323], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0272719357162714, 0.015052306465804577, 0.016415590420365334, 0.012136667035520077, 0.8776898980140686, 0.00990931037813425, 0.021826187148690224], "reduce_n3_p1": [0.024483315646648407, 0.8670037388801575, 0.019430506974458694, 0.02346087247133255, 0.011861876584589481, 0.022205449640750885, 0.021343478932976723], "reduce_n3_p2": [0.05003257095813751, 0.06089399382472038, 0.05985719710588455, 0.4440726041793823, 0.08711351454257965, 0.03572949767112732, 0.05091366171836853], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.016122940927743912, 0.051243655383586884, 0.007111906539648771, 0.0044291201047599316, 0.006555147934705019, 0.9013832807540894, 0.00557659612968564], "normal_n2_p1": [0.04939725250005722, 0.7465494275093079, 0.0607503242790699, 0.03505842760205269, 0.009626494720578194, 0.026035217568278313, 0.023704063147306442], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01929202303290367, 0.015459243208169937, 0.018266279250383377, 0.8473955988883972, 0.02605370059609413, 0.033488139510154724, 0.017413567751646042], "normal_n3_p1": [0.05289546772837639, 0.02873501181602478, 0.013576912693679333, 0.7813622355461121, 0.02824017032980919, 0.031350649893283844, 0.03966673091053963], "normal_n3_p2": [0.04608741030097008, 0.030100129544734955, 0.017182350158691406, 0.003932120744138956, 0.005721272900700569, 0.8785164952278137, 0.01149622444063425], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04780873656272888, 0.8030807375907898, 0.015992579981684685, 0.021175304427742958, 0.03352229669690132, 0.024912990629673004, 0.02897825837135315], "reduce_n2_p1": [0.036967962980270386, 0.044066984206438065, 0.024623235687613487, 0.34758153557777405, 0.4303901195526123, 0.033024631440639496, 0.033898063004016876], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.09066284447908401, 0.03243319317698479, 0.031152039766311646, 0.034981533885002136, 0.70644211769104, 0.016625164076685905, 0.04622563347220421], "reduce_n3_p1": [0.026445049792528152, 0.8245443105697632, 0.027491219341754913, 0.025085829198360443, 0.02330809272825718, 0.02299036830663681, 0.043244633823633194], "reduce_n3_p2": [0.08940190076828003, 0.12233995646238327, 0.10343164205551147, 0.31826072931289673, 0.026203466579318047, 0.08016864955425262, 0.05436946824193001], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.016122940927743912, 0.051243655383586884, 0.007111906539648771, 0.0044291201047599316, 0.006555147934705019, 0.9013832807540894, 0.00557659612968564], "normal_n2_p1": [0.04939725250005722, 0.7465494275093079, 0.0607503242790699, 0.03505842760205269, 0.009626494720578194, 0.026035217568278313, 0.023704063147306442], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01929202303290367, 0.015459243208169937, 0.018266279250383377, 0.8473955988883972, 0.02605370059609413, 0.033488139510154724, 0.017413567751646042], "normal_n3_p1": [0.05289546772837639, 0.02873501181602478, 0.013576912693679333, 0.7813622355461121, 0.02824017032980919, 0.031350649893283844, 0.03966673091053963], "normal_n3_p2": [0.04608741030097008, 0.030100129544734955, 0.017182350158691406, 0.003932120744138956, 0.005721272900700569, 0.8785164952278137, 0.01149622444063425], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04780873656272888, 0.8030807375907898, 0.015992579981684685, 0.021175304427742958, 0.03352229669690132, 0.024912990629673004, 0.02897825837135315], "reduce_n2_p1": [0.036967962980270386, 0.044066984206438065, 0.024623235687613487, 0.34758153557777405, 0.4303901195526123, 0.033024631440639496, 0.033898063004016876], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.09066284447908401, 0.03243319317698479, 0.031152039766311646, 0.034981533885002136, 0.70644211769104, 0.016625164076685905, 0.04622563347220421], "reduce_n3_p1": [0.026445049792528152, 0.8245443105697632, 0.027491219341754913, 0.025085829198360443, 0.02330809272825718, 0.02299036830663681, 0.043244633823633194], "reduce_n3_p2": [0.08940190076828003, 0.12233995646238327, 0.10343164205551147, 0.31826072931289673, 0.026203466579318047, 0.08016864955425262, 0.05436946824193001], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.18128971755504608, 0.47556957602500916, 0.046224385499954224, 0.015713054686784744, 0.024086302146315575, 0.21343128383159637, 0.01861872710287571], "normal_n2_p1": [0.05031505972146988, 0.7521153092384338, 0.047825951129198074, 0.039277467876672745, 0.015480642206966877, 0.026650957763195038, 0.02565981261432171], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.037327591329813004, 0.03644212707877159, 0.03823121637105942, 0.7153961062431335, 0.04529265686869621, 0.0631118193268776, 0.029153132811188698], "normal_n3_p1": [0.030452940613031387, 0.015118932351469994, 0.00880467239767313, 0.9019282460212708, 0.014614930376410484, 0.008085695095360279, 0.012069270946085453], "normal_n3_p2": [0.031514763832092285, 0.009444011375308037, 0.013262586668133736, 0.0019356870325282216, 0.004972794093191624, 0.9211882948875427, 0.01190119981765747], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07164499163627625, 0.5627157688140869, 0.033482056111097336, 0.03279593214392662, 0.08807596564292908, 0.04811829701066017, 0.09724922478199005], "reduce_n2_p1": [0.013542059808969498, 0.010597885586321354, 0.013104413636028767, 0.8538036346435547, 0.03750132769346237, 0.015720903873443604, 0.02882055938243866], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.004291854798793793, 0.00942645687609911, 0.009714278392493725, 0.00975020695477724, 0.9425005912780762, 0.006928110029548407, 0.006398605648428202], "reduce_n3_p1": [0.07069491595029831, 0.7423238158226013, 0.024519121274352074, 0.05903775990009308, 0.034691713750362396, 0.028995143249630928, 0.028414517641067505], "reduce_n3_p2": [0.047278162091970444, 0.04094882681965828, 0.055514268577098846, 0.5506967902183533, 0.011749174445867538, 0.08445556461811066, 0.07501480728387833], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.18128971755504608, 0.47556957602500916, 0.046224385499954224, 0.015713054686784744, 0.024086302146315575, 0.21343128383159637, 0.01861872710287571], "normal_n2_p1": [0.05031505972146988, 0.7521153092384338, 0.047825951129198074, 0.039277467876672745, 0.015480642206966877, 0.026650957763195038, 0.02565981261432171], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.037327591329813004, 0.03644212707877159, 0.03823121637105942, 0.7153961062431335, 0.04529265686869621, 0.0631118193268776, 0.029153132811188698], "normal_n3_p1": [0.030452940613031387, 0.015118932351469994, 0.00880467239767313, 0.9019282460212708, 0.014614930376410484, 0.008085695095360279, 0.012069270946085453], "normal_n3_p2": [0.031514763832092285, 0.009444011375308037, 0.013262586668133736, 0.0019356870325282216, 0.004972794093191624, 0.9211882948875427, 0.01190119981765747], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07164499163627625, 0.5627157688140869, 0.033482056111097336, 0.03279593214392662, 0.08807596564292908, 0.04811829701066017, 0.09724922478199005], "reduce_n2_p1": [0.013542059808969498, 0.010597885586321354, 0.013104413636028767, 0.8538036346435547, 0.03750132769346237, 0.015720903873443604, 0.02882055938243866], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.004291854798793793, 0.00942645687609911, 0.009714278392493725, 0.00975020695477724, 0.9425005912780762, 0.006928110029548407, 0.006398605648428202], "reduce_n3_p1": [0.07069491595029831, 0.7423238158226013, 0.024519121274352074, 0.05903775990009308, 0.034691713750362396, 0.028995143249630928, 0.028414517641067505], "reduce_n3_p2": [0.047278162091970444, 0.04094882681965828, 0.055514268577098846, 0.5506967902183533, 0.011749174445867538, 0.08445556461811066, 0.07501480728387833], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.47016170620918274, 0.4467407763004303, 0.03405875712633133, 0.007550589274615049, 0.01257865410298109, 0.013420045375823975, 0.008588957600295544], "normal_n2_p1": [0.08723016083240509, 0.66204434633255, 0.05619741976261139, 0.03710118681192398, 0.030824748799204826, 0.028705893084406853, 0.042991138994693756], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03760976344347, 0.041848041117191315, 0.03825035318732262, 0.6679770350456238, 0.04909851774573326, 0.09366540610790253, 0.03273485228419304], "normal_n3_p1": [0.03029092587530613, 0.014967706054449081, 0.011349571868777275, 0.8912083506584167, 0.020090144127607346, 0.009245036169886589, 0.011541400104761124], "normal_n3_p2": [0.010582308284938335, 0.004677395801991224, 0.006654329132288694, 0.00174544972833246, 0.005249118898063898, 0.9464977383613586, 0.016434306278824806], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13594287633895874, 0.5347115993499756, 0.03252563253045082, 0.033283479511737823, 0.09745608270168304, 0.05424102395772934, 0.05901017412543297], "reduce_n2_p1": [0.008542600087821484, 0.005139973480254412, 0.008884304203093052, 0.9227319955825806, 0.008099553175270557, 0.00927707925438881, 0.022075537592172623], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.001508983550593257, 0.006459751166403294, 0.00718429172411561, 0.007006702944636345, 0.9601280689239502, 0.006256001070141792, 0.0035778104793280363], "reduce_n3_p1": [0.15140871703624725, 0.7486684918403625, 0.014999431557953358, 0.013743020594120026, 0.023076104000210762, 0.020510630682110786, 0.011940616182982922], "reduce_n3_p2": [0.028816627338528633, 0.02604425512254238, 0.0467895045876503, 0.39024654030799866, 0.010989603586494923, 0.19681912660598755, 0.12537607550621033], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.47016170620918274, 0.4467407763004303, 0.03405875712633133, 0.007550589274615049, 0.01257865410298109, 0.013420045375823975, 0.008588957600295544], "normal_n2_p1": [0.08723016083240509, 0.66204434633255, 0.05619741976261139, 0.03710118681192398, 0.030824748799204826, 0.028705893084406853, 0.042991138994693756], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03760976344347, 0.041848041117191315, 0.03825035318732262, 0.6679770350456238, 0.04909851774573326, 0.09366540610790253, 0.03273485228419304], "normal_n3_p1": [0.03029092587530613, 0.014967706054449081, 0.011349571868777275, 0.8912083506584167, 0.020090144127607346, 0.009245036169886589, 0.011541400104761124], "normal_n3_p2": [0.010582308284938335, 0.004677395801991224, 0.006654329132288694, 0.00174544972833246, 0.005249118898063898, 0.9464977383613586, 0.016434306278824806], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13594287633895874, 0.5347115993499756, 0.03252563253045082, 0.033283479511737823, 0.09745608270168304, 0.05424102395772934, 0.05901017412543297], "reduce_n2_p1": [0.008542600087821484, 0.005139973480254412, 0.008884304203093052, 0.9227319955825806, 0.008099553175270557, 0.00927707925438881, 0.022075537592172623], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.001508983550593257, 0.006459751166403294, 0.00718429172411561, 0.007006702944636345, 0.9601280689239502, 0.006256001070141792, 0.0035778104793280363], "reduce_n3_p1": [0.15140871703624725, 0.7486684918403625, 0.014999431557953358, 0.013743020594120026, 0.023076104000210762, 0.020510630682110786, 0.011940616182982922], "reduce_n3_p2": [0.028816627338528633, 0.02604425512254238, 0.0467895045876503, 0.39024654030799866, 0.010989603586494923, 0.19681912660598755, 0.12537607550621033], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.35642334818840027, 0.5924878716468811, 0.025381695479154587, 0.005656794644892216, 0.006725943181663752, 0.0032365245278924704, 0.006036877632141113], "normal_n2_p1": [0.14624814689159393, 0.28397390246391296, 0.09098467230796814, 0.06563020497560501, 0.0839686468243599, 0.050351932644844055, 0.11478625237941742], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011400035582482815, 0.015910876914858818, 0.012556387111544609, 0.9150172472000122, 0.01115494780242443, 0.018420517444610596, 0.007725734729319811], "normal_n3_p1": [0.05254790186882019, 0.03073425404727459, 0.028386462479829788, 0.7646126747131348, 0.04575314372777939, 0.02583821676671505, 0.022367920726537704], "normal_n3_p2": [0.014594332315027714, 0.007498603314161301, 0.012701700441539288, 0.003746685339137912, 0.011276405304670334, 0.8649623394012451, 0.06068718805909157], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.192217618227005, 0.5400627851486206, 0.025942549109458923, 0.042338863015174866, 0.06799259781837463, 0.03701873868703842, 0.04211151599884033], "reduce_n2_p1": [0.010237091220915318, 0.00581928389146924, 0.010719266720116138, 0.9134001731872559, 0.005792131647467613, 0.010225743055343628, 0.02724372036755085], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.001978404587134719, 0.008163411170244217, 0.008587809279561043, 0.008709244430065155, 0.9488010406494141, 0.009196633473038673, 0.004637491889297962], "reduce_n3_p1": [0.20137247443199158, 0.7474485635757446, 0.0076649789698421955, 0.003993010614067316, 0.011241401545703411, 0.008956757374107838, 0.005348402541130781], "reduce_n3_p2": [0.029230255633592606, 0.02119370363652706, 0.04414093866944313, 0.09123920649290085, 0.011921998113393784, 0.4591098427772522, 0.1654488891363144], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.35642334818840027, 0.5924878716468811, 0.025381695479154587, 0.005656794644892216, 0.006725943181663752, 0.0032365245278924704, 0.006036877632141113], "normal_n2_p1": [0.14624814689159393, 0.28397390246391296, 0.09098467230796814, 0.06563020497560501, 0.0839686468243599, 0.050351932644844055, 0.11478625237941742], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011400035582482815, 0.015910876914858818, 0.012556387111544609, 0.9150172472000122, 0.01115494780242443, 0.018420517444610596, 0.007725734729319811], "normal_n3_p1": [0.05254790186882019, 0.03073425404727459, 0.028386462479829788, 0.7646126747131348, 0.04575314372777939, 0.02583821676671505, 0.022367920726537704], "normal_n3_p2": [0.014594332315027714, 0.007498603314161301, 0.012701700441539288, 0.003746685339137912, 0.011276405304670334, 0.8649623394012451, 0.06068718805909157], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.192217618227005, 0.5400627851486206, 0.025942549109458923, 0.042338863015174866, 0.06799259781837463, 0.03701873868703842, 0.04211151599884033], "reduce_n2_p1": [0.010237091220915318, 0.00581928389146924, 0.010719266720116138, 0.9134001731872559, 0.005792131647467613, 0.010225743055343628, 0.02724372036755085], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.001978404587134719, 0.008163411170244217, 0.008587809279561043, 0.008709244430065155, 0.9488010406494141, 0.009196633473038673, 0.004637491889297962], "reduce_n3_p1": [0.20137247443199158, 0.7474485635757446, 0.0076649789698421955, 0.003993010614067316, 0.011241401545703411, 0.008956757374107838, 0.005348402541130781], "reduce_n3_p2": [0.029230255633592606, 0.02119370363652706, 0.04414093866944313, 0.09123920649290085, 0.011921998113393784, 0.4591098427772522, 0.1654488891363144], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.6101406812667847, 0.3530070185661316, 0.01364976353943348, 0.006670243572443724, 0.005113652907311916, 0.0017528716707602143, 0.005370756145566702], "normal_n2_p1": [0.22178301215171814, 0.22049935162067413, 0.16007950901985168, 0.06448405236005783, 0.11994809657335281, 0.045213472098112106, 0.03927881643176079], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.007340870797634125, 0.01026998646557331, 0.007983576506376266, 0.9488027691841125, 0.006658067926764488, 0.009402642957866192, 0.0045480248518288136], "normal_n3_p1": [0.0770869180560112, 0.05662451311945915, 0.05192041024565697, 0.5690736174583435, 0.07699813693761826, 0.07256129384040833, 0.039635177701711655], "normal_n3_p2": [0.01050191093236208, 0.006812363862991333, 0.009972432628273964, 0.004506194964051247, 0.01051084790378809, 0.9370629191398621, 0.005711602978408337], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.17755040526390076, 0.5758367776870728, 0.022944796830415726, 0.05006000027060509, 0.04502154141664505, 0.03487495705485344, 0.03702836111187935], "reduce_n2_p1": [0.020319953560829163, 0.011574521660804749, 0.020742379128932953, 0.841833233833313, 0.008821982890367508, 0.01811961643397808, 0.04879130423069], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005076141562312841, 0.014172451570630074, 0.014527877792716026, 0.016402166336774826, 0.9044274687767029, 0.01814482919871807, 0.009451855905354023], "reduce_n3_p1": [0.055249039083719254, 0.898600161075592, 0.007240669801831245, 0.003328037215396762, 0.009245474822819233, 0.006737374234944582, 0.004991946741938591], "reduce_n3_p2": [0.005722383037209511, 0.004146921448409557, 0.00831039808690548, 0.005967183969914913, 0.0034043723717331886, 0.9286963939666748, 0.02186400815844536], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.6101406812667847, 0.3530070185661316, 0.01364976353943348, 0.006670243572443724, 0.005113652907311916, 0.0017528716707602143, 0.005370756145566702], "normal_n2_p1": [0.22178301215171814, 0.22049935162067413, 0.16007950901985168, 0.06448405236005783, 0.11994809657335281, 0.045213472098112106, 0.03927881643176079], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.007340870797634125, 0.01026998646557331, 0.007983576506376266, 0.9488027691841125, 0.006658067926764488, 0.009402642957866192, 0.0045480248518288136], "normal_n3_p1": [0.0770869180560112, 0.05662451311945915, 0.05192041024565697, 0.5690736174583435, 0.07699813693761826, 0.07256129384040833, 0.039635177701711655], "normal_n3_p2": [0.01050191093236208, 0.006812363862991333, 0.009972432628273964, 0.004506194964051247, 0.01051084790378809, 0.9370629191398621, 0.005711602978408337], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.17755040526390076, 0.5758367776870728, 0.022944796830415726, 0.05006000027060509, 0.04502154141664505, 0.03487495705485344, 0.03702836111187935], "reduce_n2_p1": [0.020319953560829163, 0.011574521660804749, 0.020742379128932953, 0.841833233833313, 0.008821982890367508, 0.01811961643397808, 0.04879130423069], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005076141562312841, 0.014172451570630074, 0.014527877792716026, 0.016402166336774826, 0.9044274687767029, 0.01814482919871807, 0.009451855905354023], "reduce_n3_p1": [0.055249039083719254, 0.898600161075592, 0.007240669801831245, 0.003328037215396762, 0.009245474822819233, 0.006737374234944582, 0.004991946741938591], "reduce_n3_p2": [0.005722383037209511, 0.004146921448409557, 0.00831039808690548, 0.005967183969914913, 0.0034043723717331886, 0.9286963939666748, 0.02186400815844536], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.5875353217124939, 0.35276320576667786, 0.01662454567849636, 0.01317022554576397, 0.009220331907272339, 0.0024548491928726435, 0.00884561613202095], "normal_n2_p1": [0.13081511855125427, 0.21012544631958008, 0.15215320885181427, 0.0752732902765274, 0.2516220808029175, 0.05294843763113022, 0.03728295490145683], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.00949296448379755, 0.012184523977339268, 0.00987862329930067, 0.9375441670417786, 0.007889407686889172, 0.009979129768908024, 0.0056160818785429], "normal_n3_p1": [0.05519324541091919, 0.0422808900475502, 0.04518510401248932, 0.656782329082489, 0.09050191938877106, 0.025715991854667664, 0.032905012369155884], "normal_n3_p2": [0.013077820651233196, 0.009491573087871075, 0.01366271823644638, 0.007215088699012995, 0.012929065153002739, 0.9255588054656982, 0.0029295021668076515], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1693374514579773, 0.7031552195549011, 0.01277898345142603, 0.025912683457136154, 0.021634431555867195, 0.02232091687619686, 0.012365632690489292], "reduce_n2_p1": [0.017616407945752144, 0.011401546187698841, 0.018358297646045685, 0.8632611632347107, 0.008076627738773823, 0.015504107810556889, 0.04434741660952568], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.015217791311442852, 0.027457254007458687, 0.025384902954101562, 0.030970219522714615, 0.8177689909934998, 0.031046312302350998, 0.02014094777405262], "reduce_n3_p1": [0.016384802758693695, 0.9112227559089661, 0.010551901534199715, 0.005846124608069658, 0.013454738073050976, 0.009444600902497768, 0.008888532407581806], "reduce_n3_p2": [0.008420455269515514, 0.005383458454161882, 0.01011057011783123, 0.004125004168599844, 0.005509278737008572, 0.9278308749198914, 0.019291255623102188], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.5875353217124939, 0.35276320576667786, 0.01662454567849636, 0.01317022554576397, 0.009220331907272339, 0.0024548491928726435, 0.00884561613202095], "normal_n2_p1": [0.13081511855125427, 0.21012544631958008, 0.15215320885181427, 0.0752732902765274, 0.2516220808029175, 0.05294843763113022, 0.03728295490145683], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.00949296448379755, 0.012184523977339268, 0.00987862329930067, 0.9375441670417786, 0.007889407686889172, 0.009979129768908024, 0.0056160818785429], "normal_n3_p1": [0.05519324541091919, 0.0422808900475502, 0.04518510401248932, 0.656782329082489, 0.09050191938877106, 0.025715991854667664, 0.032905012369155884], "normal_n3_p2": [0.013077820651233196, 0.009491573087871075, 0.01366271823644638, 0.007215088699012995, 0.012929065153002739, 0.9255588054656982, 0.0029295021668076515], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1693374514579773, 0.7031552195549011, 0.01277898345142603, 0.025912683457136154, 0.021634431555867195, 0.02232091687619686, 0.012365632690489292], "reduce_n2_p1": [0.017616407945752144, 0.011401546187698841, 0.018358297646045685, 0.8632611632347107, 0.008076627738773823, 0.015504107810556889, 0.04434741660952568], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.015217791311442852, 0.027457254007458687, 0.025384902954101562, 0.030970219522714615, 0.8177689909934998, 0.031046312302350998, 0.02014094777405262], "reduce_n3_p1": [0.016384802758693695, 0.9112227559089661, 0.010551901534199715, 0.005846124608069658, 0.013454738073050976, 0.009444600902497768, 0.008888532407581806], "reduce_n3_p2": [0.008420455269515514, 0.005383458454161882, 0.01011057011783123, 0.004125004168599844, 0.005509278737008572, 0.9278308749198914, 0.019291255623102188], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.6235337853431702, 0.28143414855003357, 0.017926162108778954, 0.02470848150551319, 0.013335141353309155, 0.0039466675370931625, 0.014894038438796997], "normal_n2_p1": [0.4464263916015625, 0.26417210698127747, 0.1582731008529663, 0.03633653745055199, 0.029947804287075996, 0.0225734431296587, 0.014027693308889866], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01610318385064602, 0.01899067871272564, 0.016501756384968758, 0.8941015005111694, 0.013705692254006863, 0.01519787684082985, 0.010019360110163689], "normal_n3_p1": [0.03249172866344452, 0.02635302022099495, 0.027701931074261665, 0.8137346506118774, 0.03809421509504318, 0.012445181608200073, 0.021080592647194862], "normal_n3_p2": [0.02012011595070362, 0.01647910848259926, 0.024473611265420914, 0.01400619838386774, 0.020423317328095436, 0.8772804141044617, 0.004343538079410791], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07136346399784088, 0.8258857131004333, 0.011540689505636692, 0.021914508193731308, 0.012561837211251259, 0.022358547896146774, 0.008829973638057709], "reduce_n2_p1": [0.01575540192425251, 0.012488189153373241, 0.01674710027873516, 0.8728848099708557, 0.008743819780647755, 0.014145730063319206, 0.042492978274822235], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.011367470026016235, 0.014449299313127995, 0.012829582206904888, 0.011298197321593761, 0.9150977730751038, 0.01197871845215559, 0.010258749127388], "reduce_n3_p1": [0.016858821734786034, 0.8095192909240723, 0.022359494119882584, 0.014290151186287403, 0.027841201052069664, 0.020781034603714943, 0.022190222516655922], "reduce_n3_p2": [0.04300682619214058, 0.022848989814519882, 0.03954869136214256, 0.012753951363265514, 0.02722570300102234, 0.7248796224594116, 0.06189486011862755], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.6235337853431702, 0.28143414855003357, 0.017926162108778954, 0.02470848150551319, 0.013335141353309155, 0.0039466675370931625, 0.014894038438796997], "normal_n2_p1": [0.4464263916015625, 0.26417210698127747, 0.1582731008529663, 0.03633653745055199, 0.029947804287075996, 0.0225734431296587, 0.014027693308889866], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01610318385064602, 0.01899067871272564, 0.016501756384968758, 0.8941015005111694, 0.013705692254006863, 0.01519787684082985, 0.010019360110163689], "normal_n3_p1": [0.03249172866344452, 0.02635302022099495, 0.027701931074261665, 0.8137346506118774, 0.03809421509504318, 0.012445181608200073, 0.021080592647194862], "normal_n3_p2": [0.02012011595070362, 0.01647910848259926, 0.024473611265420914, 0.01400619838386774, 0.020423317328095436, 0.8772804141044617, 0.004343538079410791], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07136346399784088, 0.8258857131004333, 0.011540689505636692, 0.021914508193731308, 0.012561837211251259, 0.022358547896146774, 0.008829973638057709], "reduce_n2_p1": [0.01575540192425251, 0.012488189153373241, 0.01674710027873516, 0.8728848099708557, 0.008743819780647755, 0.014145730063319206, 0.042492978274822235], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.011367470026016235, 0.014449299313127995, 0.012829582206904888, 0.011298197321593761, 0.9150977730751038, 0.01197871845215559, 0.010258749127388], "reduce_n3_p1": [0.016858821734786034, 0.8095192909240723, 0.022359494119882584, 0.014290151186287403, 0.027841201052069664, 0.020781034603714943, 0.022190222516655922], "reduce_n3_p2": [0.04300682619214058, 0.022848989814519882, 0.03954869136214256, 0.012753951363265514, 0.02722570300102234, 0.7248796224594116, 0.06189486011862755], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9135745763778687, 0.03701232373714447, 0.005157487001270056, 0.016770120710134506, 0.006768205668777227, 0.0021155131980776787, 0.0073434170335531235], "normal_n2_p1": [0.8527979254722595, 0.06605474650859833, 0.02838708460330963, 0.01806446723639965, 0.006218683905899525, 0.009338751435279846, 0.005051375832408667], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.019016703590750694, 0.01864904910326004, 0.017689265310764313, 0.8758489489555359, 0.017284417524933815, 0.017323849722743034, 0.01299584936350584], "normal_n3_p1": [0.05147036164999008, 0.03530938923358917, 0.03801918402314186, 0.6761518716812134, 0.0630900114774704, 0.027160940691828728, 0.04253920167684555], "normal_n3_p2": [0.029276367276906967, 0.023397017270326614, 0.021085655316710472, 0.02316112071275711, 0.02595372498035431, 0.8308798670768738, 0.00879744254052639], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08744516968727112, 0.7006281018257141, 0.024610010907053947, 0.04828869178891182, 0.02422170899808407, 0.04744698852300644, 0.017157744616270065], "reduce_n2_p1": [0.013316033408045769, 0.011168899945914745, 0.012781002558767796, 0.9122793078422546, 0.008518259041011333, 0.01088172197341919, 0.020201299339532852], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014265461824834347, 0.014456410892307758, 0.014827058650553226, 0.01150224544107914, 0.9066452383995056, 0.01174081303179264, 0.013262735679745674], "reduce_n3_p1": [0.023772088810801506, 0.5764445066452026, 0.0335085391998291, 0.02812027744948864, 0.07681035250425339, 0.03896617516875267, 0.06566604971885681], "reduce_n3_p2": [0.007888423278927803, 0.01029177475720644, 0.015167425386607647, 0.006421814206987619, 0.012217158451676369, 0.9076218008995056, 0.01880478858947754], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9135745763778687, 0.03701232373714447, 0.005157487001270056, 0.016770120710134506, 0.006768205668777227, 0.0021155131980776787, 0.0073434170335531235], "normal_n2_p1": [0.8527979254722595, 0.06605474650859833, 0.02838708460330963, 0.01806446723639965, 0.006218683905899525, 0.009338751435279846, 0.005051375832408667], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.019016703590750694, 0.01864904910326004, 0.017689265310764313, 0.8758489489555359, 0.017284417524933815, 0.017323849722743034, 0.01299584936350584], "normal_n3_p1": [0.05147036164999008, 0.03530938923358917, 0.03801918402314186, 0.6761518716812134, 0.0630900114774704, 0.027160940691828728, 0.04253920167684555], "normal_n3_p2": [0.029276367276906967, 0.023397017270326614, 0.021085655316710472, 0.02316112071275711, 0.02595372498035431, 0.8308798670768738, 0.00879744254052639], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08744516968727112, 0.7006281018257141, 0.024610010907053947, 0.04828869178891182, 0.02422170899808407, 0.04744698852300644, 0.017157744616270065], "reduce_n2_p1": [0.013316033408045769, 0.011168899945914745, 0.012781002558767796, 0.9122793078422546, 0.008518259041011333, 0.01088172197341919, 0.020201299339532852], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014265461824834347, 0.014456410892307758, 0.014827058650553226, 0.01150224544107914, 0.9066452383995056, 0.01174081303179264, 0.013262735679745674], "reduce_n3_p1": [0.023772088810801506, 0.5764445066452026, 0.0335085391998291, 0.02812027744948864, 0.07681035250425339, 0.03896617516875267, 0.06566604971885681], "reduce_n3_p2": [0.007888423278927803, 0.01029177475720644, 0.015167425386607647, 0.006421814206987619, 0.012217158451676369, 0.9076218008995056, 0.01880478858947754], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9029602408409119, 0.028100239112973213, 0.00789191946387291, 0.019538503140211105, 0.01066006813198328, 0.003729029092937708, 0.011538528837263584], "normal_n2_p1": [0.7385901212692261, 0.09726835787296295, 0.04046930372714996, 0.04168234393000603, 0.009938782081007957, 0.0219131987541914, 0.010257535614073277], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0489877425134182, 0.04471266642212868, 0.045773062855005264, 0.6858648061752319, 0.043656088411808014, 0.034492041915655136, 0.031237244606018066], "normal_n3_p1": [0.045250244438648224, 0.029170086607336998, 0.02997269667685032, 0.6758994460105896, 0.04558375105261803, 0.039913248270750046, 0.07031519711017609], "normal_n3_p2": [0.09865956753492355, 0.05736175924539566, 0.05992243066430092, 0.04883154109120369, 0.05807310715317726, 0.41733670234680176, 0.030445082113146782], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04728461429476738, 0.5000030994415283, 0.03807969391345978, 0.1746922880411148, 0.04337466508150101, 0.08157997578382492, 0.03418608382344246], "reduce_n2_p1": [0.016786599531769753, 0.015563909895718098, 0.01572946459054947, 0.8884885907173157, 0.012146555818617344, 0.013853576965630054, 0.023388933390378952], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04464726522564888, 0.03042515181005001, 0.031588777899742126, 0.0244404599070549, 0.7819642424583435, 0.02639291062951088, 0.031517740339040756], "reduce_n3_p1": [0.038488682359457016, 0.21502505242824554, 0.03027457371354103, 0.036719705909490585, 0.2694816589355469, 0.040267013013362885, 0.1253366470336914], "reduce_n3_p2": [0.003626039018854499, 0.006732905749231577, 0.008695396594703197, 0.004411817993968725, 0.007160152308642864, 0.9531554579734802, 0.007418174762278795], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9029602408409119, 0.028100239112973213, 0.00789191946387291, 0.019538503140211105, 0.01066006813198328, 0.003729029092937708, 0.011538528837263584], "normal_n2_p1": [0.7385901212692261, 0.09726835787296295, 0.04046930372714996, 0.04168234393000603, 0.009938782081007957, 0.0219131987541914, 0.010257535614073277], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0489877425134182, 0.04471266642212868, 0.045773062855005264, 0.6858648061752319, 0.043656088411808014, 0.034492041915655136, 0.031237244606018066], "normal_n3_p1": [0.045250244438648224, 0.029170086607336998, 0.02997269667685032, 0.6758994460105896, 0.04558375105261803, 0.039913248270750046, 0.07031519711017609], "normal_n3_p2": [0.09865956753492355, 0.05736175924539566, 0.05992243066430092, 0.04883154109120369, 0.05807310715317726, 0.41733670234680176, 0.030445082113146782], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04728461429476738, 0.5000030994415283, 0.03807969391345978, 0.1746922880411148, 0.04337466508150101, 0.08157997578382492, 0.03418608382344246], "reduce_n2_p1": [0.016786599531769753, 0.015563909895718098, 0.01572946459054947, 0.8884885907173157, 0.012146555818617344, 0.013853576965630054, 0.023388933390378952], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04464726522564888, 0.03042515181005001, 0.031588777899742126, 0.0244404599070549, 0.7819642424583435, 0.02639291062951088, 0.031517740339040756], "reduce_n3_p1": [0.038488682359457016, 0.21502505242824554, 0.03027457371354103, 0.036719705909490585, 0.2694816589355469, 0.040267013013362885, 0.1253366470336914], "reduce_n3_p2": [0.003626039018854499, 0.006732905749231577, 0.008695396594703197, 0.004411817993968725, 0.007160152308642864, 0.9531554579734802, 0.007418174762278795], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7917348146438599, 0.049321498721838, 0.02562039904296398, 0.03508368134498596, 0.028204116970300674, 0.010943500325083733, 0.02929341420531273], "normal_n2_p1": [0.43864792585372925, 0.19112981855869293, 0.0854116752743721, 0.09241630136966705, 0.02164856158196926, 0.05693821981549263, 0.025694280862808228], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04037831351161003, 0.057350825518369675, 0.052332453429698944, 0.6653737425804138, 0.05634404718875885, 0.04245199263095856, 0.037522222846746445], "normal_n3_p1": [0.06438315659761429, 0.05467037111520767, 0.0510341115295887, 0.5102339386940002, 0.06129402667284012, 0.06567057222127914, 0.12140930444002151], "normal_n3_p2": [0.03822987154126167, 0.03901730477809906, 0.03717045113444328, 0.050436247140169144, 0.04488242045044899, 0.7358807921409607, 0.03582455590367317], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03246176987886429, 0.6075180768966675, 0.03766274079680443, 0.15789541602134705, 0.03814283758401871, 0.03199740871787071, 0.05036398023366928], "reduce_n2_p1": [0.0238763727247715, 0.026805581524968147, 0.029879650101065636, 0.7937567830085754, 0.023480618372559547, 0.024853872135281563, 0.04634732007980347], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03433821350336075, 0.027295736595988274, 0.025968223810195923, 0.021556656807661057, 0.823441207408905, 0.024304892867803574, 0.020772486925125122], "reduce_n3_p1": [0.20435677468776703, 0.6193296909332275, 0.020396357402205467, 0.02894001081585884, 0.0243065282702446, 0.030745448544621468, 0.04262787848711014], "reduce_n3_p2": [0.00932617112994194, 0.015980422496795654, 0.019245117902755737, 0.01137800794094801, 0.016921058297157288, 0.8953718543052673, 0.014833424240350723], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7917348146438599, 0.049321498721838, 0.02562039904296398, 0.03508368134498596, 0.028204116970300674, 0.010943500325083733, 0.02929341420531273], "normal_n2_p1": [0.43864792585372925, 0.19112981855869293, 0.0854116752743721, 0.09241630136966705, 0.02164856158196926, 0.05693821981549263, 0.025694280862808228], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04037831351161003, 0.057350825518369675, 0.052332453429698944, 0.6653737425804138, 0.05634404718875885, 0.04245199263095856, 0.037522222846746445], "normal_n3_p1": [0.06438315659761429, 0.05467037111520767, 0.0510341115295887, 0.5102339386940002, 0.06129402667284012, 0.06567057222127914, 0.12140930444002151], "normal_n3_p2": [0.03822987154126167, 0.03901730477809906, 0.03717045113444328, 0.050436247140169144, 0.04488242045044899, 0.7358807921409607, 0.03582455590367317], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03246176987886429, 0.6075180768966675, 0.03766274079680443, 0.15789541602134705, 0.03814283758401871, 0.03199740871787071, 0.05036398023366928], "reduce_n2_p1": [0.0238763727247715, 0.026805581524968147, 0.029879650101065636, 0.7937567830085754, 0.023480618372559547, 0.024853872135281563, 0.04634732007980347], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03433821350336075, 0.027295736595988274, 0.025968223810195923, 0.021556656807661057, 0.823441207408905, 0.024304892867803574, 0.020772486925125122], "reduce_n3_p1": [0.20435677468776703, 0.6193296909332275, 0.020396357402205467, 0.02894001081585884, 0.0243065282702446, 0.030745448544621468, 0.04262787848711014], "reduce_n3_p2": [0.00932617112994194, 0.015980422496795654, 0.019245117902755737, 0.01137800794094801, 0.016921058297157288, 0.8953718543052673, 0.014833424240350723], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2803715169429779, 0.13108615577220917, 0.1383092701435089, 0.14663752913475037, 0.09106218069791794, 0.034921061247587204, 0.09600590169429779], "normal_n2_p1": [0.03146284446120262, 0.15414486825466156, 0.09483259171247482, 0.2717667520046234, 0.0236381646245718, 0.10760700702667236, 0.03981795534491539], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.07098402827978134, 0.10483548790216446, 0.08998064696788788, 0.4319993257522583, 0.1172839030623436, 0.058731041848659515, 0.05005256459116936], "normal_n3_p1": [0.09022583812475204, 0.07698574662208557, 0.0822136327624321, 0.2834988832473755, 0.06311606615781784, 0.089952252805233, 0.20192061364650726], "normal_n3_p2": [0.10788130760192871, 0.09697255492210388, 0.21254099905490875, 0.0883713811635971, 0.09702609479427338, 0.11785608530044556, 0.2660348117351532], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.029367931187152863, 0.20747365057468414, 0.04787615314126015, 0.5218230485916138, 0.042814139276742935, 0.03267801180481911, 0.07181606441736221], "reduce_n2_p1": [0.011417707428336143, 0.014244313351809978, 0.018190473318099976, 0.8978739976882935, 0.010569117963314056, 0.014757592231035233, 0.014554682187736034], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.05627957358956337, 0.04040941223502159, 0.03340177237987518, 0.029974011704325676, 0.7561322450637817, 0.029456567019224167, 0.025559980422258377], "reduce_n3_p1": [0.22144320607185364, 0.6503321528434753, 0.019814806059002876, 0.020017031580209732, 0.009167869575321674, 0.031400177627801895, 0.03395848721265793], "reduce_n3_p2": [0.022074054926633835, 0.03160933777689934, 0.037726834416389465, 0.023811189457774162, 0.03230194002389908, 0.7951192855834961, 0.02846946381032467], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2803715169429779, 0.13108615577220917, 0.1383092701435089, 0.14663752913475037, 0.09106218069791794, 0.034921061247587204, 0.09600590169429779], "normal_n2_p1": [0.03146284446120262, 0.15414486825466156, 0.09483259171247482, 0.2717667520046234, 0.0236381646245718, 0.10760700702667236, 0.03981795534491539], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.07098402827978134, 0.10483548790216446, 0.08998064696788788, 0.4319993257522583, 0.1172839030623436, 0.058731041848659515, 0.05005256459116936], "normal_n3_p1": [0.09022583812475204, 0.07698574662208557, 0.0822136327624321, 0.2834988832473755, 0.06311606615781784, 0.089952252805233, 0.20192061364650726], "normal_n3_p2": [0.10788130760192871, 0.09697255492210388, 0.21254099905490875, 0.0883713811635971, 0.09702609479427338, 0.11785608530044556, 0.2660348117351532], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.029367931187152863, 0.20747365057468414, 0.04787615314126015, 0.5218230485916138, 0.042814139276742935, 0.03267801180481911, 0.07181606441736221], "reduce_n2_p1": [0.011417707428336143, 0.014244313351809978, 0.018190473318099976, 0.8978739976882935, 0.010569117963314056, 0.014757592231035233, 0.014554682187736034], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.05627957358956337, 0.04040941223502159, 0.03340177237987518, 0.029974011704325676, 0.7561322450637817, 0.029456567019224167, 0.025559980422258377], "reduce_n3_p1": [0.22144320607185364, 0.6503321528434753, 0.019814806059002876, 0.020017031580209732, 0.009167869575321674, 0.031400177627801895, 0.03395848721265793], "reduce_n3_p2": [0.022074054926633835, 0.03160933777689934, 0.037726834416389465, 0.023811189457774162, 0.03230194002389908, 0.7951192855834961, 0.02846946381032467], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.032289907336235046, 0.06300774961709976, 0.025467097759246826, 0.6180041432380676, 0.09287358075380325, 0.023773375898599625, 0.07575933635234833], "normal_n2_p1": [0.008146555162966251, 0.4703080952167511, 0.40177229046821594, 0.011768634431064129, 0.012078432366251945, 0.05581098422408104, 0.019510209560394287], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.030824918299913406, 0.020835021510720253, 0.020710986107587814, 0.6001349091529846, 0.2219264954328537, 0.04258076101541519, 0.036759376525878906], "normal_n3_p1": [0.12006659060716629, 0.1532059609889984, 0.18921349942684174, 0.46208998560905457, 0.03429976478219032, 0.00795700866729021, 0.018974218517541885], "normal_n3_p2": [0.11424217373132706, 0.07914014905691147, 0.38824838399887085, 0.19339866936206818, 0.09068885445594788, 0.11236020922660828, 0.011010298505425453], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.015319859609007835, 0.06785137206315994, 0.022262927144765854, 0.8178828358650208, 0.01997145265340805, 0.013277997262775898, 0.025737322866916656], "reduce_n2_p1": [0.014596407301723957, 0.01881548948585987, 0.026045555248856544, 0.8609199523925781, 0.013660947792232037, 0.021521136164665222, 0.015141941606998444], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.17471763491630554, 0.08895627409219742, 0.05995764210820198, 0.0605221726000309, 0.46906572580337524, 0.04729772359132767, 0.05093931779265404], "reduce_n3_p1": [0.06900054961442947, 0.8135220408439636, 0.022815102711319923, 0.019840270280838013, 0.0073248231783509254, 0.027101067826151848, 0.027493994683027267], "reduce_n3_p2": [0.08350298553705215, 0.11798430234193802, 0.12352260202169418, 0.07068398594856262, 0.08809677511453629, 0.36796218156814575, 0.07249486446380615], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.032289907336235046, 0.06300774961709976, 0.025467097759246826, 0.6180041432380676, 0.09287358075380325, 0.023773375898599625, 0.07575933635234833], "normal_n2_p1": [0.008146555162966251, 0.4703080952167511, 0.40177229046821594, 0.011768634431064129, 0.012078432366251945, 0.05581098422408104, 0.019510209560394287], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.030824918299913406, 0.020835021510720253, 0.020710986107587814, 0.6001349091529846, 0.2219264954328537, 0.04258076101541519, 0.036759376525878906], "normal_n3_p1": [0.12006659060716629, 0.1532059609889984, 0.18921349942684174, 0.46208998560905457, 0.03429976478219032, 0.00795700866729021, 0.018974218517541885], "normal_n3_p2": [0.11424217373132706, 0.07914014905691147, 0.38824838399887085, 0.19339866936206818, 0.09068885445594788, 0.11236020922660828, 0.011010298505425453], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.015319859609007835, 0.06785137206315994, 0.022262927144765854, 0.8178828358650208, 0.01997145265340805, 0.013277997262775898, 0.025737322866916656], "reduce_n2_p1": [0.014596407301723957, 0.01881548948585987, 0.026045555248856544, 0.8609199523925781, 0.013660947792232037, 0.021521136164665222, 0.015141941606998444], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.17471763491630554, 0.08895627409219742, 0.05995764210820198, 0.0605221726000309, 0.46906572580337524, 0.04729772359132767, 0.05093931779265404], "reduce_n3_p1": [0.06900054961442947, 0.8135220408439636, 0.022815102711319923, 0.019840270280838013, 0.0073248231783509254, 0.027101067826151848, 0.027493994683027267], "reduce_n3_p2": [0.08350298553705215, 0.11798430234193802, 0.12352260202169418, 0.07068398594856262, 0.08809677511453629, 0.36796218156814575, 0.07249486446380615], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04078386351466179, 0.1357862502336502, 0.054452136158943176, 0.14291682839393616, 0.32344409823417664, 0.049198463559150696, 0.15486276149749756], "normal_n2_p1": [0.004554498940706253, 0.5002634525299072, 0.3633677065372467, 0.002761189127340913, 0.009699857793748379, 0.09836605191230774, 0.014322033151984215], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03677641227841377, 0.013919581659138203, 0.015144474804401398, 0.6438614726066589, 0.18351107835769653, 0.0480688102543354, 0.03409290313720703], "normal_n3_p1": [0.07081370800733566, 0.04201854020357132, 0.08236347138881683, 0.7729791402816772, 0.01980210468173027, 0.0024854103103280067, 0.004376158118247986], "normal_n3_p2": [0.0692133903503418, 0.025442851707339287, 0.024741284549236298, 0.5719227194786072, 0.1721651554107666, 0.1217903345823288, 0.0023026985581964254], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04492679983377457, 0.15894439816474915, 0.05103006213903427, 0.5754506587982178, 0.04652559384703636, 0.028138164430856705, 0.05798475444316864], "reduce_n2_p1": [0.02518942952156067, 0.03049917332828045, 0.04191140830516815, 0.7869967818260193, 0.020430713891983032, 0.03205813840031624, 0.020301539450883865], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.1639423966407776, 0.14563719928264618, 0.061570290476083755, 0.10127613693475723, 0.33604055643081665, 0.04858008772134781, 0.08318449556827545], "reduce_n3_p1": [0.020841307938098907, 0.8123159408569336, 0.03361999988555908, 0.02270524948835373, 0.009616912342607975, 0.03446942940354347, 0.04466787353157997], "reduce_n3_p2": [0.13949216902256012, 0.173537477850914, 0.20433665812015533, 0.0703921914100647, 0.06889111548662186, 0.18681983649730682, 0.07552755624055862], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04078386351466179, 0.1357862502336502, 0.054452136158943176, 0.14291682839393616, 0.32344409823417664, 0.049198463559150696, 0.15486276149749756], "normal_n2_p1": [0.004554498940706253, 0.5002634525299072, 0.3633677065372467, 0.002761189127340913, 0.009699857793748379, 0.09836605191230774, 0.014322033151984215], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03677641227841377, 0.013919581659138203, 0.015144474804401398, 0.6438614726066589, 0.18351107835769653, 0.0480688102543354, 0.03409290313720703], "normal_n3_p1": [0.07081370800733566, 0.04201854020357132, 0.08236347138881683, 0.7729791402816772, 0.01980210468173027, 0.0024854103103280067, 0.004376158118247986], "normal_n3_p2": [0.0692133903503418, 0.025442851707339287, 0.024741284549236298, 0.5719227194786072, 0.1721651554107666, 0.1217903345823288, 0.0023026985581964254], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04492679983377457, 0.15894439816474915, 0.05103006213903427, 0.5754506587982178, 0.04652559384703636, 0.028138164430856705, 0.05798475444316864], "reduce_n2_p1": [0.02518942952156067, 0.03049917332828045, 0.04191140830516815, 0.7869967818260193, 0.020430713891983032, 0.03205813840031624, 0.020301539450883865], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.1639423966407776, 0.14563719928264618, 0.061570290476083755, 0.10127613693475723, 0.33604055643081665, 0.04858008772134781, 0.08318449556827545], "reduce_n3_p1": [0.020841307938098907, 0.8123159408569336, 0.03361999988555908, 0.02270524948835373, 0.009616912342607975, 0.03446942940354347, 0.04466787353157997], "reduce_n3_p2": [0.13949216902256012, 0.173537477850914, 0.20433665812015533, 0.0703921914100647, 0.06889111548662186, 0.18681983649730682, 0.07552755624055862], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05142737925052643, 0.22985506057739258, 0.09032727777957916, 0.11464998871088028, 0.1442442387342453, 0.0607178770005703, 0.22681674361228943], "normal_n2_p1": [0.004420884884893894, 0.4990341365337372, 0.39501750469207764, 0.0017615361139178276, 0.011017752811312675, 0.06879779696464539, 0.014717962592840195], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018959220498800278, 0.00761796860024333, 0.008789682760834694, 0.845462441444397, 0.053355149924755096, 0.03531912714242935, 0.015921352431178093], "normal_n3_p1": [0.02893279492855072, 0.01147821731865406, 0.019050676375627518, 0.9212560057640076, 0.01270879153162241, 0.0017032015603035688, 0.0017158734844997525], "normal_n3_p2": [0.048643808811903, 0.018818126991391182, 0.00795393530279398, 0.44288310408592224, 0.19058552384376526, 0.2665414810180664, 0.001870986889116466], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07976344972848892, 0.2677112817764282, 0.06346164643764496, 0.3570149838924408, 0.05974750220775604, 0.040553018450737, 0.08467486500740051], "reduce_n2_p1": [0.06318526715040207, 0.07705038040876389, 0.10275780409574509, 0.47658705711364746, 0.04575691372156143, 0.07375116646289825, 0.04889087751507759], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.10738025605678558, 0.20717684924602509, 0.06306851655244827, 0.1546965092420578, 0.17518851161003113, 0.04852220416069031, 0.16554994881153107], "reduce_n3_p1": [0.012349731288850307, 0.7139267325401306, 0.04063541442155838, 0.019991397857666016, 0.014235440641641617, 0.03499545902013779, 0.13081420958042145], "reduce_n3_p2": [0.0346805639564991, 0.11597275733947754, 0.13634441792964935, 0.04116179794073105, 0.04818081855773926, 0.507409930229187, 0.05184691771864891], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05142737925052643, 0.22985506057739258, 0.09032727777957916, 0.11464998871088028, 0.1442442387342453, 0.0607178770005703, 0.22681674361228943], "normal_n2_p1": [0.004420884884893894, 0.4990341365337372, 0.39501750469207764, 0.0017615361139178276, 0.011017752811312675, 0.06879779696464539, 0.014717962592840195], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018959220498800278, 0.00761796860024333, 0.008789682760834694, 0.845462441444397, 0.053355149924755096, 0.03531912714242935, 0.015921352431178093], "normal_n3_p1": [0.02893279492855072, 0.01147821731865406, 0.019050676375627518, 0.9212560057640076, 0.01270879153162241, 0.0017032015603035688, 0.0017158734844997525], "normal_n3_p2": [0.048643808811903, 0.018818126991391182, 0.00795393530279398, 0.44288310408592224, 0.19058552384376526, 0.2665414810180664, 0.001870986889116466], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07976344972848892, 0.2677112817764282, 0.06346164643764496, 0.3570149838924408, 0.05974750220775604, 0.040553018450737, 0.08467486500740051], "reduce_n2_p1": [0.06318526715040207, 0.07705038040876389, 0.10275780409574509, 0.47658705711364746, 0.04575691372156143, 0.07375116646289825, 0.04889087751507759], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.10738025605678558, 0.20717684924602509, 0.06306851655244827, 0.1546965092420578, 0.17518851161003113, 0.04852220416069031, 0.16554994881153107], "reduce_n3_p1": [0.012349731288850307, 0.7139267325401306, 0.04063541442155838, 0.019991397857666016, 0.014235440641641617, 0.03499545902013779, 0.13081420958042145], "reduce_n3_p2": [0.0346805639564991, 0.11597275733947754, 0.13634441792964935, 0.04116179794073105, 0.04818081855773926, 0.507409930229187, 0.05184691771864891], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.058556199073791504, 0.552650511264801, 0.21489785611629486, 0.029052408412098885, 0.05103147029876709, 0.04044388234615326, 0.037195153534412384], "normal_n2_p1": [0.0054459767416119576, 0.6793657541275024, 0.25001218914985657, 0.0018026609905064106, 0.012504606507718563, 0.028151916339993477, 0.016656704246997833], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02402373217046261, 0.01000498328357935, 0.011946160346269608, 0.8260297775268555, 0.043747611343860626, 0.047891031950712204, 0.015832560136914253], "normal_n3_p1": [0.017504988238215446, 0.006238305941224098, 0.008014720864593983, 0.9483187794685364, 0.012245383113622665, 0.002529555233195424, 0.001397977932356298], "normal_n3_p2": [0.03259897232055664, 0.014197428710758686, 0.004960885737091303, 0.03817708417773247, 0.37390342354774475, 0.5025116205215454, 0.0018699534703046083], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.006667826324701309, 0.010205003432929516, 0.014904786832630634, 0.8003360629081726, 0.021708015352487564, 0.020562339574098587, 0.10093650966882706], "reduce_n2_p1": [0.11394814401865005, 0.1371123045682907, 0.1619042307138443, 0.26423344016075134, 0.042428821325302124, 0.08758527040481567, 0.07902911305427551], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.011252505704760551, 0.051958341151475906, 0.05935554951429367, 0.448611319065094, 0.13169173896312714, 0.044519200921058655, 0.14043253660202026], "reduce_n3_p1": [0.005785134620964527, 0.9517276287078857, 0.008782713674008846, 0.005430345889180899, 0.00564669631421566, 0.00657652085646987, 0.008508536033332348], "reduce_n3_p2": [0.004599527455866337, 0.021368976682424545, 0.026682477444410324, 0.00866714958101511, 0.013423796743154526, 0.8937121033668518, 0.013354931958019733], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.058556199073791504, 0.552650511264801, 0.21489785611629486, 0.029052408412098885, 0.05103147029876709, 0.04044388234615326, 0.037195153534412384], "normal_n2_p1": [0.0054459767416119576, 0.6793657541275024, 0.25001218914985657, 0.0018026609905064106, 0.012504606507718563, 0.028151916339993477, 0.016656704246997833], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02402373217046261, 0.01000498328357935, 0.011946160346269608, 0.8260297775268555, 0.043747611343860626, 0.047891031950712204, 0.015832560136914253], "normal_n3_p1": [0.017504988238215446, 0.006238305941224098, 0.008014720864593983, 0.9483187794685364, 0.012245383113622665, 0.002529555233195424, 0.001397977932356298], "normal_n3_p2": [0.03259897232055664, 0.014197428710758686, 0.004960885737091303, 0.03817708417773247, 0.37390342354774475, 0.5025116205215454, 0.0018699534703046083], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.006667826324701309, 0.010205003432929516, 0.014904786832630634, 0.8003360629081726, 0.021708015352487564, 0.020562339574098587, 0.10093650966882706], "reduce_n2_p1": [0.11394814401865005, 0.1371123045682907, 0.1619042307138443, 0.26423344016075134, 0.042428821325302124, 0.08758527040481567, 0.07902911305427551], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.011252505704760551, 0.051958341151475906, 0.05935554951429367, 0.448611319065094, 0.13169173896312714, 0.044519200921058655, 0.14043253660202026], "reduce_n3_p1": [0.005785134620964527, 0.9517276287078857, 0.008782713674008846, 0.005430345889180899, 0.00564669631421566, 0.00657652085646987, 0.008508536033332348], "reduce_n3_p2": [0.004599527455866337, 0.021368976682424545, 0.026682477444410324, 0.00866714958101511, 0.013423796743154526, 0.8937121033668518, 0.013354931958019733], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.035717204213142395, 0.7627333998680115, 0.1283990740776062, 0.009666495025157928, 0.023226384073495865, 0.019037645310163498, 0.012663730420172215], "normal_n2_p1": [0.009451321326196194, 0.5550809502601624, 0.33224913477897644, 0.003102677408605814, 0.020693333819508553, 0.034676652401685715, 0.03236790746450424], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05835045129060745, 0.02331818826496601, 0.02880743145942688, 0.5717390775680542, 0.11422505229711533, 0.11974436789751053, 0.02862335741519928], "normal_n3_p1": [0.03008062019944191, 0.011101117357611656, 0.012347669340670109, 0.899649977684021, 0.025551874190568924, 0.008222305215895176, 0.0028413536492735147], "normal_n3_p2": [0.05203992873430252, 0.0175978671759367, 0.005930094979703426, 0.009728442877531052, 0.4577775001525879, 0.41196244955062866, 0.002357540186494589], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0033409432508051395, 0.0028880371246486902, 0.009063939563930035, 0.7016578912734985, 0.018305733799934387, 0.01948380656540394, 0.22404389083385468], "reduce_n2_p1": [0.0883641168475151, 0.18960247933864594, 0.046359576284885406, 0.40123406052589417, 0.02960609272122383, 0.09497003257274628, 0.08664630353450775], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.006708611734211445, 0.05385356768965721, 0.030614612624049187, 0.4899525046348572, 0.10925900191068649, 0.023956913501024246, 0.20063790678977966], "reduce_n3_p1": [0.006180094089359045, 0.9687098860740662, 0.004743632860481739, 0.003910885192453861, 0.0048661199398338795, 0.0034600927028805017, 0.002836118917912245], "reduce_n3_p2": [0.005150665529072285, 0.019958404824137688, 0.026906324550509453, 0.00896717980504036, 0.01560625433921814, 0.8855156898498535, 0.015801016241312027], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.035717204213142395, 0.7627333998680115, 0.1283990740776062, 0.009666495025157928, 0.023226384073495865, 0.019037645310163498, 0.012663730420172215], "normal_n2_p1": [0.009451321326196194, 0.5550809502601624, 0.33224913477897644, 0.003102677408605814, 0.020693333819508553, 0.034676652401685715, 0.03236790746450424], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05835045129060745, 0.02331818826496601, 0.02880743145942688, 0.5717390775680542, 0.11422505229711533, 0.11974436789751053, 0.02862335741519928], "normal_n3_p1": [0.03008062019944191, 0.011101117357611656, 0.012347669340670109, 0.899649977684021, 0.025551874190568924, 0.008222305215895176, 0.0028413536492735147], "normal_n3_p2": [0.05203992873430252, 0.0175978671759367, 0.005930094979703426, 0.009728442877531052, 0.4577775001525879, 0.41196244955062866, 0.002357540186494589], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0033409432508051395, 0.0028880371246486902, 0.009063939563930035, 0.7016578912734985, 0.018305733799934387, 0.01948380656540394, 0.22404389083385468], "reduce_n2_p1": [0.0883641168475151, 0.18960247933864594, 0.046359576284885406, 0.40123406052589417, 0.02960609272122383, 0.09497003257274628, 0.08664630353450775], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.006708611734211445, 0.05385356768965721, 0.030614612624049187, 0.4899525046348572, 0.10925900191068649, 0.023956913501024246, 0.20063790678977966], "reduce_n3_p1": [0.006180094089359045, 0.9687098860740662, 0.004743632860481739, 0.003910885192453861, 0.0048661199398338795, 0.0034600927028805017, 0.002836118917912245], "reduce_n3_p2": [0.005150665529072285, 0.019958404824137688, 0.026906324550509453, 0.00896717980504036, 0.01560625433921814, 0.8855156898498535, 0.015801016241312027], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02681392803788185, 0.7807960510253906, 0.11399268358945847, 0.008123260922729969, 0.031438324600458145, 0.01711321622133255, 0.009343919344246387], "normal_n2_p1": [0.016781391575932503, 0.4155424237251282, 0.3905203342437744, 0.0058061168529093266, 0.03712671622633934, 0.05892099812626839, 0.04870195314288139], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.10418302565813065, 0.035239387303590775, 0.041302796453237534, 0.4590049982070923, 0.11245571821928024, 0.13060396909713745, 0.03965920954942703], "normal_n3_p1": [0.08168254047632217, 0.031235503032803535, 0.03129854425787926, 0.7146938443183899, 0.061803363263607025, 0.0358511246740818, 0.008027318865060806], "normal_n3_p2": [0.13071070611476898, 0.03171643614768982, 0.012618501670658588, 0.007330863270908594, 0.13964501023292542, 0.6021569967269897, 0.004550762474536896], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.00426108855754137, 0.0023291870020329952, 0.01000136323273182, 0.4076613187789917, 0.02560836635529995, 0.027411896735429764, 0.49748876690864563], "reduce_n2_p1": [0.05203791335225105, 0.12937508523464203, 0.023057404905557632, 0.5974038243293762, 0.021816512569785118, 0.07278858125209808, 0.06935414671897888], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.006480456795543432, 0.046499721705913544, 0.01871076039969921, 0.045784931629896164, 0.15805132687091827, 0.01472157146781683, 0.6533545851707458], "reduce_n3_p1": [0.00984801072627306, 0.9595047831535339, 0.0050416374579072, 0.005219177342951298, 0.006397530902177095, 0.003967450466006994, 0.0027451575733721256], "reduce_n3_p2": [0.016751237213611603, 0.046113912016153336, 0.062086597084999084, 0.020543552935123444, 0.03454816713929176, 0.725486695766449, 0.041405536234378815], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02681392803788185, 0.7807960510253906, 0.11399268358945847, 0.008123260922729969, 0.031438324600458145, 0.01711321622133255, 0.009343919344246387], "normal_n2_p1": [0.016781391575932503, 0.4155424237251282, 0.3905203342437744, 0.0058061168529093266, 0.03712671622633934, 0.05892099812626839, 0.04870195314288139], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.10418302565813065, 0.035239387303590775, 0.041302796453237534, 0.4590049982070923, 0.11245571821928024, 0.13060396909713745, 0.03965920954942703], "normal_n3_p1": [0.08168254047632217, 0.031235503032803535, 0.03129854425787926, 0.7146938443183899, 0.061803363263607025, 0.0358511246740818, 0.008027318865060806], "normal_n3_p2": [0.13071070611476898, 0.03171643614768982, 0.012618501670658588, 0.007330863270908594, 0.13964501023292542, 0.6021569967269897, 0.004550762474536896], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.00426108855754137, 0.0023291870020329952, 0.01000136323273182, 0.4076613187789917, 0.02560836635529995, 0.027411896735429764, 0.49748876690864563], "reduce_n2_p1": [0.05203791335225105, 0.12937508523464203, 0.023057404905557632, 0.5974038243293762, 0.021816512569785118, 0.07278858125209808, 0.06935414671897888], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.006480456795543432, 0.046499721705913544, 0.01871076039969921, 0.045784931629896164, 0.15805132687091827, 0.01472157146781683, 0.6533545851707458], "reduce_n3_p1": [0.00984801072627306, 0.9595047831535339, 0.0050416374579072, 0.005219177342951298, 0.006397530902177095, 0.003967450466006994, 0.0027451575733721256], "reduce_n3_p2": [0.016751237213611603, 0.046113912016153336, 0.062086597084999084, 0.020543552935123444, 0.03454816713929176, 0.725486695766449, 0.041405536234378815], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.037988148629665375, 0.6655128002166748, 0.13847588002681732, 0.01571469195187092, 0.07382169365882874, 0.022843511775135994, 0.01287937629967928], "normal_n2_p1": [0.028802992776036263, 0.2806967794895172, 0.41719871759414673, 0.010328096337616444, 0.07786983251571655, 0.05317312851548195, 0.08410442620515823], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05120699852705002, 0.029889266937971115, 0.03354998305439949, 0.590110719203949, 0.11105231940746307, 0.08905212581157684, 0.050523724406957626], "normal_n3_p1": [0.13372589647769928, 0.05553347244858742, 0.050266098231077194, 0.44819751381874084, 0.11368459463119507, 0.09843353182077408, 0.016589684411883354], "normal_n3_p2": [0.24780155718326569, 0.03999869152903557, 0.020306004211306572, 0.00664484640583396, 0.043446239084005356, 0.4529162645339966, 0.007073226850479841], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.005327510181814432, 0.002063353778794408, 0.009463625028729439, 0.8321325778961182, 0.02546919323503971, 0.036974940448999405, 0.06809879839420319], "reduce_n2_p1": [0.017801430076360703, 0.03481172397732735, 0.006590130738914013, 0.8822153210639954, 0.00807761587202549, 0.020314011722803116, 0.019979387521743774], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0021052502561360598, 0.008459968492388725, 0.0036611652467399836, 0.0028258273378014565, 0.025690292939543724, 0.002803653012961149, 0.9470388889312744], "reduce_n3_p1": [0.0231865793466568, 0.9007659554481506, 0.012725993990898132, 0.012549850158393383, 0.014721809886395931, 0.009460385888814926, 0.006310388911515474], "reduce_n3_p2": [0.04358004033565521, 0.07482296228408813, 0.10390274226665497, 0.03862341493368149, 0.06335056573152542, 0.4971315562725067, 0.08085393905639648], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.037988148629665375, 0.6655128002166748, 0.13847588002681732, 0.01571469195187092, 0.07382169365882874, 0.022843511775135994, 0.01287937629967928], "normal_n2_p1": [0.028802992776036263, 0.2806967794895172, 0.41719871759414673, 0.010328096337616444, 0.07786983251571655, 0.05317312851548195, 0.08410442620515823], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05120699852705002, 0.029889266937971115, 0.03354998305439949, 0.590110719203949, 0.11105231940746307, 0.08905212581157684, 0.050523724406957626], "normal_n3_p1": [0.13372589647769928, 0.05553347244858742, 0.050266098231077194, 0.44819751381874084, 0.11368459463119507, 0.09843353182077408, 0.016589684411883354], "normal_n3_p2": [0.24780155718326569, 0.03999869152903557, 0.020306004211306572, 0.00664484640583396, 0.043446239084005356, 0.4529162645339966, 0.007073226850479841], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.005327510181814432, 0.002063353778794408, 0.009463625028729439, 0.8321325778961182, 0.02546919323503971, 0.036974940448999405, 0.06809879839420319], "reduce_n2_p1": [0.017801430076360703, 0.03481172397732735, 0.006590130738914013, 0.8822153210639954, 0.00807761587202549, 0.020314011722803116, 0.019979387521743774], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0021052502561360598, 0.008459968492388725, 0.0036611652467399836, 0.0028258273378014565, 0.025690292939543724, 0.002803653012961149, 0.9470388889312744], "reduce_n3_p1": [0.0231865793466568, 0.9007659554481506, 0.012725993990898132, 0.012549850158393383, 0.014721809886395931, 0.009460385888814926, 0.006310388911515474], "reduce_n3_p2": [0.04358004033565521, 0.07482296228408813, 0.10390274226665497, 0.03862341493368149, 0.06335056573152542, 0.4971315562725067, 0.08085393905639648], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.044034987688064575, 0.39720669388771057, 0.15242524445056915, 0.027086246758699417, 0.27728933095932007, 0.03771362081170082, 0.01901385374367237], "normal_n2_p1": [0.03407828509807587, 0.0981074646115303, 0.06084324046969414, 0.014346706680953503, 0.17610259354114532, 0.09297081083059311, 0.43456900119781494], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.026457631960511208, 0.02459990419447422, 0.029211726039648056, 0.6301483511924744, 0.14874474704265594, 0.06340739130973816, 0.040757548063993454], "normal_n3_p1": [0.08503635972738266, 0.04314535856246948, 0.04164404422044754, 0.3989071846008301, 0.15315501391887665, 0.13693074882030487, 0.022380933165550232], "normal_n3_p2": [0.07191762328147888, 0.029144978150725365, 0.020714305341243744, 0.005961941555142403, 0.025005144998431206, 0.24581916630268097, 0.008247897028923035], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.006958031561225653, 0.0021715934854000807, 0.009702918119728565, 0.8760015368461609, 0.021134600043296814, 0.047240614891052246, 0.020052965730428696], "reduce_n2_p1": [0.008114012889564037, 0.011192256584763527, 0.003401720430701971, 0.949630856513977, 0.004477818496525288, 0.009114116430282593, 0.00833197869360447], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0023260717280209064, 0.00521652540192008, 0.002520864363759756, 0.0011681842152029276, 0.013407612219452858, 0.002108182292431593, 0.969270646572113], "reduce_n3_p1": [0.05032531917095184, 0.6944491267204285, 0.038639169186353683, 0.03884824365377426, 0.04638892784714699, 0.028941629454493523, 0.021806877106428146], "reduce_n3_p2": [0.03981183469295502, 0.05089695379137993, 0.06471797078847885, 0.02803281880915165, 0.030431261286139488, 0.6384456753730774, 0.09480100125074387], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.044034987688064575, 0.39720669388771057, 0.15242524445056915, 0.027086246758699417, 0.27728933095932007, 0.03771362081170082, 0.01901385374367237], "normal_n2_p1": [0.03407828509807587, 0.0981074646115303, 0.06084324046969414, 0.014346706680953503, 0.17610259354114532, 0.09297081083059311, 0.43456900119781494], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.026457631960511208, 0.02459990419447422, 0.029211726039648056, 0.6301483511924744, 0.14874474704265594, 0.06340739130973816, 0.040757548063993454], "normal_n3_p1": [0.08503635972738266, 0.04314535856246948, 0.04164404422044754, 0.3989071846008301, 0.15315501391887665, 0.13693074882030487, 0.022380933165550232], "normal_n3_p2": [0.07191762328147888, 0.029144978150725365, 0.020714305341243744, 0.005961941555142403, 0.025005144998431206, 0.24581916630268097, 0.008247897028923035], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.006958031561225653, 0.0021715934854000807, 0.009702918119728565, 0.8760015368461609, 0.021134600043296814, 0.047240614891052246, 0.020052965730428696], "reduce_n2_p1": [0.008114012889564037, 0.011192256584763527, 0.003401720430701971, 0.949630856513977, 0.004477818496525288, 0.009114116430282593, 0.00833197869360447], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0023260717280209064, 0.00521652540192008, 0.002520864363759756, 0.0011681842152029276, 0.013407612219452858, 0.002108182292431593, 0.969270646572113], "reduce_n3_p1": [0.05032531917095184, 0.6944491267204285, 0.038639169186353683, 0.03884824365377426, 0.04638892784714699, 0.028941629454493523, 0.021806877106428146], "reduce_n3_p2": [0.03981183469295502, 0.05089695379137993, 0.06471797078847885, 0.02803281880915165, 0.030431261286139488, 0.6384456753730774, 0.09480100125074387], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.054572898894548416, 0.6028197407722473, 0.09635081142187119, 0.028277311474084854, 0.0985179916024208, 0.06101777404546738, 0.026751141995191574], "normal_n2_p1": [0.03845686838030815, 0.08234547823667526, 0.03706347197294235, 0.014012428000569344, 0.5963841080665588, 0.07766015082597733, 0.027510253712534904], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.010854629799723625, 0.012188677676022053, 0.013891098089516163, 0.8371290564537048, 0.0422094501554966, 0.045793332159519196, 0.02569865994155407], "normal_n3_p1": [0.1400814652442932, 0.08222713321447372, 0.06761553138494492, 0.3919733762741089, 0.18524855375289917, 0.06025656312704086, 0.02948254719376564], "normal_n3_p2": [0.05223425105214119, 0.03196333348751068, 0.02727230079472065, 0.008677955716848373, 0.023403801023960114, 0.8162688612937927, 0.011905774474143982], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.012998887337744236, 0.0032297687139362097, 0.013111436739563942, 0.864687979221344, 0.023846980184316635, 0.050113070756196976, 0.013302311301231384], "reduce_n2_p1": [0.008847178891301155, 0.009635107591748238, 0.004455829504877329, 0.9437940716743469, 0.005726849194616079, 0.009813324548304081, 0.009246580302715302], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.00908516813069582, 0.012969916686415672, 0.006814025808125734, 0.0027466965839266777, 0.031061941757798195, 0.006684298627078533, 0.921195924282074], "reduce_n3_p1": [0.053179122507572174, 0.6827375888824463, 0.03853467106819153, 0.07660163938999176, 0.045928966253995895, 0.03349998965859413, 0.03647371381521225], "reduce_n3_p2": [0.07163575291633606, 0.08320239931344986, 0.1031993106007576, 0.04062751308083534, 0.04118697717785835, 0.4861707091331482, 0.1131720319390297], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.054572898894548416, 0.6028197407722473, 0.09635081142187119, 0.028277311474084854, 0.0985179916024208, 0.06101777404546738, 0.026751141995191574], "normal_n2_p1": [0.03845686838030815, 0.08234547823667526, 0.03706347197294235, 0.014012428000569344, 0.5963841080665588, 0.07766015082597733, 0.027510253712534904], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.010854629799723625, 0.012188677676022053, 0.013891098089516163, 0.8371290564537048, 0.0422094501554966, 0.045793332159519196, 0.02569865994155407], "normal_n3_p1": [0.1400814652442932, 0.08222713321447372, 0.06761553138494492, 0.3919733762741089, 0.18524855375289917, 0.06025656312704086, 0.02948254719376564], "normal_n3_p2": [0.05223425105214119, 0.03196333348751068, 0.02727230079472065, 0.008677955716848373, 0.023403801023960114, 0.8162688612937927, 0.011905774474143982], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.012998887337744236, 0.0032297687139362097, 0.013111436739563942, 0.864687979221344, 0.023846980184316635, 0.050113070756196976, 0.013302311301231384], "reduce_n2_p1": [0.008847178891301155, 0.009635107591748238, 0.004455829504877329, 0.9437940716743469, 0.005726849194616079, 0.009813324548304081, 0.009246580302715302], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.00908516813069582, 0.012969916686415672, 0.006814025808125734, 0.0027466965839266777, 0.031061941757798195, 0.006684298627078533, 0.921195924282074], "reduce_n3_p1": [0.053179122507572174, 0.6827375888824463, 0.03853467106819153, 0.07660163938999176, 0.045928966253995895, 0.03349998965859413, 0.03647371381521225], "reduce_n3_p2": [0.07163575291633606, 0.08320239931344986, 0.1031993106007576, 0.04062751308083534, 0.04118697717785835, 0.4861707091331482, 0.1131720319390297], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05752727389335632, 0.6632745862007141, 0.07322283089160919, 0.018275456503033638, 0.0534469299018383, 0.07487697899341583, 0.029683472588658333], "normal_n2_p1": [0.11547467112541199, 0.27077069878578186, 0.0990859717130661, 0.02891465649008751, 0.10941042006015778, 0.17406539618968964, 0.013628295622766018], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.014268884435296059, 0.016528816893696785, 0.01865028776228428, 0.7883710265159607, 0.026559997349977493, 0.07761480659246445, 0.04288225248456001], "normal_n3_p1": [0.3756902813911438, 0.25819170475006104, 0.1251184493303299, 0.0506257638335228, 0.15167737007141113, 0.007927916012704372, 0.017558427527546883], "normal_n3_p2": [0.05679608881473541, 0.0370279885828495, 0.03701151907444, 0.01200963370501995, 0.027807418256998062, 0.8083205223083496, 0.014752279967069626], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.024773109704256058, 0.005392054561525583, 0.01865568570792675, 0.831506073474884, 0.029173333197832108, 0.054714951664209366, 0.012732533738017082], "reduce_n2_p1": [0.014844822697341442, 0.014348611235618591, 0.008734231814742088, 0.9041473865509033, 0.010311201214790344, 0.015031281858682632, 0.015097121708095074], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0411980003118515, 0.04351107403635979, 0.023854853585362434, 0.010432066395878792, 0.09955954551696777, 0.02794523350894451, 0.7221152782440186], "reduce_n3_p1": [0.05028137192130089, 0.7029644846916199, 0.0400930792093277, 0.07237342745065689, 0.03304475173354149, 0.033126071095466614, 0.044758137315511703], "reduce_n3_p2": [0.08729236572980881, 0.14213235676288605, 0.15786615014076233, 0.07052552700042725, 0.07915829867124557, 0.29032978415489197, 0.0917523130774498], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05752727389335632, 0.6632745862007141, 0.07322283089160919, 0.018275456503033638, 0.0534469299018383, 0.07487697899341583, 0.029683472588658333], "normal_n2_p1": [0.11547467112541199, 0.27077069878578186, 0.0990859717130661, 0.02891465649008751, 0.10941042006015778, 0.17406539618968964, 0.013628295622766018], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.014268884435296059, 0.016528816893696785, 0.01865028776228428, 0.7883710265159607, 0.026559997349977493, 0.07761480659246445, 0.04288225248456001], "normal_n3_p1": [0.3756902813911438, 0.25819170475006104, 0.1251184493303299, 0.0506257638335228, 0.15167737007141113, 0.007927916012704372, 0.017558427527546883], "normal_n3_p2": [0.05679608881473541, 0.0370279885828495, 0.03701151907444, 0.01200963370501995, 0.027807418256998062, 0.8083205223083496, 0.014752279967069626], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.024773109704256058, 0.005392054561525583, 0.01865568570792675, 0.831506073474884, 0.029173333197832108, 0.054714951664209366, 0.012732533738017082], "reduce_n2_p1": [0.014844822697341442, 0.014348611235618591, 0.008734231814742088, 0.9041473865509033, 0.010311201214790344, 0.015031281858682632, 0.015097121708095074], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0411980003118515, 0.04351107403635979, 0.023854853585362434, 0.010432066395878792, 0.09955954551696777, 0.02794523350894451, 0.7221152782440186], "reduce_n3_p1": [0.05028137192130089, 0.7029644846916199, 0.0400930792093277, 0.07237342745065689, 0.03304475173354149, 0.033126071095466614, 0.044758137315511703], "reduce_n3_p2": [0.08729236572980881, 0.14213235676288605, 0.15786615014076233, 0.07052552700042725, 0.07915829867124557, 0.29032978415489197, 0.0917523130774498], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0812172219157219, 0.5106646418571472, 0.08602705597877502, 0.03131333738565445, 0.06303004175424576, 0.12397629767656326, 0.045486848801374435], "normal_n2_p1": [0.1203904002904892, 0.2229023575782776, 0.06647191196680069, 0.03116355836391449, 0.014335313811898232, 0.39883163571357727, 0.006434336304664612], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04701804742217064, 0.049365006387233734, 0.057870522141456604, 0.3242233097553253, 0.03764185309410095, 0.24669699370861053, 0.18377263844013214], "normal_n3_p1": [0.5922071933746338, 0.027163786813616753, 0.03612581267952919, 0.008735322393476963, 0.3192782402038574, 0.0025553747545927763, 0.008133470080792904], "normal_n3_p2": [0.2241647094488144, 0.08389268815517426, 0.09371757507324219, 0.02351338230073452, 0.05319081246852875, 0.48864126205444336, 0.02794034034013748], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.019639963284134865, 0.006823445670306683, 0.018954455852508545, 0.8342266082763672, 0.026858091354370117, 0.056857574731111526, 0.012869545258581638], "reduce_n2_p1": [0.02340744435787201, 0.02165614254772663, 0.016430778428912163, 0.8466494083404541, 0.016776403412222862, 0.023181559517979622, 0.02230856940150261], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0318768285214901, 0.030525052919983864, 0.022409463301301003, 0.01153129618614912, 0.062383539974689484, 0.026811065152287483, 0.7874842882156372], "reduce_n3_p1": [0.044812723994255066, 0.577167272567749, 0.06867369264364243, 0.06276793777942657, 0.0622703842818737, 0.05570576339960098, 0.08725738525390625], "reduce_n3_p2": [0.014323558658361435, 0.03240697458386421, 0.08701355755329132, 0.14617663621902466, 0.11770647764205933, 0.4788511395454407, 0.04194325953722], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0812172219157219, 0.5106646418571472, 0.08602705597877502, 0.03131333738565445, 0.06303004175424576, 0.12397629767656326, 0.045486848801374435], "normal_n2_p1": [0.1203904002904892, 0.2229023575782776, 0.06647191196680069, 0.03116355836391449, 0.014335313811898232, 0.39883163571357727, 0.006434336304664612], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04701804742217064, 0.049365006387233734, 0.057870522141456604, 0.3242233097553253, 0.03764185309410095, 0.24669699370861053, 0.18377263844013214], "normal_n3_p1": [0.5922071933746338, 0.027163786813616753, 0.03612581267952919, 0.008735322393476963, 0.3192782402038574, 0.0025553747545927763, 0.008133470080792904], "normal_n3_p2": [0.2241647094488144, 0.08389268815517426, 0.09371757507324219, 0.02351338230073452, 0.05319081246852875, 0.48864126205444336, 0.02794034034013748], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.019639963284134865, 0.006823445670306683, 0.018954455852508545, 0.8342266082763672, 0.026858091354370117, 0.056857574731111526, 0.012869545258581638], "reduce_n2_p1": [0.02340744435787201, 0.02165614254772663, 0.016430778428912163, 0.8466494083404541, 0.016776403412222862, 0.023181559517979622, 0.02230856940150261], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0318768285214901, 0.030525052919983864, 0.022409463301301003, 0.01153129618614912, 0.062383539974689484, 0.026811065152287483, 0.7874842882156372], "reduce_n3_p1": [0.044812723994255066, 0.577167272567749, 0.06867369264364243, 0.06276793777942657, 0.0622703842818737, 0.05570576339960098, 0.08725738525390625], "reduce_n3_p2": [0.014323558658361435, 0.03240697458386421, 0.08701355755329132, 0.14617663621902466, 0.11770647764205933, 0.4788511395454407, 0.04194325953722], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.10330630838871002, 0.5223046541213989, 0.1365426778793335, 0.03601028397679329, 0.038658950477838516, 0.0752037987112999, 0.04816482588648796], "normal_n2_p1": [0.07333170622587204, 0.10232435911893845, 0.03944374993443489, 0.024301130324602127, 0.0037658591754734516, 0.6979409456253052, 0.0037058047018945217], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02395443432033062, 0.02395353838801384, 0.03037334606051445, 0.17114126682281494, 0.021855073049664497, 0.6662850379943848, 0.022622019052505493], "normal_n3_p1": [0.07040560245513916, 0.0036248124670237303, 0.006869025528430939, 0.0017740405164659023, 0.9109255075454712, 0.001116545288823545, 0.0027830833569169044], "normal_n3_p2": [0.12160883098840714, 0.07516514509916306, 0.03787112981081009, 0.026583591476082802, 0.04061652347445488, 0.6620103716850281, 0.03126993030309677], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.037039726972579956, 0.015288674272596836, 0.03765910118818283, 0.623399555683136, 0.05784304067492485, 0.1431177854537964, 0.026540903374552727], "reduce_n2_p1": [0.03809627890586853, 0.033325470983982086, 0.02837430126965046, 0.7513288855552673, 0.02829083800315857, 0.03461472690105438, 0.03598775342106819], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010867810808122158, 0.012379735708236694, 0.010571235790848732, 0.006899537052959204, 0.021312806755304337, 0.010651576332747936, 0.9158332943916321], "reduce_n3_p1": [0.032747287303209305, 0.5857782959938049, 0.1557735651731491, 0.06825503706932068, 0.044917695224285126, 0.03461874648928642, 0.04568572714924812], "reduce_n3_p2": [0.00820818729698658, 0.01725931465625763, 0.06924370676279068, 0.2366994470357895, 0.33595898747444153, 0.1992034614086151, 0.0338234044611454], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.10330630838871002, 0.5223046541213989, 0.1365426778793335, 0.03601028397679329, 0.038658950477838516, 0.0752037987112999, 0.04816482588648796], "normal_n2_p1": [0.07333170622587204, 0.10232435911893845, 0.03944374993443489, 0.024301130324602127, 0.0037658591754734516, 0.6979409456253052, 0.0037058047018945217], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02395443432033062, 0.02395353838801384, 0.03037334606051445, 0.17114126682281494, 0.021855073049664497, 0.6662850379943848, 0.022622019052505493], "normal_n3_p1": [0.07040560245513916, 0.0036248124670237303, 0.006869025528430939, 0.0017740405164659023, 0.9109255075454712, 0.001116545288823545, 0.0027830833569169044], "normal_n3_p2": [0.12160883098840714, 0.07516514509916306, 0.03787112981081009, 0.026583591476082802, 0.04061652347445488, 0.6620103716850281, 0.03126993030309677], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.037039726972579956, 0.015288674272596836, 0.03765910118818283, 0.623399555683136, 0.05784304067492485, 0.1431177854537964, 0.026540903374552727], "reduce_n2_p1": [0.03809627890586853, 0.033325470983982086, 0.02837430126965046, 0.7513288855552673, 0.02829083800315857, 0.03461472690105438, 0.03598775342106819], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010867810808122158, 0.012379735708236694, 0.010571235790848732, 0.006899537052959204, 0.021312806755304337, 0.010651576332747936, 0.9158332943916321], "reduce_n3_p1": [0.032747287303209305, 0.5857782959938049, 0.1557735651731491, 0.06825503706932068, 0.044917695224285126, 0.03461874648928642, 0.04568572714924812], "reduce_n3_p2": [0.00820818729698658, 0.01725931465625763, 0.06924370676279068, 0.2366994470357895, 0.33595898747444153, 0.1992034614086151, 0.0338234044611454], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06715796887874603, 0.7538139224052429, 0.07990314066410065, 0.010410415939986706, 0.017899489030241966, 0.028109513223171234, 0.0322880856692791], "normal_n2_p1": [0.20216989517211914, 0.346236914396286, 0.12273424118757248, 0.05682172626256943, 0.005070604383945465, 0.059938475489616394, 0.007225834298878908], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02325335144996643, 0.023183224722743034, 0.03059297986328602, 0.1239803209900856, 0.02119416929781437, 0.7394591569900513, 0.007766014896333218], "normal_n3_p1": [0.03043411672115326, 0.0019840297754853964, 0.00412548566237092, 0.0011876666685566306, 0.9556632041931152, 0.0014686650829389691, 0.0023671539966017008], "normal_n3_p2": [0.01984390802681446, 0.028760479763150215, 0.011160256341099739, 0.014459424652159214, 0.020523466169834137, 0.8861412405967712, 0.015358426608145237], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07935060560703278, 0.027410665526986122, 0.054133340716362, 0.47085046768188477, 0.07267862558364868, 0.11861679702997208, 0.05199200287461281], "reduce_n2_p1": [0.06591346114873886, 0.055857207626104355, 0.055309467017650604, 0.5086866021156311, 0.06074592098593712, 0.07363604754209518, 0.06836161017417908], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.019529981538653374, 0.02158989943563938, 0.018340907990932465, 0.01458527147769928, 0.03321075439453125, 0.019983932375907898, 0.8518247008323669], "reduce_n3_p1": [0.035421453416347504, 0.8434184789657593, 0.01088657695800066, 0.04913625866174698, 0.0153733529150486, 0.013893529772758484, 0.019464872777462006], "reduce_n3_p2": [0.001134862657636404, 0.001570449909195304, 0.00614729942753911, 0.01798330619931221, 0.9586108326911926, 0.002776659792289138, 0.003495222656056285], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06715796887874603, 0.7538139224052429, 0.07990314066410065, 0.010410415939986706, 0.017899489030241966, 0.028109513223171234, 0.0322880856692791], "normal_n2_p1": [0.20216989517211914, 0.346236914396286, 0.12273424118757248, 0.05682172626256943, 0.005070604383945465, 0.059938475489616394, 0.007225834298878908], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02325335144996643, 0.023183224722743034, 0.03059297986328602, 0.1239803209900856, 0.02119416929781437, 0.7394591569900513, 0.007766014896333218], "normal_n3_p1": [0.03043411672115326, 0.0019840297754853964, 0.00412548566237092, 0.0011876666685566306, 0.9556632041931152, 0.0014686650829389691, 0.0023671539966017008], "normal_n3_p2": [0.01984390802681446, 0.028760479763150215, 0.011160256341099739, 0.014459424652159214, 0.020523466169834137, 0.8861412405967712, 0.015358426608145237], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07935060560703278, 0.027410665526986122, 0.054133340716362, 0.47085046768188477, 0.07267862558364868, 0.11861679702997208, 0.05199200287461281], "reduce_n2_p1": [0.06591346114873886, 0.055857207626104355, 0.055309467017650604, 0.5086866021156311, 0.06074592098593712, 0.07363604754209518, 0.06836161017417908], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.019529981538653374, 0.02158989943563938, 0.018340907990932465, 0.01458527147769928, 0.03321075439453125, 0.019983932375907898, 0.8518247008323669], "reduce_n3_p1": [0.035421453416347504, 0.8434184789657593, 0.01088657695800066, 0.04913625866174698, 0.0153733529150486, 0.013893529772758484, 0.019464872777462006], "reduce_n3_p2": [0.001134862657636404, 0.001570449909195304, 0.00614729942753911, 0.01798330619931221, 0.9586108326911926, 0.002776659792289138, 0.003495222656056285], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.016016915440559387, 0.925984263420105, 0.024646984413266182, 0.0035129589959979057, 0.005528673995286226, 0.007940990850329399, 0.012708531692624092], "normal_n2_p1": [0.010945025831460953, 0.029369134455919266, 0.01589536853134632, 0.025241494178771973, 0.0010635916842147708, 0.005733749363571405, 0.0019427393563091755], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05619421973824501, 0.05113276466727257, 0.07125606387853622, 0.2527081072330475, 0.03601261228322983, 0.47702062129974365, 0.009600330144166946], "normal_n3_p1": [0.04064401611685753, 0.0035304834600538015, 0.007109784055501223, 0.0022831696551293135, 0.9293215870857239, 0.004792578052729368, 0.005025211721658707], "normal_n3_p2": [0.011076590977609158, 0.023125343024730682, 0.008698557503521442, 0.012356163933873177, 0.01818646676838398, 0.908717930316925, 0.013227864168584347], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.018755262717604637, 0.0192771814763546, 0.020406514406204224, 0.72097247838974, 0.05238804593682289, 0.08349880576133728, 0.04317319020628929], "reduce_n2_p1": [0.03106077015399933, 0.05809096246957779, 0.034711986780166626, 0.4663156270980835, 0.04443686455488205, 0.09905492514371872, 0.14949284493923187], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.07436936348676682, 0.0778566375374794, 0.05572245642542839, 0.051973722875118256, 0.08622336387634277, 0.08231441676616669, 0.5065462589263916], "reduce_n3_p1": [0.04350537806749344, 0.8643146753311157, 0.003807540750131011, 0.036099135875701904, 0.011511903256177902, 0.011144745163619518, 0.017901603132486343], "reduce_n3_p2": [0.0008661644533276558, 0.0007616863586008549, 0.0025906041264533997, 0.007086601108312607, 0.9832670092582703, 0.0004667823377531022, 0.0017669940134510398], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.016016915440559387, 0.925984263420105, 0.024646984413266182, 0.0035129589959979057, 0.005528673995286226, 0.007940990850329399, 0.012708531692624092], "normal_n2_p1": [0.010945025831460953, 0.029369134455919266, 0.01589536853134632, 0.025241494178771973, 0.0010635916842147708, 0.005733749363571405, 0.0019427393563091755], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05619421973824501, 0.05113276466727257, 0.07125606387853622, 0.2527081072330475, 0.03601261228322983, 0.47702062129974365, 0.009600330144166946], "normal_n3_p1": [0.04064401611685753, 0.0035304834600538015, 0.007109784055501223, 0.0022831696551293135, 0.9293215870857239, 0.004792578052729368, 0.005025211721658707], "normal_n3_p2": [0.011076590977609158, 0.023125343024730682, 0.008698557503521442, 0.012356163933873177, 0.01818646676838398, 0.908717930316925, 0.013227864168584347], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.018755262717604637, 0.0192771814763546, 0.020406514406204224, 0.72097247838974, 0.05238804593682289, 0.08349880576133728, 0.04317319020628929], "reduce_n2_p1": [0.03106077015399933, 0.05809096246957779, 0.034711986780166626, 0.4663156270980835, 0.04443686455488205, 0.09905492514371872, 0.14949284493923187], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.07436936348676682, 0.0778566375374794, 0.05572245642542839, 0.051973722875118256, 0.08622336387634277, 0.08231441676616669, 0.5065462589263916], "reduce_n3_p1": [0.04350537806749344, 0.8643146753311157, 0.003807540750131011, 0.036099135875701904, 0.011511903256177902, 0.011144745163619518, 0.017901603132486343], "reduce_n3_p2": [0.0008661644533276558, 0.0007616863586008549, 0.0025906041264533997, 0.007086601108312607, 0.9832670092582703, 0.0004667823377531022, 0.0017669940134510398], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.012593193911015987, 0.9340643882751465, 0.018663372844457626, 0.004185148514807224, 0.006174797657877207, 0.006919308099895716, 0.011883418075740337], "normal_n2_p1": [0.0022436981089413166, 0.007156314328312874, 0.004890816751867533, 0.011550895869731903, 0.0004975011688657105, 0.0015715396730229259, 0.0009949378436431289], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0539092980325222, 0.04452888295054436, 0.053767215460538864, 0.17799386382102966, 0.03041847050189972, 0.5908007025718689, 0.00920204445719719], "normal_n3_p1": [0.04132230579853058, 0.006352018099278212, 0.011287798173725605, 0.004187916871160269, 0.9004977345466614, 0.011838991194963455, 0.009199447929859161], "normal_n3_p2": [0.011867864988744259, 0.02457762323319912, 0.011231711134314537, 0.0149963004514575, 0.021814782172441483, 0.8914636373519897, 0.01665991172194481], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.015093086287379265, 0.022025661543011665, 0.01767648011445999, 0.727412223815918, 0.05714176595211029, 0.07290112227201462, 0.04795170575380325], "reduce_n2_p1": [0.014264827594161034, 0.021251602098345757, 0.029739506542682648, 0.6623062491416931, 0.029710423201322556, 0.09537269920110703, 0.11110829561948776], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.07365509867668152, 0.09612324088811874, 0.08064361661672592, 0.07346288859844208, 0.11081047356128693, 0.1910935789346695, 0.27861666679382324], "reduce_n3_p1": [0.07305377721786499, 0.8019876480102539, 0.004066638182848692, 0.04235456883907318, 0.014743324369192123, 0.01506096962839365, 0.02773786522448063], "reduce_n3_p2": [0.0016167788999155164, 0.0009979417081922293, 0.002700002631172538, 0.006043706089258194, 0.9829635620117188, 0.000356569275027141, 0.002190532861277461], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.012593193911015987, 0.9340643882751465, 0.018663372844457626, 0.004185148514807224, 0.006174797657877207, 0.006919308099895716, 0.011883418075740337], "normal_n2_p1": [0.0022436981089413166, 0.007156314328312874, 0.004890816751867533, 0.011550895869731903, 0.0004975011688657105, 0.0015715396730229259, 0.0009949378436431289], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0539092980325222, 0.04452888295054436, 0.053767215460538864, 0.17799386382102966, 0.03041847050189972, 0.5908007025718689, 0.00920204445719719], "normal_n3_p1": [0.04132230579853058, 0.006352018099278212, 0.011287798173725605, 0.004187916871160269, 0.9004977345466614, 0.011838991194963455, 0.009199447929859161], "normal_n3_p2": [0.011867864988744259, 0.02457762323319912, 0.011231711134314537, 0.0149963004514575, 0.021814782172441483, 0.8914636373519897, 0.01665991172194481], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.015093086287379265, 0.022025661543011665, 0.01767648011445999, 0.727412223815918, 0.05714176595211029, 0.07290112227201462, 0.04795170575380325], "reduce_n2_p1": [0.014264827594161034, 0.021251602098345757, 0.029739506542682648, 0.6623062491416931, 0.029710423201322556, 0.09537269920110703, 0.11110829561948776], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.07365509867668152, 0.09612324088811874, 0.08064361661672592, 0.07346288859844208, 0.11081047356128693, 0.1910935789346695, 0.27861666679382324], "reduce_n3_p1": [0.07305377721786499, 0.8019876480102539, 0.004066638182848692, 0.04235456883907318, 0.014743324369192123, 0.01506096962839365, 0.02773786522448063], "reduce_n3_p2": [0.0016167788999155164, 0.0009979417081922293, 0.002700002631172538, 0.006043706089258194, 0.9829635620117188, 0.000356569275027141, 0.002190532861277461], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.021006589755415916, 0.8738818764686584, 0.02868800237774849, 0.010528036393225193, 0.014960475265979767, 0.01218500081449747, 0.021320590749382973], "normal_n2_p1": [0.0019864989444613457, 0.0062685622833669186, 0.004822933580726385, 0.012917885556817055, 0.000736531859729439, 0.001649433863349259, 0.0014682823093608022], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.07810671627521515, 0.05030597746372223, 0.06534729152917862, 0.2195192277431488, 0.046542342752218246, 0.43730640411376953, 0.01606505736708641], "normal_n3_p1": [0.05104009062051773, 0.013197856955230236, 0.019867468625307083, 0.008726525120437145, 0.8268334865570068, 0.029349174350500107, 0.018931100144982338], "normal_n3_p2": [0.020806269720196724, 0.03553223982453346, 0.021546242758631706, 0.026757556945085526, 0.03833863139152527, 0.8066978454589844, 0.034706056118011475], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03086969070136547, 0.042573243379592896, 0.030116185545921326, 0.4515160322189331, 0.09780281782150269, 0.16610296070575714, 0.10736481845378876], "reduce_n2_p1": [0.005500284489244223, 0.006359780207276344, 0.012613470666110516, 0.9080023765563965, 0.01072356104850769, 0.02235572040081024, 0.025514718145132065], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.12741540372371674, 0.11562980711460114, 0.07626788318157196, 0.14837771654129028, 0.1473744660615921, 0.08668358623981476, 0.17133410274982452], "reduce_n3_p1": [0.11741095036268234, 0.6871578097343445, 0.007307278458029032, 0.046683311462402344, 0.024484194815158844, 0.0268721841275692, 0.04840623959898949], "reduce_n3_p2": [0.004701309371739626, 0.002324958797544241, 0.005000388715416193, 0.008758234791457653, 0.9685851335525513, 0.0006543260533362627, 0.004528361838310957], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.021006589755415916, 0.8738818764686584, 0.02868800237774849, 0.010528036393225193, 0.014960475265979767, 0.01218500081449747, 0.021320590749382973], "normal_n2_p1": [0.0019864989444613457, 0.0062685622833669186, 0.004822933580726385, 0.012917885556817055, 0.000736531859729439, 0.001649433863349259, 0.0014682823093608022], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.07810671627521515, 0.05030597746372223, 0.06534729152917862, 0.2195192277431488, 0.046542342752218246, 0.43730640411376953, 0.01606505736708641], "normal_n3_p1": [0.05104009062051773, 0.013197856955230236, 0.019867468625307083, 0.008726525120437145, 0.8268334865570068, 0.029349174350500107, 0.018931100144982338], "normal_n3_p2": [0.020806269720196724, 0.03553223982453346, 0.021546242758631706, 0.026757556945085526, 0.03833863139152527, 0.8066978454589844, 0.034706056118011475], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03086969070136547, 0.042573243379592896, 0.030116185545921326, 0.4515160322189331, 0.09780281782150269, 0.16610296070575714, 0.10736481845378876], "reduce_n2_p1": [0.005500284489244223, 0.006359780207276344, 0.012613470666110516, 0.9080023765563965, 0.01072356104850769, 0.02235572040081024, 0.025514718145132065], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.12741540372371674, 0.11562980711460114, 0.07626788318157196, 0.14837771654129028, 0.1473744660615921, 0.08668358623981476, 0.17133410274982452], "reduce_n3_p1": [0.11741095036268234, 0.6871578097343445, 0.007307278458029032, 0.046683311462402344, 0.024484194815158844, 0.0268721841275692, 0.04840623959898949], "reduce_n3_p2": [0.004701309371739626, 0.002324958797544241, 0.005000388715416193, 0.008758234791457653, 0.9685851335525513, 0.0006543260533362627, 0.004528361838310957], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04381927102804184, 0.7318593263626099, 0.04905246943235397, 0.028156718239188194, 0.031081778928637505, 0.02271570824086666, 0.049352988600730896], "normal_n2_p1": [0.0037939739413559437, 0.01093980297446251, 0.008864663541316986, 0.024169709533452988, 0.0019551636651158333, 0.003479207865893841, 0.003719830885529518], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06323730200529099, 0.04754289612174034, 0.07330228388309479, 0.18989449739456177, 0.05798609182238579, 0.44149017333984375, 0.02657998912036419], "normal_n3_p1": [0.09861999750137329, 0.04187214747071266, 0.06188684329390526, 0.024369556456804276, 0.5250355005264282, 0.10934161394834518, 0.047195855528116226], "normal_n3_p2": [0.02132609859108925, 0.02797272615134716, 0.024845024570822716, 0.02651311457157135, 0.038916829973459244, 0.79014652967453, 0.049448758363723755], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03602958470582962, 0.042566802352666855, 0.033371783792972565, 0.07386811822652817, 0.13110648095607758, 0.28026434779167175, 0.29267412424087524], "reduce_n2_p1": [0.005318938754498959, 0.005198724567890167, 0.009842637926340103, 0.9344158172607422, 0.00860747043043375, 0.013063236139714718, 0.016660373657941818], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.24364058673381805, 0.2268066257238388, 0.049356609582901, 0.10243982821702957, 0.20393119752407074, 0.03728121146559715, 0.06843531131744385], "reduce_n3_p1": [0.07570307701826096, 0.5373823046684265, 0.016933821141719818, 0.0366886630654335, 0.044632457196712494, 0.054387520998716354, 0.17736183106899261], "reduce_n3_p2": [0.01745239831507206, 0.00779176177456975, 0.014018632471561432, 0.019597092643380165, 0.911485493183136, 0.0020203760359436274, 0.013593506999313831], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04381927102804184, 0.7318593263626099, 0.04905246943235397, 0.028156718239188194, 0.031081778928637505, 0.02271570824086666, 0.049352988600730896], "normal_n2_p1": [0.0037939739413559437, 0.01093980297446251, 0.008864663541316986, 0.024169709533452988, 0.0019551636651158333, 0.003479207865893841, 0.003719830885529518], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06323730200529099, 0.04754289612174034, 0.07330228388309479, 0.18989449739456177, 0.05798609182238579, 0.44149017333984375, 0.02657998912036419], "normal_n3_p1": [0.09861999750137329, 0.04187214747071266, 0.06188684329390526, 0.024369556456804276, 0.5250355005264282, 0.10934161394834518, 0.047195855528116226], "normal_n3_p2": [0.02132609859108925, 0.02797272615134716, 0.024845024570822716, 0.02651311457157135, 0.038916829973459244, 0.79014652967453, 0.049448758363723755], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03602958470582962, 0.042566802352666855, 0.033371783792972565, 0.07386811822652817, 0.13110648095607758, 0.28026434779167175, 0.29267412424087524], "reduce_n2_p1": [0.005318938754498959, 0.005198724567890167, 0.009842637926340103, 0.9344158172607422, 0.00860747043043375, 0.013063236139714718, 0.016660373657941818], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.24364058673381805, 0.2268066257238388, 0.049356609582901, 0.10243982821702957, 0.20393119752407074, 0.03728121146559715, 0.06843531131744385], "reduce_n3_p1": [0.07570307701826096, 0.5373823046684265, 0.016933821141719818, 0.0366886630654335, 0.044632457196712494, 0.054387520998716354, 0.17736183106899261], "reduce_n3_p2": [0.01745239831507206, 0.00779176177456975, 0.014018632471561432, 0.019597092643380165, 0.911485493183136, 0.0020203760359436274, 0.013593506999313831], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0848281979560852, 0.5872390270233154, 0.049313485622406006, 0.052994608879089355, 0.085655577480793, 0.03170715644955635, 0.06100955605506897], "normal_n2_p1": [0.01108128484338522, 0.028291355818510056, 0.02324771136045456, 0.05836017057299614, 0.006913840305060148, 0.01036908384412527, 0.011853179894387722], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0400274321436882, 0.027510257437825203, 0.03269365429878235, 0.22250862419605255, 0.045623354613780975, 0.5907622575759888, 0.022033674642443657], "normal_n3_p1": [0.18401981890201569, 0.08043470233678818, 0.12660232186317444, 0.043469104915857315, 0.15407446026802063, 0.18125630915164948, 0.06298627704381943], "normal_n3_p2": [0.006652044598013163, 0.006186454091221094, 0.00719761848449707, 0.006884189788252115, 0.008214276283979416, 0.9456342458724976, 0.010985691100358963], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05390473082661629, 0.0492723323404789, 0.038342610001564026, 0.03302296996116638, 0.08053652197122574, 0.28585854172706604, 0.3403409719467163], "reduce_n2_p1": [0.010080920532345772, 0.009117781184613705, 0.014974981546401978, 0.8990988731384277, 0.01375571358948946, 0.0170148778706789, 0.023222995921969414], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.10590776056051254, 0.3603788912296295, 0.03542786464095116, 0.07821031659841537, 0.2880634069442749, 0.02892320416867733, 0.058669351041316986], "reduce_n3_p1": [0.03437631577253342, 0.4836665987968445, 0.01884610578417778, 0.011309501715004444, 0.032583899796009064, 0.024013685062527657, 0.37812677025794983], "reduce_n3_p2": [0.08826787769794464, 0.033054158091545105, 0.053152378648519516, 0.06692375987768173, 0.6540188193321228, 0.008249161764979362, 0.04738234356045723], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0848281979560852, 0.5872390270233154, 0.049313485622406006, 0.052994608879089355, 0.085655577480793, 0.03170715644955635, 0.06100955605506897], "normal_n2_p1": [0.01108128484338522, 0.028291355818510056, 0.02324771136045456, 0.05836017057299614, 0.006913840305060148, 0.01036908384412527, 0.011853179894387722], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0400274321436882, 0.027510257437825203, 0.03269365429878235, 0.22250862419605255, 0.045623354613780975, 0.5907622575759888, 0.022033674642443657], "normal_n3_p1": [0.18401981890201569, 0.08043470233678818, 0.12660232186317444, 0.043469104915857315, 0.15407446026802063, 0.18125630915164948, 0.06298627704381943], "normal_n3_p2": [0.006652044598013163, 0.006186454091221094, 0.00719761848449707, 0.006884189788252115, 0.008214276283979416, 0.9456342458724976, 0.010985691100358963], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05390473082661629, 0.0492723323404789, 0.038342610001564026, 0.03302296996116638, 0.08053652197122574, 0.28585854172706604, 0.3403409719467163], "reduce_n2_p1": [0.010080920532345772, 0.009117781184613705, 0.014974981546401978, 0.8990988731384277, 0.01375571358948946, 0.0170148778706789, 0.023222995921969414], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.10590776056051254, 0.3603788912296295, 0.03542786464095116, 0.07821031659841537, 0.2880634069442749, 0.02892320416867733, 0.058669351041316986], "reduce_n3_p1": [0.03437631577253342, 0.4836665987968445, 0.01884610578417778, 0.011309501715004444, 0.032583899796009064, 0.024013685062527657, 0.37812677025794983], "reduce_n3_p2": [0.08826787769794464, 0.033054158091545105, 0.053152378648519516, 0.06692375987768173, 0.6540188193321228, 0.008249161764979362, 0.04738234356045723], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05764931067824364, 0.17773215472698212, 0.028827600181102753, 0.041546761989593506, 0.44341668486595154, 0.03916025906801224, 0.12710775434970856], "normal_n2_p1": [0.051522307097911835, 0.13286098837852478, 0.11754726618528366, 0.16958537697792053, 0.03275449201464653, 0.04197105020284653, 0.04831162095069885], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03792768716812134, 0.021762484684586525, 0.02109251543879509, 0.2608095705509186, 0.03722250461578369, 0.5850387811660767, 0.025027304887771606], "normal_n3_p1": [0.4461917281150818, 0.09476114809513092, 0.12345260381698608, 0.048042234033346176, 0.03565990924835205, 0.09334136545658112, 0.05310196429491043], "normal_n3_p2": [0.004596419166773558, 0.0035596932284533978, 0.004638388752937317, 0.004024527035653591, 0.004264345858246088, 0.9675608277320862, 0.005599221680313349], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07033681124448776, 0.06234174221754074, 0.05711032822728157, 0.02854038029909134, 0.05423205718398094, 0.16265389323234558, 0.4726738929748535], "reduce_n2_p1": [0.026135066524147987, 0.022901248186826706, 0.030666209757328033, 0.7813927531242371, 0.027675192803144455, 0.03222150355577469, 0.04290714114904404], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.024257518351078033, 0.09247469902038574, 0.02179236337542534, 0.07411421090364456, 0.7071154117584229, 0.018662381917238235, 0.03817042335867882], "reduce_n3_p1": [0.033237721771001816, 0.6336463093757629, 0.027639247477054596, 0.009465725161135197, 0.030868476256728172, 0.019461670890450478, 0.2317006140947342], "reduce_n3_p2": [0.31635183095932007, 0.07157118618488312, 0.11480014771223068, 0.11788349598646164, 0.19139306247234344, 0.017464809119701385, 0.08199336379766464], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05764931067824364, 0.17773215472698212, 0.028827600181102753, 0.041546761989593506, 0.44341668486595154, 0.03916025906801224, 0.12710775434970856], "normal_n2_p1": [0.051522307097911835, 0.13286098837852478, 0.11754726618528366, 0.16958537697792053, 0.03275449201464653, 0.04197105020284653, 0.04831162095069885], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03792768716812134, 0.021762484684586525, 0.02109251543879509, 0.2608095705509186, 0.03722250461578369, 0.5850387811660767, 0.025027304887771606], "normal_n3_p1": [0.4461917281150818, 0.09476114809513092, 0.12345260381698608, 0.048042234033346176, 0.03565990924835205, 0.09334136545658112, 0.05310196429491043], "normal_n3_p2": [0.004596419166773558, 0.0035596932284533978, 0.004638388752937317, 0.004024527035653591, 0.004264345858246088, 0.9675608277320862, 0.005599221680313349], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07033681124448776, 0.06234174221754074, 0.05711032822728157, 0.02854038029909134, 0.05423205718398094, 0.16265389323234558, 0.4726738929748535], "reduce_n2_p1": [0.026135066524147987, 0.022901248186826706, 0.030666209757328033, 0.7813927531242371, 0.027675192803144455, 0.03222150355577469, 0.04290714114904404], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.024257518351078033, 0.09247469902038574, 0.02179236337542534, 0.07411421090364456, 0.7071154117584229, 0.018662381917238235, 0.03817042335867882], "reduce_n3_p1": [0.033237721771001816, 0.6336463093757629, 0.027639247477054596, 0.009465725161135197, 0.030868476256728172, 0.019461670890450478, 0.2317006140947342], "reduce_n3_p2": [0.31635183095932007, 0.07157118618488312, 0.11480014771223068, 0.11788349598646164, 0.19139306247234344, 0.017464809119701385, 0.08199336379766464], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09206173568964005, 0.3410862386226654, 0.05905386433005333, 0.042088691145181656, 0.03915928304195404, 0.05502765625715256, 0.22602595388889313], "normal_n2_p1": [0.05493632331490517, 0.23622795939445496, 0.20129631459712982, 0.1492650806903839, 0.0460907444357872, 0.04848359897732735, 0.043037306517362595], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0463402234017849, 0.020654913038015366, 0.018694793805480003, 0.23600848019123077, 0.03732426092028618, 0.595669686794281, 0.031550224870443344], "normal_n3_p1": [0.4831603169441223, 0.03225132077932358, 0.036263130605220795, 0.05109165981411934, 0.02200314961373806, 0.16128002107143402, 0.06769505143165588], "normal_n3_p2": [0.006208630278706551, 0.004297927487641573, 0.005728152114897966, 0.004435872193425894, 0.004399438388645649, 0.9630239605903625, 0.0053209965117275715], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.028407493606209755, 0.029038967564702034, 0.025642091408371925, 0.012104962952435017, 0.011205739341676235, 0.014106650836765766, 0.8610252141952515], "reduce_n2_p1": [0.07454431802034378, 0.061541348695755005, 0.07502300292253494, 0.5010736584663391, 0.05232854187488556, 0.06319649517536163, 0.06655300408601761], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.011524981819093227, 0.033323898911476135, 0.017343686893582344, 0.06584101915359497, 0.8016855716705322, 0.016562659293413162, 0.034617021679878235], "reduce_n3_p1": [0.04097247123718262, 0.6803683042526245, 0.03230246156454086, 0.010708918794989586, 0.020575063303112984, 0.021423613652586937, 0.17437569797039032], "reduce_n3_p2": [0.7891175746917725, 0.040954507887363434, 0.05835052952170372, 0.05052900314331055, 0.018466468900442123, 0.008284551091492176, 0.010398169048130512], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09206173568964005, 0.3410862386226654, 0.05905386433005333, 0.042088691145181656, 0.03915928304195404, 0.05502765625715256, 0.22602595388889313], "normal_n2_p1": [0.05493632331490517, 0.23622795939445496, 0.20129631459712982, 0.1492650806903839, 0.0460907444357872, 0.04848359897732735, 0.043037306517362595], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0463402234017849, 0.020654913038015366, 0.018694793805480003, 0.23600848019123077, 0.03732426092028618, 0.595669686794281, 0.031550224870443344], "normal_n3_p1": [0.4831603169441223, 0.03225132077932358, 0.036263130605220795, 0.05109165981411934, 0.02200314961373806, 0.16128002107143402, 0.06769505143165588], "normal_n3_p2": [0.006208630278706551, 0.004297927487641573, 0.005728152114897966, 0.004435872193425894, 0.004399438388645649, 0.9630239605903625, 0.0053209965117275715], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.028407493606209755, 0.029038967564702034, 0.025642091408371925, 0.012104962952435017, 0.011205739341676235, 0.014106650836765766, 0.8610252141952515], "reduce_n2_p1": [0.07454431802034378, 0.061541348695755005, 0.07502300292253494, 0.5010736584663391, 0.05232854187488556, 0.06319649517536163, 0.06655300408601761], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.011524981819093227, 0.033323898911476135, 0.017343686893582344, 0.06584101915359497, 0.8016855716705322, 0.016562659293413162, 0.034617021679878235], "reduce_n3_p1": [0.04097247123718262, 0.6803683042526245, 0.03230246156454086, 0.010708918794989586, 0.020575063303112984, 0.021423613652586937, 0.17437569797039032], "reduce_n3_p2": [0.7891175746917725, 0.040954507887363434, 0.05835052952170372, 0.05052900314331055, 0.018466468900442123, 0.008284551091492176, 0.010398169048130512], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.18749412894248962, 0.4598938822746277, 0.06139396131038666, 0.06564189493656158, 0.010917042382061481, 0.05173705890774727, 0.0853281244635582], "normal_n2_p1": [0.0574357733130455, 0.17657716572284698, 0.11198309808969498, 0.276858925819397, 0.06118357554078102, 0.07742008566856384, 0.04931063950061798], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.19494213163852692, 0.04181171581149101, 0.03804425522685051, 0.2937561571598053, 0.04782192036509514, 0.29704415798187256, 0.05461851879954338], "normal_n3_p1": [0.910370409488678, 0.006526730488985777, 0.0067287953570485115, 0.02835380658507347, 0.005213028285652399, 0.00551334535703063, 0.014508466236293316], "normal_n3_p2": [0.011531628668308258, 0.007385610602796078, 0.009592253714799881, 0.006697717122733593, 0.006675131153315306, 0.9418742656707764, 0.006851675920188427], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07367933541536331, 0.053871724754571915, 0.047296810895204544, 0.021925654262304306, 0.012967506423592567, 0.011918320320546627, 0.7558436393737793], "reduce_n2_p1": [0.09701834619045258, 0.0680030807852745, 0.12954296171665192, 0.478252649307251, 0.04133659601211548, 0.08032035827636719, 0.07701075077056885], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017376502975821495, 0.0357283279299736, 0.02539743483066559, 0.17068441212177277, 0.6201989650726318, 0.02882395125925541, 0.07037019729614258], "reduce_n3_p1": [0.03081607259809971, 0.9202067852020264, 0.010526774451136589, 0.00595200527459383, 0.005986514501273632, 0.007112417370080948, 0.009130774065852165], "reduce_n3_p2": [0.2872822880744934, 0.12584862112998962, 0.2089323252439499, 0.21449021995067596, 0.03163309395313263, 0.030458254739642143, 0.022486761212348938], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.18749412894248962, 0.4598938822746277, 0.06139396131038666, 0.06564189493656158, 0.010917042382061481, 0.05173705890774727, 0.0853281244635582], "normal_n2_p1": [0.0574357733130455, 0.17657716572284698, 0.11198309808969498, 0.276858925819397, 0.06118357554078102, 0.07742008566856384, 0.04931063950061798], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.19494213163852692, 0.04181171581149101, 0.03804425522685051, 0.2937561571598053, 0.04782192036509514, 0.29704415798187256, 0.05461851879954338], "normal_n3_p1": [0.910370409488678, 0.006526730488985777, 0.0067287953570485115, 0.02835380658507347, 0.005213028285652399, 0.00551334535703063, 0.014508466236293316], "normal_n3_p2": [0.011531628668308258, 0.007385610602796078, 0.009592253714799881, 0.006697717122733593, 0.006675131153315306, 0.9418742656707764, 0.006851675920188427], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07367933541536331, 0.053871724754571915, 0.047296810895204544, 0.021925654262304306, 0.012967506423592567, 0.011918320320546627, 0.7558436393737793], "reduce_n2_p1": [0.09701834619045258, 0.0680030807852745, 0.12954296171665192, 0.478252649307251, 0.04133659601211548, 0.08032035827636719, 0.07701075077056885], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017376502975821495, 0.0357283279299736, 0.02539743483066559, 0.17068441212177277, 0.6201989650726318, 0.02882395125925541, 0.07037019729614258], "reduce_n3_p1": [0.03081607259809971, 0.9202067852020264, 0.010526774451136589, 0.00595200527459383, 0.005986514501273632, 0.007112417370080948, 0.009130774065852165], "reduce_n3_p2": [0.2872822880744934, 0.12584862112998962, 0.2089323252439499, 0.21449021995067596, 0.03163309395313263, 0.030458254739642143, 0.022486761212348938], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.07914914190769196, 0.7495113015174866, 0.054783932864665985, 0.03152666985988617, 0.005025304853916168, 0.025151634588837624, 0.04247712343931198], "normal_n2_p1": [0.06945403665304184, 0.292236864566803, 0.16446860134601593, 0.13470101356506348, 0.03631335124373436, 0.12861892580986023, 0.037636056542396545], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028392106294631958, 0.021843910217285156, 0.02174985408782959, 0.4526042938232422, 0.04088079184293747, 0.35592082142829895, 0.0443929061293602], "normal_n3_p1": [0.9309887290000916, 0.004523293115198612, 0.0047740451991558075, 0.02957167476415634, 0.004152042791247368, 0.0017947294982150197, 0.009309997782111168], "normal_n3_p2": [0.013405771926045418, 0.009581400081515312, 0.011548593640327454, 0.009094636887311935, 0.00903500895947218, 0.9269083738327026, 0.008657257072627544], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.2772953510284424, 0.13283051550388336, 0.09031259268522263, 0.05151832848787308, 0.021871183067560196, 0.01862337626516819, 0.3604872524738312], "reduce_n2_p1": [0.03834061697125435, 0.026945605874061584, 0.019180407747626305, 0.7495678663253784, 0.014592356979846954, 0.03324710950255394, 0.10813974589109421], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.024515600875020027, 0.03875584900379181, 0.02792060188949108, 0.07070919126272202, 0.6721914410591125, 0.041482772678136826, 0.08653400838375092], "reduce_n3_p1": [0.03264851123094559, 0.9231688380241394, 0.009489599615335464, 0.007872399874031544, 0.005090347025543451, 0.006621757056564093, 0.003235790878534317], "reduce_n3_p2": [0.20255380868911743, 0.13420575857162476, 0.13692618906497955, 0.3568193018436432, 0.028582904487848282, 0.036891404539346695, 0.023549064993858337], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.07914914190769196, 0.7495113015174866, 0.054783932864665985, 0.03152666985988617, 0.005025304853916168, 0.025151634588837624, 0.04247712343931198], "normal_n2_p1": [0.06945403665304184, 0.292236864566803, 0.16446860134601593, 0.13470101356506348, 0.03631335124373436, 0.12861892580986023, 0.037636056542396545], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028392106294631958, 0.021843910217285156, 0.02174985408782959, 0.4526042938232422, 0.04088079184293747, 0.35592082142829895, 0.0443929061293602], "normal_n3_p1": [0.9309887290000916, 0.004523293115198612, 0.0047740451991558075, 0.02957167476415634, 0.004152042791247368, 0.0017947294982150197, 0.009309997782111168], "normal_n3_p2": [0.013405771926045418, 0.009581400081515312, 0.011548593640327454, 0.009094636887311935, 0.00903500895947218, 0.9269083738327026, 0.008657257072627544], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.2772953510284424, 0.13283051550388336, 0.09031259268522263, 0.05151832848787308, 0.021871183067560196, 0.01862337626516819, 0.3604872524738312], "reduce_n2_p1": [0.03834061697125435, 0.026945605874061584, 0.019180407747626305, 0.7495678663253784, 0.014592356979846954, 0.03324710950255394, 0.10813974589109421], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.024515600875020027, 0.03875584900379181, 0.02792060188949108, 0.07070919126272202, 0.6721914410591125, 0.041482772678136826, 0.08653400838375092], "reduce_n3_p1": [0.03264851123094559, 0.9231688380241394, 0.009489599615335464, 0.007872399874031544, 0.005090347025543451, 0.006621757056564093, 0.003235790878534317], "reduce_n3_p2": [0.20255380868911743, 0.13420575857162476, 0.13692618906497955, 0.3568193018436432, 0.028582904487848282, 0.036891404539346695, 0.023549064993858337], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04523150995373726, 0.8157520294189453, 0.05740763247013092, 0.01868818886578083, 0.004217118490487337, 0.02365291863679886, 0.02822182886302471], "normal_n2_p1": [0.06931163370609283, 0.24028687179088593, 0.09817665815353394, 0.09962927550077438, 0.03190777450799942, 0.20698559284210205, 0.040504612028598785], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.014329999685287476, 0.01851588301360607, 0.020896930247545242, 0.6195424795150757, 0.03774179890751839, 0.1888061910867691, 0.04588316008448601], "normal_n3_p1": [0.8549731969833374, 0.008352193981409073, 0.009560954757034779, 0.06470830738544464, 0.008759604766964912, 0.0029609729535877705, 0.016200879588723183], "normal_n3_p2": [0.016666825860738754, 0.01292762253433466, 0.014065789990127087, 0.014098073355853558, 0.013025393709540367, 0.8995930552482605, 0.01283357199281454], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4728964567184448, 0.15153048932552338, 0.13101185858249664, 0.07670474797487259, 0.028234602883458138, 0.019089514389634132, 0.0569109208881855], "reduce_n2_p1": [0.005510764196515083, 0.004639959894120693, 0.003252519993111491, 0.9143170118331909, 0.003857278497889638, 0.009207457304000854, 0.05561070889234543], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.031266096979379654, 0.035487547516822815, 0.027896728366613388, 0.04965866729617119, 0.6869317293167114, 0.042381417006254196, 0.08717558532953262], "reduce_n3_p1": [0.05051850900053978, 0.8597752451896667, 0.018527310341596603, 0.017506076022982597, 0.008624281734228134, 0.012918046675622463, 0.00396081805229187], "reduce_n3_p2": [0.44050896167755127, 0.15294034779071808, 0.10857877880334854, 0.16502492129802704, 0.02491927519440651, 0.03740618750452995, 0.0193620715290308], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04523150995373726, 0.8157520294189453, 0.05740763247013092, 0.01868818886578083, 0.004217118490487337, 0.02365291863679886, 0.02822182886302471], "normal_n2_p1": [0.06931163370609283, 0.24028687179088593, 0.09817665815353394, 0.09962927550077438, 0.03190777450799942, 0.20698559284210205, 0.040504612028598785], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.014329999685287476, 0.01851588301360607, 0.020896930247545242, 0.6195424795150757, 0.03774179890751839, 0.1888061910867691, 0.04588316008448601], "normal_n3_p1": [0.8549731969833374, 0.008352193981409073, 0.009560954757034779, 0.06470830738544464, 0.008759604766964912, 0.0029609729535877705, 0.016200879588723183], "normal_n3_p2": [0.016666825860738754, 0.01292762253433466, 0.014065789990127087, 0.014098073355853558, 0.013025393709540367, 0.8995930552482605, 0.01283357199281454], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4728964567184448, 0.15153048932552338, 0.13101185858249664, 0.07670474797487259, 0.028234602883458138, 0.019089514389634132, 0.0569109208881855], "reduce_n2_p1": [0.005510764196515083, 0.004639959894120693, 0.003252519993111491, 0.9143170118331909, 0.003857278497889638, 0.009207457304000854, 0.05561070889234543], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.031266096979379654, 0.035487547516822815, 0.027896728366613388, 0.04965866729617119, 0.6869317293167114, 0.042381417006254196, 0.08717558532953262], "reduce_n3_p1": [0.05051850900053978, 0.8597752451896667, 0.018527310341596603, 0.017506076022982597, 0.008624281734228134, 0.012918046675622463, 0.00396081805229187], "reduce_n3_p2": [0.44050896167755127, 0.15294034779071808, 0.10857877880334854, 0.16502492129802704, 0.02491927519440651, 0.03740618750452995, 0.0193620715290308], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05952778458595276, 0.6056620478630066, 0.0855240523815155, 0.0637044757604599, 0.010365891270339489, 0.06627456098794937, 0.08598119020462036], "normal_n2_p1": [0.01693413034081459, 0.02860749512910843, 0.016092758625745773, 0.06638263911008835, 0.01398753933608532, 0.6820084452629089, 0.02071070298552513], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01628735475242138, 0.02766997739672661, 0.036919403821229935, 0.22297394275665283, 0.06847944855690002, 0.28669047355651855, 0.12697795033454895], "normal_n3_p1": [0.44338563084602356, 0.023002948611974716, 0.0299223642796278, 0.2770654559135437, 0.025766072794795036, 0.00970730371773243, 0.041719190776348114], "normal_n3_p2": [0.029935399070382118, 0.0252858716994524, 0.02659013867378235, 0.030012449249625206, 0.027559369802474976, 0.8009554147720337, 0.026118746027350426], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.21194146573543549, 0.21108922362327576, 0.25326967239379883, 0.11394038796424866, 0.03780316561460495, 0.02611527219414711, 0.04334638640284538], "reduce_n2_p1": [0.0020934997592121363, 0.002074137795716524, 0.001497426419518888, 0.9529517292976379, 0.0022604395635426044, 0.004309776239097118, 0.0318964384496212], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04458484426140785, 0.029788024723529816, 0.023340782150626183, 0.036379195749759674, 0.766990065574646, 0.0315951406955719, 0.038666121661663055], "reduce_n3_p1": [0.09538047015666962, 0.5190377235412598, 0.06860143691301346, 0.06389646232128143, 0.028859512880444527, 0.046131957322359085, 0.010405444540083408], "reduce_n3_p2": [0.9027692675590515, 0.04029504209756851, 0.023470008745789528, 0.007738820742815733, 0.005605392158031464, 0.006939216982573271, 0.005470357835292816], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05952778458595276, 0.6056620478630066, 0.0855240523815155, 0.0637044757604599, 0.010365891270339489, 0.06627456098794937, 0.08598119020462036], "normal_n2_p1": [0.01693413034081459, 0.02860749512910843, 0.016092758625745773, 0.06638263911008835, 0.01398753933608532, 0.6820084452629089, 0.02071070298552513], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01628735475242138, 0.02766997739672661, 0.036919403821229935, 0.22297394275665283, 0.06847944855690002, 0.28669047355651855, 0.12697795033454895], "normal_n3_p1": [0.44338563084602356, 0.023002948611974716, 0.0299223642796278, 0.2770654559135437, 0.025766072794795036, 0.00970730371773243, 0.041719190776348114], "normal_n3_p2": [0.029935399070382118, 0.0252858716994524, 0.02659013867378235, 0.030012449249625206, 0.027559369802474976, 0.8009554147720337, 0.026118746027350426], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.21194146573543549, 0.21108922362327576, 0.25326967239379883, 0.11394038796424866, 0.03780316561460495, 0.02611527219414711, 0.04334638640284538], "reduce_n2_p1": [0.0020934997592121363, 0.002074137795716524, 0.001497426419518888, 0.9529517292976379, 0.0022604395635426044, 0.004309776239097118, 0.0318964384496212], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04458484426140785, 0.029788024723529816, 0.023340782150626183, 0.036379195749759674, 0.766990065574646, 0.0315951406955719, 0.038666121661663055], "reduce_n3_p1": [0.09538047015666962, 0.5190377235412598, 0.06860143691301346, 0.06389646232128143, 0.028859512880444527, 0.046131957322359085, 0.010405444540083408], "reduce_n3_p2": [0.9027692675590515, 0.04029504209756851, 0.023470008745789528, 0.007738820742815733, 0.005605392158031464, 0.006939216982573271, 0.005470357835292816], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0455373078584671, 0.8010693788528442, 0.04272916540503502, 0.010905196890234947, 0.00803806260228157, 0.05790285766124725, 0.020686237141489983], "normal_n2_p1": [0.016217796131968498, 0.01792450062930584, 0.013142443262040615, 0.1074584349989891, 0.013155302964150906, 0.07808016240596771, 0.023226987570524216], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.015732506290078163, 0.02905512973666191, 0.04084468632936478, 0.10871221125125885, 0.05324176326394081, 0.6149953603744507, 0.047974806278944016], "normal_n3_p1": [0.07717809826135635, 0.026780109852552414, 0.03829934448003769, 0.6153639554977417, 0.03678581863641739, 0.016482459381222725, 0.04159301519393921], "normal_n3_p2": [0.021415743976831436, 0.021559571847319603, 0.02124222181737423, 0.02725428156554699, 0.01992664858698845, 0.8475440740585327, 0.01595330610871315], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01422114297747612, 0.048977259546518326, 0.8202580213546753, 0.045701563358306885, 0.017283862456679344, 0.00969908107072115, 0.008846498094499111], "reduce_n2_p1": [0.0022832611575722694, 0.0024212959688156843, 0.0017517502419650555, 0.9531457424163818, 0.0027958271093666553, 0.004526910372078419, 0.02833533100783825], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.028546735644340515, 0.02102789469063282, 0.01813632622361183, 0.030722923576831818, 0.8426047563552856, 0.022865531966090202, 0.01575966738164425], "reduce_n3_p1": [0.1684103012084961, 0.42594048380851746, 0.15478643774986267, 0.15264415740966797, 0.02782248519361019, 0.0318252369761467, 0.014606273733079433], "reduce_n3_p2": [0.8452969193458557, 0.06760740280151367, 0.03707742318511009, 0.006345923524349928, 0.009986596181988716, 0.01072347816079855, 0.01111458707600832], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0455373078584671, 0.8010693788528442, 0.04272916540503502, 0.010905196890234947, 0.00803806260228157, 0.05790285766124725, 0.020686237141489983], "normal_n2_p1": [0.016217796131968498, 0.01792450062930584, 0.013142443262040615, 0.1074584349989891, 0.013155302964150906, 0.07808016240596771, 0.023226987570524216], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.015732506290078163, 0.02905512973666191, 0.04084468632936478, 0.10871221125125885, 0.05324176326394081, 0.6149953603744507, 0.047974806278944016], "normal_n3_p1": [0.07717809826135635, 0.026780109852552414, 0.03829934448003769, 0.6153639554977417, 0.03678581863641739, 0.016482459381222725, 0.04159301519393921], "normal_n3_p2": [0.021415743976831436, 0.021559571847319603, 0.02124222181737423, 0.02725428156554699, 0.01992664858698845, 0.8475440740585327, 0.01595330610871315], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01422114297747612, 0.048977259546518326, 0.8202580213546753, 0.045701563358306885, 0.017283862456679344, 0.00969908107072115, 0.008846498094499111], "reduce_n2_p1": [0.0022832611575722694, 0.0024212959688156843, 0.0017517502419650555, 0.9531457424163818, 0.0027958271093666553, 0.004526910372078419, 0.02833533100783825], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.028546735644340515, 0.02102789469063282, 0.01813632622361183, 0.030722923576831818, 0.8426047563552856, 0.022865531966090202, 0.01575966738164425], "reduce_n3_p1": [0.1684103012084961, 0.42594048380851746, 0.15478643774986267, 0.15264415740966797, 0.02782248519361019, 0.0318252369761467, 0.014606273733079433], "reduce_n3_p2": [0.8452969193458557, 0.06760740280151367, 0.03707742318511009, 0.006345923524349928, 0.009986596181988716, 0.01072347816079855, 0.01111458707600832], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05158517137169838, 0.7892752885818481, 0.027520032599568367, 0.006564099807292223, 0.010789955034852028, 0.08072510361671448, 0.015118836425244808], "normal_n2_p1": [0.01644529215991497, 0.01371777057647705, 0.012753340415656567, 0.06803692132234573, 0.01268407516181469, 0.029437731951475143, 0.01817338541150093], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028960837051272392, 0.048851244151592255, 0.06109808757901192, 0.3912339210510254, 0.11239088326692581, 0.2272706925868988, 0.05984129384160042], "normal_n3_p1": [0.027737561613321304, 0.030917556956410408, 0.04612283408641815, 0.6102811098098755, 0.05971818044781685, 0.033051349222660065, 0.056141097098588943], "normal_n3_p2": [0.010009102523326874, 0.010853474028408527, 0.009954964742064476, 0.0142286391928792, 0.009434061124920845, 0.9240149855613708, 0.008544465526938438], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.003139305394142866, 0.016389930620789528, 0.929155170917511, 0.021695401519536972, 0.0073777055367827415, 0.004821436945348978, 0.003264116356149316], "reduce_n2_p1": [0.004318389110267162, 0.004642743617296219, 0.0033946861512959003, 0.9245556592941284, 0.00525992177426815, 0.007315988186746836, 0.039717964828014374], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017202137038111687, 0.015193169005215168, 0.012704802677035332, 0.022263692691922188, 0.892895519733429, 0.016761979088187218, 0.009041006676852703], "reduce_n3_p1": [0.12182798236608505, 0.3026089370250702, 0.3889618515968323, 0.06909465789794922, 0.03729886934161186, 0.040702175348997116, 0.026399651542305946], "reduce_n3_p2": [0.6042332053184509, 0.18144893646240234, 0.09299421310424805, 0.012374171987175941, 0.02589373290538788, 0.024082619696855545, 0.028926843777298927], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05158517137169838, 0.7892752885818481, 0.027520032599568367, 0.006564099807292223, 0.010789955034852028, 0.08072510361671448, 0.015118836425244808], "normal_n2_p1": [0.01644529215991497, 0.01371777057647705, 0.012753340415656567, 0.06803692132234573, 0.01268407516181469, 0.029437731951475143, 0.01817338541150093], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028960837051272392, 0.048851244151592255, 0.06109808757901192, 0.3912339210510254, 0.11239088326692581, 0.2272706925868988, 0.05984129384160042], "normal_n3_p1": [0.027737561613321304, 0.030917556956410408, 0.04612283408641815, 0.6102811098098755, 0.05971818044781685, 0.033051349222660065, 0.056141097098588943], "normal_n3_p2": [0.010009102523326874, 0.010853474028408527, 0.009954964742064476, 0.0142286391928792, 0.009434061124920845, 0.9240149855613708, 0.008544465526938438], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.003139305394142866, 0.016389930620789528, 0.929155170917511, 0.021695401519536972, 0.0073777055367827415, 0.004821436945348978, 0.003264116356149316], "reduce_n2_p1": [0.004318389110267162, 0.004642743617296219, 0.0033946861512959003, 0.9245556592941284, 0.00525992177426815, 0.007315988186746836, 0.039717964828014374], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017202137038111687, 0.015193169005215168, 0.012704802677035332, 0.022263692691922188, 0.892895519733429, 0.016761979088187218, 0.009041006676852703], "reduce_n3_p1": [0.12182798236608505, 0.3026089370250702, 0.3889618515968323, 0.06909465789794922, 0.03729886934161186, 0.040702175348997116, 0.026399651542305946], "reduce_n3_p2": [0.6042332053184509, 0.18144893646240234, 0.09299421310424805, 0.012374171987175941, 0.02589373290538788, 0.024082619696855545, 0.028926843777298927], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04479600489139557, 0.7497411370277405, 0.03584903106093407, 0.008351847529411316, 0.016720540821552277, 0.09660624712705612, 0.01595589704811573], "normal_n2_p1": [0.03339669853448868, 0.02442404255270958, 0.026285314932465553, 0.10983872413635254, 0.02482890896499157, 0.03944194316864014, 0.03370165079832077], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.016863461583852768, 0.01959119364619255, 0.020408300682902336, 0.7373483777046204, 0.031111974269151688, 0.12736523151397705, 0.0294523686170578], "normal_n3_p1": [0.023567350581288338, 0.047379281371831894, 0.07044234126806259, 0.3484799563884735, 0.12490605562925339, 0.08751999586820602, 0.10871942341327667], "normal_n3_p2": [0.008942737244069576, 0.009973025880753994, 0.009068154729902744, 0.0135343624278903, 0.008537831716239452, 0.9296175241470337, 0.008272577077150345], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.004714774899184704, 0.025857865810394287, 0.8731173872947693, 0.03919801861047745, 0.014515156857669353, 0.009425139985978603, 0.0055258735083043575], "reduce_n2_p1": [0.007747932802885771, 0.008388401009142399, 0.0058798701502382755, 0.914429247379303, 0.008350272662937641, 0.01037075649946928, 0.02798532135784626], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014157388359308243, 0.01403020415455103, 0.00974965374916792, 0.0165921151638031, 0.9138584136962891, 0.0133522879332304, 0.007090419996529818], "reduce_n3_p1": [0.23549778759479523, 0.3476669490337372, 0.25013408064842224, 0.03921106085181236, 0.04111844673752785, 0.034185487776994705, 0.03975629806518555], "reduce_n3_p2": [0.13898786902427673, 0.31034377217292786, 0.23817451298236847, 0.027331367135047913, 0.0652427151799202, 0.052147846668958664, 0.08019416779279709], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04479600489139557, 0.7497411370277405, 0.03584903106093407, 0.008351847529411316, 0.016720540821552277, 0.09660624712705612, 0.01595589704811573], "normal_n2_p1": [0.03339669853448868, 0.02442404255270958, 0.026285314932465553, 0.10983872413635254, 0.02482890896499157, 0.03944194316864014, 0.03370165079832077], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.016863461583852768, 0.01959119364619255, 0.020408300682902336, 0.7373483777046204, 0.031111974269151688, 0.12736523151397705, 0.0294523686170578], "normal_n3_p1": [0.023567350581288338, 0.047379281371831894, 0.07044234126806259, 0.3484799563884735, 0.12490605562925339, 0.08751999586820602, 0.10871942341327667], "normal_n3_p2": [0.008942737244069576, 0.009973025880753994, 0.009068154729902744, 0.0135343624278903, 0.008537831716239452, 0.9296175241470337, 0.008272577077150345], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.004714774899184704, 0.025857865810394287, 0.8731173872947693, 0.03919801861047745, 0.014515156857669353, 0.009425139985978603, 0.0055258735083043575], "reduce_n2_p1": [0.007747932802885771, 0.008388401009142399, 0.0058798701502382755, 0.914429247379303, 0.008350272662937641, 0.01037075649946928, 0.02798532135784626], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014157388359308243, 0.01403020415455103, 0.00974965374916792, 0.0165921151638031, 0.9138584136962891, 0.0133522879332304, 0.007090419996529818], "reduce_n3_p1": [0.23549778759479523, 0.3476669490337372, 0.25013408064842224, 0.03921106085181236, 0.04111844673752785, 0.034185487776994705, 0.03975629806518555], "reduce_n3_p2": [0.13898786902427673, 0.31034377217292786, 0.23817451298236847, 0.027331367135047913, 0.0652427151799202, 0.052147846668958664, 0.08019416779279709], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.051766712218523026, 0.587763786315918, 0.05550329387187958, 0.01590590737760067, 0.028598731383681297, 0.156367689371109, 0.02122916840016842], "normal_n2_p1": [0.06711260974407196, 0.04218580201268196, 0.055662114173173904, 0.07278785854578018, 0.05238592252135277, 0.051184240728616714, 0.062328532338142395], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.029529346153140068, 0.026572726666927338, 0.027853354811668396, 0.5967880487442017, 0.02994026616215706, 0.2215876430273056, 0.04346207529306412], "normal_n3_p1": [0.010471971705555916, 0.02380034327507019, 0.035812050104141235, 0.7974321842193604, 0.009827867150306702, 0.03879165276885033, 0.03859161585569382], "normal_n3_p2": [0.010938149876892567, 0.011402190662920475, 0.010696768760681152, 0.016468646004796028, 0.00958384107798338, 0.9188141822814941, 0.008946062996983528], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.006241139490157366, 0.024419046938419342, 0.8717755675315857, 0.03451619669795036, 0.01854747161269188, 0.011051833629608154, 0.006979476660490036], "reduce_n2_p1": [0.01671471633017063, 0.017232025042176247, 0.011750569567084312, 0.8521941304206848, 0.015677209943532944, 0.017894554883241653, 0.035978637635707855], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01526654977351427, 0.014983359724283218, 0.010828440077602863, 0.017542080953717232, 0.9058374166488647, 0.014443937689065933, 0.008346647955477238], "reduce_n3_p1": [0.2088279128074646, 0.2330252230167389, 0.34209150075912476, 0.04631093144416809, 0.06263171881437302, 0.049685705453157425, 0.03649456053972244], "reduce_n3_p2": [0.04869573563337326, 0.22019419074058533, 0.2485458105802536, 0.04033906012773514, 0.07880289107561111, 0.06622425466775894, 0.15513060986995697], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.051766712218523026, 0.587763786315918, 0.05550329387187958, 0.01590590737760067, 0.028598731383681297, 0.156367689371109, 0.02122916840016842], "normal_n2_p1": [0.06711260974407196, 0.04218580201268196, 0.055662114173173904, 0.07278785854578018, 0.05238592252135277, 0.051184240728616714, 0.062328532338142395], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.029529346153140068, 0.026572726666927338, 0.027853354811668396, 0.5967880487442017, 0.02994026616215706, 0.2215876430273056, 0.04346207529306412], "normal_n3_p1": [0.010471971705555916, 0.02380034327507019, 0.035812050104141235, 0.7974321842193604, 0.009827867150306702, 0.03879165276885033, 0.03859161585569382], "normal_n3_p2": [0.010938149876892567, 0.011402190662920475, 0.010696768760681152, 0.016468646004796028, 0.00958384107798338, 0.9188141822814941, 0.008946062996983528], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.006241139490157366, 0.024419046938419342, 0.8717755675315857, 0.03451619669795036, 0.01854747161269188, 0.011051833629608154, 0.006979476660490036], "reduce_n2_p1": [0.01671471633017063, 0.017232025042176247, 0.011750569567084312, 0.8521941304206848, 0.015677209943532944, 0.017894554883241653, 0.035978637635707855], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01526654977351427, 0.014983359724283218, 0.010828440077602863, 0.017542080953717232, 0.9058374166488647, 0.014443937689065933, 0.008346647955477238], "reduce_n3_p1": [0.2088279128074646, 0.2330252230167389, 0.34209150075912476, 0.04631093144416809, 0.06263171881437302, 0.049685705453157425, 0.03649456053972244], "reduce_n3_p2": [0.04869573563337326, 0.22019419074058533, 0.2485458105802536, 0.04033906012773514, 0.07880289107561111, 0.06622425466775894, 0.15513060986995697], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.047464966773986816, 0.23570507764816284, 0.060413945466279984, 0.02606687881052494, 0.035075247287750244, 0.38795050978660583, 0.026240481063723564], "normal_n2_p1": [0.08844200521707535, 0.05232866108417511, 0.07798173278570175, 0.06300897151231766, 0.05960213765501976, 0.0442105233669281, 0.07069464027881622], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028137406334280968, 0.021520201116800308, 0.021735619753599167, 0.6493896245956421, 0.020086679607629776, 0.19591109454631805, 0.03918658196926117], "normal_n3_p1": [0.010973618365824223, 0.028923219069838524, 0.046586956828832626, 0.7799292206764221, 0.0048448494635522366, 0.051890779286623, 0.034993816167116165], "normal_n3_p2": [0.01153860054910183, 0.011376999318599701, 0.01117388904094696, 0.016966186463832855, 0.010148929432034492, 0.9159696698188782, 0.009370637126266956], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.010842968709766865, 0.02806120179593563, 0.8272581696510315, 0.03907068446278572, 0.02803346887230873, 0.017175819724798203, 0.011191179044544697], "reduce_n2_p1": [0.03003896400332451, 0.03044695407152176, 0.021603062748908997, 0.769366979598999, 0.027062198147177696, 0.03029417060315609, 0.04515555873513222], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010683753527700901, 0.01170013565570116, 0.00981032382696867, 0.013121305033564568, 0.9238108396530151, 0.011704152449965477, 0.00776782026514411], "reduce_n3_p1": [0.8332704901695251, 0.0956123098731041, 0.01277814619243145, 0.008568866178393364, 0.010385162197053432, 0.02000427059829235, 0.00762799009680748], "reduce_n3_p2": [0.028735801577568054, 0.1748938262462616, 0.4337131381034851, 0.043328069150447845, 0.05457894876599312, 0.07521294057369232, 0.04389605671167374], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.047464966773986816, 0.23570507764816284, 0.060413945466279984, 0.02606687881052494, 0.035075247287750244, 0.38795050978660583, 0.026240481063723564], "normal_n2_p1": [0.08844200521707535, 0.05232866108417511, 0.07798173278570175, 0.06300897151231766, 0.05960213765501976, 0.0442105233669281, 0.07069464027881622], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028137406334280968, 0.021520201116800308, 0.021735619753599167, 0.6493896245956421, 0.020086679607629776, 0.19591109454631805, 0.03918658196926117], "normal_n3_p1": [0.010973618365824223, 0.028923219069838524, 0.046586956828832626, 0.7799292206764221, 0.0048448494635522366, 0.051890779286623, 0.034993816167116165], "normal_n3_p2": [0.01153860054910183, 0.011376999318599701, 0.01117388904094696, 0.016966186463832855, 0.010148929432034492, 0.9159696698188782, 0.009370637126266956], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.010842968709766865, 0.02806120179593563, 0.8272581696510315, 0.03907068446278572, 0.02803346887230873, 0.017175819724798203, 0.011191179044544697], "reduce_n2_p1": [0.03003896400332451, 0.03044695407152176, 0.021603062748908997, 0.769366979598999, 0.027062198147177696, 0.03029417060315609, 0.04515555873513222], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010683753527700901, 0.01170013565570116, 0.00981032382696867, 0.013121305033564568, 0.9238108396530151, 0.011704152449965477, 0.00776782026514411], "reduce_n3_p1": [0.8332704901695251, 0.0956123098731041, 0.01277814619243145, 0.008568866178393364, 0.010385162197053432, 0.02000427059829235, 0.00762799009680748], "reduce_n3_p2": [0.028735801577568054, 0.1748938262462616, 0.4337131381034851, 0.043328069150447845, 0.05457894876599312, 0.07521294057369232, 0.04389605671167374], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08985721319913864, 0.480210542678833, 0.20816528797149658, 0.03326493129134178, 0.03621601685881615, 0.025986861437559128, 0.024900928139686584], "normal_n2_p1": [0.029402676969766617, 0.01858614943921566, 0.02920319139957428, 0.017219027504324913, 0.02201271988451481, 0.01207557413727045, 0.022775551304221153], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.060829609632492065, 0.04480276256799698, 0.044441547244787216, 0.38267701864242554, 0.02805458940565586, 0.3178443908691406, 0.07363834232091904], "normal_n3_p1": [0.011695205233991146, 0.03432457521557808, 0.052926190197467804, 0.8122825026512146, 0.003789609530940652, 0.028078734874725342, 0.03170926868915558], "normal_n3_p2": [0.018879879266023636, 0.01768414117395878, 0.017524000257253647, 0.019917026162147522, 0.01495279185473919, 0.8805581331253052, 0.012459561228752136], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.012811334803700447, 0.022504230961203575, 0.8728389143943787, 0.016382133588194847, 0.02253221906721592, 0.01441841572523117, 0.010537832975387573], "reduce_n2_p1": [0.08498912304639816, 0.08311638981103897, 0.054262250661849976, 0.39929670095443726, 0.06770758330821991, 0.07481075823307037, 0.09573230147361755], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014743692241609097, 0.015530864708125591, 0.013533915393054485, 0.017065953463315964, 0.8966293931007385, 0.015171063132584095, 0.011449080891907215], "reduce_n3_p1": [0.9465789198875427, 0.031357500702142715, 0.001547084772028029, 0.002412207657471299, 0.002819177694618702, 0.006856794934719801, 0.002492492087185383], "reduce_n3_p2": [0.031744178384542465, 0.14708676934242249, 0.4087286591529846, 0.054078321903944016, 0.04435969144105911, 0.11683550477027893, 0.04262060672044754], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08985721319913864, 0.480210542678833, 0.20816528797149658, 0.03326493129134178, 0.03621601685881615, 0.025986861437559128, 0.024900928139686584], "normal_n2_p1": [0.029402676969766617, 0.01858614943921566, 0.02920319139957428, 0.017219027504324913, 0.02201271988451481, 0.01207557413727045, 0.022775551304221153], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.060829609632492065, 0.04480276256799698, 0.044441547244787216, 0.38267701864242554, 0.02805458940565586, 0.3178443908691406, 0.07363834232091904], "normal_n3_p1": [0.011695205233991146, 0.03432457521557808, 0.052926190197467804, 0.8122825026512146, 0.003789609530940652, 0.028078734874725342, 0.03170926868915558], "normal_n3_p2": [0.018879879266023636, 0.01768414117395878, 0.017524000257253647, 0.019917026162147522, 0.01495279185473919, 0.8805581331253052, 0.012459561228752136], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.012811334803700447, 0.022504230961203575, 0.8728389143943787, 0.016382133588194847, 0.02253221906721592, 0.01441841572523117, 0.010537832975387573], "reduce_n2_p1": [0.08498912304639816, 0.08311638981103897, 0.054262250661849976, 0.39929670095443726, 0.06770758330821991, 0.07481075823307037, 0.09573230147361755], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014743692241609097, 0.015530864708125591, 0.013533915393054485, 0.017065953463315964, 0.8966293931007385, 0.015171063132584095, 0.011449080891907215], "reduce_n3_p1": [0.9465789198875427, 0.031357500702142715, 0.001547084772028029, 0.002412207657471299, 0.002819177694618702, 0.006856794934719801, 0.002492492087185383], "reduce_n3_p2": [0.031744178384542465, 0.14708676934242249, 0.4087286591529846, 0.054078321903944016, 0.04435969144105911, 0.11683550477027893, 0.04262060672044754], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.27303576469421387, 0.3341917395591736, 0.15758146345615387, 0.03917793557047844, 0.056955598294734955, 0.006651225499808788, 0.01987839862704277], "normal_n2_p1": [0.042470067739486694, 0.023452190682291985, 0.03952312096953392, 0.019426628947257996, 0.030048690736293793, 0.01266363076865673, 0.018802480772137642], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.053016819059848785, 0.0358274020254612, 0.04276377335190773, 0.5514525771141052, 0.03740907832980156, 0.12948916852474213, 0.09193895012140274], "normal_n3_p1": [0.00979070644825697, 0.02278986945748329, 0.025230156257748604, 0.8887859582901001, 0.003236721735447645, 0.01447654515504837, 0.0214700810611248], "normal_n3_p2": [0.02667061984539032, 0.023058181628584862, 0.024851705878973007, 0.027105500921607018, 0.02331095188856125, 0.8319334387779236, 0.017452694475650787], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01790170557796955, 0.023579291999340057, 0.8670063614845276, 0.014861266128718853, 0.023763086646795273, 0.015749625861644745, 0.013121221214532852], "reduce_n2_p1": [0.037785474210977554, 0.03384998440742493, 0.040185410529375076, 0.4703947603702545, 0.07223516702651978, 0.06313563883304596, 0.13558904826641083], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02208440750837326, 0.023338763043284416, 0.021992258727550507, 0.029271941632032394, 0.8311381936073303, 0.02708585374057293, 0.019871989265084267], "reduce_n3_p1": [0.8306074142456055, 0.08863848447799683, 0.003622719319537282, 0.009127519093453884, 0.009367820806801319, 0.02432602271437645, 0.009523178450763226], "reduce_n3_p2": [0.03790530189871788, 0.17302079498767853, 0.3470791280269623, 0.06324239075183868, 0.043902382254600525, 0.13387848436832428, 0.0657641589641571], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.27303576469421387, 0.3341917395591736, 0.15758146345615387, 0.03917793557047844, 0.056955598294734955, 0.006651225499808788, 0.01987839862704277], "normal_n2_p1": [0.042470067739486694, 0.023452190682291985, 0.03952312096953392, 0.019426628947257996, 0.030048690736293793, 0.01266363076865673, 0.018802480772137642], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.053016819059848785, 0.0358274020254612, 0.04276377335190773, 0.5514525771141052, 0.03740907832980156, 0.12948916852474213, 0.09193895012140274], "normal_n3_p1": [0.00979070644825697, 0.02278986945748329, 0.025230156257748604, 0.8887859582901001, 0.003236721735447645, 0.01447654515504837, 0.0214700810611248], "normal_n3_p2": [0.02667061984539032, 0.023058181628584862, 0.024851705878973007, 0.027105500921607018, 0.02331095188856125, 0.8319334387779236, 0.017452694475650787], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01790170557796955, 0.023579291999340057, 0.8670063614845276, 0.014861266128718853, 0.023763086646795273, 0.015749625861644745, 0.013121221214532852], "reduce_n2_p1": [0.037785474210977554, 0.03384998440742493, 0.040185410529375076, 0.4703947603702545, 0.07223516702651978, 0.06313563883304596, 0.13558904826641083], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02208440750837326, 0.023338763043284416, 0.021992258727550507, 0.029271941632032394, 0.8311381936073303, 0.02708585374057293, 0.019871989265084267], "reduce_n3_p1": [0.8306074142456055, 0.08863848447799683, 0.003622719319537282, 0.009127519093453884, 0.009367820806801319, 0.02432602271437645, 0.009523178450763226], "reduce_n3_p2": [0.03790530189871788, 0.17302079498767853, 0.3470791280269623, 0.06324239075183868, 0.043902382254600525, 0.13387848436832428, 0.0657641589641571], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.035998377948999405, 0.16321174800395966, 0.4050554037094116, 0.024944167584180832, 0.02220723405480385, 0.0022351923398673534, 0.014628141187131405], "normal_n2_p1": [0.08777262270450592, 0.04075092822313309, 0.07647301256656647, 0.02905496209859848, 0.046697862446308136, 0.01733521744608879, 0.02131219208240509], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06998791545629501, 0.052265409380197525, 0.08211304247379303, 0.4097985327243805, 0.056750815361738205, 0.12404228746891022, 0.08308276534080505], "normal_n3_p1": [0.010952954180538654, 0.021384628489613533, 0.019373970106244087, 0.8972994089126587, 0.004257570952177048, 0.01284375973045826, 0.020325923338532448], "normal_n3_p2": [0.04609357565641403, 0.03965209424495697, 0.04591870680451393, 0.05126049369573593, 0.04947848618030548, 0.6939055919647217, 0.03020479902625084], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02010033093392849, 0.0238941702991724, 0.8609434962272644, 0.016627682372927666, 0.02062012255191803, 0.01797029934823513, 0.01579943858087063], "reduce_n2_p1": [0.014577914029359818, 0.015324919484555721, 0.02844885177910328, 0.3864227831363678, 0.10231856256723404, 0.06379619985818863, 0.23044511675834656], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.023394089192152023, 0.02611250802874565, 0.027880167588591576, 0.03438449278473854, 0.8015853762626648, 0.029893143102526665, 0.027667727321386337], "reduce_n3_p1": [0.5490010976791382, 0.20209045708179474, 0.010870731435716152, 0.03289681673049927, 0.02923470549285412, 0.06440334767103195, 0.030221374705433846], "reduce_n3_p2": [0.04166579246520996, 0.190359964966774, 0.5062028169631958, 0.047847993671894073, 0.029095293954014778, 0.06282220780849457, 0.056965187191963196], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.035998377948999405, 0.16321174800395966, 0.4050554037094116, 0.024944167584180832, 0.02220723405480385, 0.0022351923398673534, 0.014628141187131405], "normal_n2_p1": [0.08777262270450592, 0.04075092822313309, 0.07647301256656647, 0.02905496209859848, 0.046697862446308136, 0.01733521744608879, 0.02131219208240509], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06998791545629501, 0.052265409380197525, 0.08211304247379303, 0.4097985327243805, 0.056750815361738205, 0.12404228746891022, 0.08308276534080505], "normal_n3_p1": [0.010952954180538654, 0.021384628489613533, 0.019373970106244087, 0.8972994089126587, 0.004257570952177048, 0.01284375973045826, 0.020325923338532448], "normal_n3_p2": [0.04609357565641403, 0.03965209424495697, 0.04591870680451393, 0.05126049369573593, 0.04947848618030548, 0.6939055919647217, 0.03020479902625084], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02010033093392849, 0.0238941702991724, 0.8609434962272644, 0.016627682372927666, 0.02062012255191803, 0.01797029934823513, 0.01579943858087063], "reduce_n2_p1": [0.014577914029359818, 0.015324919484555721, 0.02844885177910328, 0.3864227831363678, 0.10231856256723404, 0.06379619985818863, 0.23044511675834656], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.023394089192152023, 0.02611250802874565, 0.027880167588591576, 0.03438449278473854, 0.8015853762626648, 0.029893143102526665, 0.027667727321386337], "reduce_n3_p1": [0.5490010976791382, 0.20209045708179474, 0.010870731435716152, 0.03289681673049927, 0.02923470549285412, 0.06440334767103195, 0.030221374705433846], "reduce_n3_p2": [0.04166579246520996, 0.190359964966774, 0.5062028169631958, 0.047847993671894073, 0.029095293954014778, 0.06282220780849457, 0.056965187191963196], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.003959480673074722, 0.039027053862810135, 0.9451336860656738, 0.0031199688091874123, 0.0023520144168287516, 0.0003643364761956036, 0.0027332559693604708], "normal_n2_p1": [0.1349317580461502, 0.06026415526866913, 0.10358729958534241, 0.04274016246199608, 0.05114215984940529, 0.023708559572696686, 0.028988627716898918], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06307252496480942, 0.04144023358821869, 0.056044112890958786, 0.4754136800765991, 0.08012586086988449, 0.1644502580165863, 0.06447696685791016], "normal_n3_p1": [0.02060895785689354, 0.03687571734189987, 0.03273047134280205, 0.8035372495651245, 0.009928010404109955, 0.027560709044337273, 0.03955010324716568], "normal_n3_p2": [0.050362445414066315, 0.03739262744784355, 0.04483354464173317, 0.06984197348356247, 0.07663879543542862, 0.6323983073234558, 0.03749774023890495], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04952121898531914, 0.05106167495250702, 0.6716747879981995, 0.04000777378678322, 0.045092444866895676, 0.04449628293514252, 0.03925932198762894], "reduce_n2_p1": [0.012587903998792171, 0.014065038412809372, 0.026547739282250404, 0.5028098821640015, 0.10372534394264221, 0.05296604707837105, 0.20935098826885223], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02943367324769497, 0.03564048931002617, 0.04096287488937378, 0.056269917637109756, 0.697328507900238, 0.04933430999517441, 0.046696290373802185], "reduce_n3_p1": [0.4444367587566376, 0.2989856004714966, 0.021025968715548515, 0.03858533874154091, 0.03248956426978111, 0.06955157965421677, 0.03913961350917816], "reduce_n3_p2": [0.05364587903022766, 0.19882287085056305, 0.5237624645233154, 0.05401220917701721, 0.026503199711441994, 0.045314084738492966, 0.04760507494211197], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.003959480673074722, 0.039027053862810135, 0.9451336860656738, 0.0031199688091874123, 0.0023520144168287516, 0.0003643364761956036, 0.0027332559693604708], "normal_n2_p1": [0.1349317580461502, 0.06026415526866913, 0.10358729958534241, 0.04274016246199608, 0.05114215984940529, 0.023708559572696686, 0.028988627716898918], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06307252496480942, 0.04144023358821869, 0.056044112890958786, 0.4754136800765991, 0.08012586086988449, 0.1644502580165863, 0.06447696685791016], "normal_n3_p1": [0.02060895785689354, 0.03687571734189987, 0.03273047134280205, 0.8035372495651245, 0.009928010404109955, 0.027560709044337273, 0.03955010324716568], "normal_n3_p2": [0.050362445414066315, 0.03739262744784355, 0.04483354464173317, 0.06984197348356247, 0.07663879543542862, 0.6323983073234558, 0.03749774023890495], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04952121898531914, 0.05106167495250702, 0.6716747879981995, 0.04000777378678322, 0.045092444866895676, 0.04449628293514252, 0.03925932198762894], "reduce_n2_p1": [0.012587903998792171, 0.014065038412809372, 0.026547739282250404, 0.5028098821640015, 0.10372534394264221, 0.05296604707837105, 0.20935098826885223], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02943367324769497, 0.03564048931002617, 0.04096287488937378, 0.056269917637109756, 0.697328507900238, 0.04933430999517441, 0.046696290373802185], "reduce_n3_p1": [0.4444367587566376, 0.2989856004714966, 0.021025968715548515, 0.03858533874154091, 0.03248956426978111, 0.06955157965421677, 0.03913961350917816], "reduce_n3_p2": [0.05364587903022766, 0.19882287085056305, 0.5237624645233154, 0.05401220917701721, 0.026503199711441994, 0.045314084738492966, 0.04760507494211197], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.004429094959050417, 0.05623214691877365, 0.9271920919418335, 0.003776887198910117, 0.0026435896288603544, 0.0005874491762369871, 0.004024272784590721], "normal_n2_p1": [0.3489410877227783, 0.11022385209798813, 0.2435961216688156, 0.06110352650284767, 0.06064538285136223, 0.03062625043094158, 0.03392952308058739], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.025665590539574623, 0.018761705607175827, 0.02049059048295021, 0.7359334230422974, 0.04024958610534668, 0.1088058352470398, 0.030093692243099213], "normal_n3_p1": [0.047502096742391586, 0.09153967350721359, 0.08235260099172592, 0.48884689807891846, 0.026981567963957787, 0.09523341804742813, 0.09638011455535889], "normal_n3_p2": [0.02087531052529812, 0.017486583441495895, 0.018421925604343414, 0.04890231788158417, 0.029149426147341728, 0.8120895624160767, 0.02341904304921627], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07956487685441971, 0.08724503219127655, 0.3190104067325592, 0.09103953093290329, 0.10188087821006775, 0.08035558462142944, 0.0921969935297966], "reduce_n2_p1": [0.019720546901226044, 0.021945931017398834, 0.03574668988585472, 0.4046148657798767, 0.214501291513443, 0.07573849707841873, 0.13025103509426117], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014927249401807785, 0.02232320047914982, 0.030745849013328552, 0.03734871372580528, 0.7884013056755066, 0.0415242463350296, 0.03643086180090904], "reduce_n3_p1": [0.5139759182929993, 0.24860826134681702, 0.028435299172997475, 0.030861839652061462, 0.026189111173152924, 0.08534637093544006, 0.03345276042819023], "reduce_n3_p2": [0.09343259781599045, 0.23367780447006226, 0.3740893602371216, 0.07050994038581848, 0.036357078701257706, 0.05380998179316521, 0.07111702114343643], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.004429094959050417, 0.05623214691877365, 0.9271920919418335, 0.003776887198910117, 0.0026435896288603544, 0.0005874491762369871, 0.004024272784590721], "normal_n2_p1": [0.3489410877227783, 0.11022385209798813, 0.2435961216688156, 0.06110352650284767, 0.06064538285136223, 0.03062625043094158, 0.03392952308058739], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.025665590539574623, 0.018761705607175827, 0.02049059048295021, 0.7359334230422974, 0.04024958610534668, 0.1088058352470398, 0.030093692243099213], "normal_n3_p1": [0.047502096742391586, 0.09153967350721359, 0.08235260099172592, 0.48884689807891846, 0.026981567963957787, 0.09523341804742813, 0.09638011455535889], "normal_n3_p2": [0.02087531052529812, 0.017486583441495895, 0.018421925604343414, 0.04890231788158417, 0.029149426147341728, 0.8120895624160767, 0.02341904304921627], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07956487685441971, 0.08724503219127655, 0.3190104067325592, 0.09103953093290329, 0.10188087821006775, 0.08035558462142944, 0.0921969935297966], "reduce_n2_p1": [0.019720546901226044, 0.021945931017398834, 0.03574668988585472, 0.4046148657798767, 0.214501291513443, 0.07573849707841873, 0.13025103509426117], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014927249401807785, 0.02232320047914982, 0.030745849013328552, 0.03734871372580528, 0.7884013056755066, 0.0415242463350296, 0.03643086180090904], "reduce_n3_p1": [0.5139759182929993, 0.24860826134681702, 0.028435299172997475, 0.030861839652061462, 0.026189111173152924, 0.08534637093544006, 0.03345276042819023], "reduce_n3_p2": [0.09343259781599045, 0.23367780447006226, 0.3740893602371216, 0.07050994038581848, 0.036357078701257706, 0.05380998179316521, 0.07111702114343643], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.014825650490820408, 0.16936807334423065, 0.7721912860870361, 0.013458850793540478, 0.00938722025603056, 0.0026981979608535767, 0.015414788387715816], "normal_n2_p1": [0.5293946266174316, 0.10373874008655548, 0.10566375404596329, 0.08043374121189117, 0.057373106479644775, 0.0333942212164402, 0.038043271750211716], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03592211753129959, 0.0263662226498127, 0.027395116165280342, 0.6730562448501587, 0.05394986644387245, 0.11101251095533371, 0.042166467756032944], "normal_n3_p1": [0.046185292303562164, 0.045157529413700104, 0.04224422946572304, 0.5243332386016846, 0.04694389924407005, 0.09719699621200562, 0.09575741738080978], "normal_n3_p2": [0.012727141380310059, 0.011380944401025772, 0.011412708088755608, 0.048666875809431076, 0.01851942203938961, 0.8577374815940857, 0.01764168217778206], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03980657085776329, 0.04984530806541443, 0.48058921098709106, 0.1639302670955658, 0.04432940483093262, 0.07132653146982193, 0.09520311653614044], "reduce_n2_p1": [0.03151736035943031, 0.032170213758945465, 0.09363144636154175, 0.18012677133083344, 0.13520243763923645, 0.13420048356056213, 0.11374462395906448], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010774591006338596, 0.014504370279610157, 0.02152746543288231, 0.024891989305615425, 0.8579344153404236, 0.0302746444940567, 0.020808221772313118], "reduce_n3_p1": [0.9338487386703491, 0.03948203846812248, 0.005239205434918404, 0.0027010224293917418, 0.004085879307240248, 0.005259405355900526, 0.003735385835170746], "reduce_n3_p2": [0.16382132470607758, 0.1044503003358841, 0.33282914757728577, 0.14161545038223267, 0.043078284710645676, 0.06442566215991974, 0.06937892735004425], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.014825650490820408, 0.16936807334423065, 0.7721912860870361, 0.013458850793540478, 0.00938722025603056, 0.0026981979608535767, 0.015414788387715816], "normal_n2_p1": [0.5293946266174316, 0.10373874008655548, 0.10566375404596329, 0.08043374121189117, 0.057373106479644775, 0.0333942212164402, 0.038043271750211716], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03592211753129959, 0.0263662226498127, 0.027395116165280342, 0.6730562448501587, 0.05394986644387245, 0.11101251095533371, 0.042166467756032944], "normal_n3_p1": [0.046185292303562164, 0.045157529413700104, 0.04224422946572304, 0.5243332386016846, 0.04694389924407005, 0.09719699621200562, 0.09575741738080978], "normal_n3_p2": [0.012727141380310059, 0.011380944401025772, 0.011412708088755608, 0.048666875809431076, 0.01851942203938961, 0.8577374815940857, 0.01764168217778206], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03980657085776329, 0.04984530806541443, 0.48058921098709106, 0.1639302670955658, 0.04432940483093262, 0.07132653146982193, 0.09520311653614044], "reduce_n2_p1": [0.03151736035943031, 0.032170213758945465, 0.09363144636154175, 0.18012677133083344, 0.13520243763923645, 0.13420048356056213, 0.11374462395906448], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010774591006338596, 0.014504370279610157, 0.02152746543288231, 0.024891989305615425, 0.8579344153404236, 0.0302746444940567, 0.020808221772313118], "reduce_n3_p1": [0.9338487386703491, 0.03948203846812248, 0.005239205434918404, 0.0027010224293917418, 0.004085879307240248, 0.005259405355900526, 0.003735385835170746], "reduce_n3_p2": [0.16382132470607758, 0.1044503003358841, 0.33282914757728577, 0.14161545038223267, 0.043078284710645676, 0.06442566215991974, 0.06937892735004425], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02110496535897255, 0.11975181102752686, 0.7873438000679016, 0.023875970393419266, 0.013778532855212688, 0.004939882550388575, 0.024729495868086815], "normal_n2_p1": [0.24929922819137573, 0.14549285173416138, 0.10088463872671127, 0.1436176300048828, 0.1355638951063156, 0.07923149317502975, 0.07258340716362], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06292466819286346, 0.0390462689101696, 0.04344417154788971, 0.4607304632663727, 0.0693010538816452, 0.19098204374313354, 0.060515716671943665], "normal_n3_p1": [0.03169162943959236, 0.012475169263780117, 0.012922856956720352, 0.1835256963968277, 0.059217046946287155, 0.23926648497581482, 0.24015958607196808], "normal_n3_p2": [0.010873023420572281, 0.00932373572140932, 0.008732167072594166, 0.06369710713624954, 0.013996879570186138, 0.8558512330055237, 0.01655331254005432], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.012852477841079235, 0.018190285190939903, 0.17587433755397797, 0.6079171895980835, 0.022656237706542015, 0.03414278104901314, 0.10884664207696915], "reduce_n2_p1": [0.0257837176322937, 0.02382330410182476, 0.17364872992038727, 0.02703927829861641, 0.0845012441277504, 0.06440674513578415, 0.038852427154779434], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017620055004954338, 0.01945773884654045, 0.030769608914852142, 0.03705883398652077, 0.7966282963752747, 0.04384244233369827, 0.026948565617203712], "reduce_n3_p1": [0.9562541842460632, 0.024158522486686707, 0.004275049082934856, 0.0019107498228549957, 0.003202921710908413, 0.0027449915651232004, 0.002626755042001605], "reduce_n3_p2": [0.06538589298725128, 0.039617184549570084, 0.3132573664188385, 0.3454464077949524, 0.03996478393673897, 0.03744576871395111, 0.08098574727773666], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02110496535897255, 0.11975181102752686, 0.7873438000679016, 0.023875970393419266, 0.013778532855212688, 0.004939882550388575, 0.024729495868086815], "normal_n2_p1": [0.24929922819137573, 0.14549285173416138, 0.10088463872671127, 0.1436176300048828, 0.1355638951063156, 0.07923149317502975, 0.07258340716362], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06292466819286346, 0.0390462689101696, 0.04344417154788971, 0.4607304632663727, 0.0693010538816452, 0.19098204374313354, 0.060515716671943665], "normal_n3_p1": [0.03169162943959236, 0.012475169263780117, 0.012922856956720352, 0.1835256963968277, 0.059217046946287155, 0.23926648497581482, 0.24015958607196808], "normal_n3_p2": [0.010873023420572281, 0.00932373572140932, 0.008732167072594166, 0.06369710713624954, 0.013996879570186138, 0.8558512330055237, 0.01655331254005432], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.012852477841079235, 0.018190285190939903, 0.17587433755397797, 0.6079171895980835, 0.022656237706542015, 0.03414278104901314, 0.10884664207696915], "reduce_n2_p1": [0.0257837176322937, 0.02382330410182476, 0.17364872992038727, 0.02703927829861641, 0.0845012441277504, 0.06440674513578415, 0.038852427154779434], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017620055004954338, 0.01945773884654045, 0.030769608914852142, 0.03705883398652077, 0.7966282963752747, 0.04384244233369827, 0.026948565617203712], "reduce_n3_p1": [0.9562541842460632, 0.024158522486686707, 0.004275049082934856, 0.0019107498228549957, 0.003202921710908413, 0.0027449915651232004, 0.002626755042001605], "reduce_n3_p2": [0.06538589298725128, 0.039617184549570084, 0.3132573664188385, 0.3454464077949524, 0.03996478393673897, 0.03744576871395111, 0.08098574727773666], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06837955862283707, 0.19842521846294403, 0.44781553745269775, 0.08382070809602737, 0.052951183170080185, 0.01872103102505207, 0.1090996265411377], "normal_n2_p1": [0.38116973638534546, 0.1097431406378746, 0.07012052834033966, 0.1243913546204567, 0.07626904547214508, 0.10708265006542206, 0.0697910264134407], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04606619477272034, 0.025202156975865364, 0.029191726818680763, 0.32006603479385376, 0.10132837295532227, 0.3307130038738251, 0.061233215034008026], "normal_n3_p1": [0.028983287513256073, 0.007891714572906494, 0.008828173391520977, 0.06308573484420776, 0.09279405325651169, 0.3927382230758667, 0.23358654975891113], "normal_n3_p2": [0.013290662318468094, 0.010420331731438637, 0.01016883086413145, 0.05096525326371193, 0.014711997471749783, 0.8547805547714233, 0.021912692114710808], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.011511093936860561, 0.014296060428023338, 0.236662358045578, 0.2835857570171356, 0.027719859033823013, 0.024815212935209274, 0.3799789249897003], "reduce_n2_p1": [0.027405424043536186, 0.02630673348903656, 0.18293388187885284, 0.012409184128046036, 0.06876490265130997, 0.07215641438961029, 0.030266234651207924], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.00972030684351921, 0.01014605350792408, 0.023230332881212234, 0.020772889256477356, 0.8837940096855164, 0.023389454931020737, 0.01346235629171133], "reduce_n3_p1": [0.88802570104599, 0.0509372353553772, 0.013029278255999088, 0.006724596954882145, 0.010310512036085129, 0.007318565156310797, 0.008036396466195583], "reduce_n3_p2": [0.07807675004005432, 0.03225734829902649, 0.3703696131706238, 0.311747670173645, 0.03701626509428024, 0.030949873849749565, 0.06651889532804489], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06837955862283707, 0.19842521846294403, 0.44781553745269775, 0.08382070809602737, 0.052951183170080185, 0.01872103102505207, 0.1090996265411377], "normal_n2_p1": [0.38116973638534546, 0.1097431406378746, 0.07012052834033966, 0.1243913546204567, 0.07626904547214508, 0.10708265006542206, 0.0697910264134407], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04606619477272034, 0.025202156975865364, 0.029191726818680763, 0.32006603479385376, 0.10132837295532227, 0.3307130038738251, 0.061233215034008026], "normal_n3_p1": [0.028983287513256073, 0.007891714572906494, 0.008828173391520977, 0.06308573484420776, 0.09279405325651169, 0.3927382230758667, 0.23358654975891113], "normal_n3_p2": [0.013290662318468094, 0.010420331731438637, 0.01016883086413145, 0.05096525326371193, 0.014711997471749783, 0.8547805547714233, 0.021912692114710808], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.011511093936860561, 0.014296060428023338, 0.236662358045578, 0.2835857570171356, 0.027719859033823013, 0.024815212935209274, 0.3799789249897003], "reduce_n2_p1": [0.027405424043536186, 0.02630673348903656, 0.18293388187885284, 0.012409184128046036, 0.06876490265130997, 0.07215641438961029, 0.030266234651207924], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.00972030684351921, 0.01014605350792408, 0.023230332881212234, 0.020772889256477356, 0.8837940096855164, 0.023389454931020737, 0.01346235629171133], "reduce_n3_p1": [0.88802570104599, 0.0509372353553772, 0.013029278255999088, 0.006724596954882145, 0.010310512036085129, 0.007318565156310797, 0.008036396466195583], "reduce_n3_p2": [0.07807675004005432, 0.03225734829902649, 0.3703696131706238, 0.311747670173645, 0.03701626509428024, 0.030949873849749565, 0.06651889532804489], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04411524906754494, 0.15031284093856812, 0.7176825404167175, 0.026988215744495392, 0.01480955258011818, 0.01247415877878666, 0.019953176379203796], "normal_n2_p1": [0.19495123624801636, 0.14189384877681732, 0.0923495888710022, 0.17451085150241852, 0.12552222609519958, 0.11544660478830338, 0.07876092940568924], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.023949705064296722, 0.015870947390794754, 0.019774526357650757, 0.6284289360046387, 0.15092507004737854, 0.06771929562091827, 0.051398731768131256], "normal_n3_p1": [0.06285654008388519, 0.015052502043545246, 0.019710641354322433, 0.12541139125823975, 0.24337567389011383, 0.03767496347427368, 0.23151034116744995], "normal_n3_p2": [0.023221340030431747, 0.01850995235145092, 0.01842147298157215, 0.037357643246650696, 0.018859965726733208, 0.8255709409713745, 0.029483597725629807], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.014933742582798004, 0.013819040730595589, 0.10331384837627411, 0.3640916049480438, 0.03015359491109848, 0.024229008704423904, 0.422574520111084], "reduce_n2_p1": [0.033593595027923584, 0.030397523194551468, 0.7045994997024536, 0.009797780774533749, 0.04470229893922806, 0.09453392028808594, 0.028060903772711754], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.016067305579781532, 0.013881059363484383, 0.03532460331916809, 0.03142038360238075, 0.8278281092643738, 0.035541314631700516, 0.018520280718803406], "reduce_n3_p1": [0.5976211428642273, 0.14351847767829895, 0.04846818745136261, 0.03496139124035835, 0.04236385598778725, 0.03239913284778595, 0.036207519471645355], "reduce_n3_p2": [0.04258763790130615, 0.021093009039759636, 0.09524115920066833, 0.6640421152114868, 0.0346556194126606, 0.0249427929520607, 0.052338991314172745], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04411524906754494, 0.15031284093856812, 0.7176825404167175, 0.026988215744495392, 0.01480955258011818, 0.01247415877878666, 0.019953176379203796], "normal_n2_p1": [0.19495123624801636, 0.14189384877681732, 0.0923495888710022, 0.17451085150241852, 0.12552222609519958, 0.11544660478830338, 0.07876092940568924], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.023949705064296722, 0.015870947390794754, 0.019774526357650757, 0.6284289360046387, 0.15092507004737854, 0.06771929562091827, 0.051398731768131256], "normal_n3_p1": [0.06285654008388519, 0.015052502043545246, 0.019710641354322433, 0.12541139125823975, 0.24337567389011383, 0.03767496347427368, 0.23151034116744995], "normal_n3_p2": [0.023221340030431747, 0.01850995235145092, 0.01842147298157215, 0.037357643246650696, 0.018859965726733208, 0.8255709409713745, 0.029483597725629807], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.014933742582798004, 0.013819040730595589, 0.10331384837627411, 0.3640916049480438, 0.03015359491109848, 0.024229008704423904, 0.422574520111084], "reduce_n2_p1": [0.033593595027923584, 0.030397523194551468, 0.7045994997024536, 0.009797780774533749, 0.04470229893922806, 0.09453392028808594, 0.028060903772711754], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.016067305579781532, 0.013881059363484383, 0.03532460331916809, 0.03142038360238075, 0.8278281092643738, 0.035541314631700516, 0.018520280718803406], "reduce_n3_p1": [0.5976211428642273, 0.14351847767829895, 0.04846818745136261, 0.03496139124035835, 0.04236385598778725, 0.03239913284778595, 0.036207519471645355], "reduce_n3_p2": [0.04258763790130615, 0.021093009039759636, 0.09524115920066833, 0.6640421152114868, 0.0346556194126606, 0.0249427929520607, 0.052338991314172745], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.020959043875336647, 0.05105393007397652, 0.8922839164733887, 0.008914239704608917, 0.005230959039181471, 0.006539896130561829, 0.0070602018386125565], "normal_n2_p1": [0.2525555193424225, 0.1702142059803009, 0.143938809633255, 0.1472223848104477, 0.06944376975297928, 0.08992870897054672, 0.046762578189373016], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0392712838947773, 0.024356640875339508, 0.03217905014753342, 0.644204318523407, 0.10514974594116211, 0.0533301942050457, 0.05128614231944084], "normal_n3_p1": [0.04497748613357544, 0.010676899924874306, 0.014853074215352535, 0.05920706316828728, 0.8110923171043396, 0.004886537324637175, 0.044326651841402054], "normal_n3_p2": [0.06867969781160355, 0.04607540741562843, 0.0453157052397728, 0.03407447785139084, 0.030145352706313133, 0.6928368210792542, 0.045355264097452164], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02592911384999752, 0.018665587529540062, 0.13064129650592804, 0.25001242756843567, 0.03994228318333626, 0.03044072352349758, 0.4523800015449524], "reduce_n2_p1": [0.00601493613794446, 0.0046892352402210236, 0.9542372226715088, 0.002245243638753891, 0.007439233362674713, 0.01694711670279503, 0.00537495780736208], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03053233213722706, 0.021937556564807892, 0.062166277319192886, 0.06526894867420197, 0.7029340267181396, 0.05423783138394356, 0.029049869626760483], "reduce_n3_p1": [0.7578424215316772, 0.08226513117551804, 0.03414333611726761, 0.01931614615023136, 0.02639109641313553, 0.02135349251329899, 0.02315799705684185], "reduce_n3_p2": [0.09288109093904495, 0.04601519927382469, 0.15189726650714874, 0.3828136622905731, 0.07394185662269592, 0.055039286613464355, 0.07334700971841812], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.020959043875336647, 0.05105393007397652, 0.8922839164733887, 0.008914239704608917, 0.005230959039181471, 0.006539896130561829, 0.0070602018386125565], "normal_n2_p1": [0.2525555193424225, 0.1702142059803009, 0.143938809633255, 0.1472223848104477, 0.06944376975297928, 0.08992870897054672, 0.046762578189373016], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0392712838947773, 0.024356640875339508, 0.03217905014753342, 0.644204318523407, 0.10514974594116211, 0.0533301942050457, 0.05128614231944084], "normal_n3_p1": [0.04497748613357544, 0.010676899924874306, 0.014853074215352535, 0.05920706316828728, 0.8110923171043396, 0.004886537324637175, 0.044326651841402054], "normal_n3_p2": [0.06867969781160355, 0.04607540741562843, 0.0453157052397728, 0.03407447785139084, 0.030145352706313133, 0.6928368210792542, 0.045355264097452164], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02592911384999752, 0.018665587529540062, 0.13064129650592804, 0.25001242756843567, 0.03994228318333626, 0.03044072352349758, 0.4523800015449524], "reduce_n2_p1": [0.00601493613794446, 0.0046892352402210236, 0.9542372226715088, 0.002245243638753891, 0.007439233362674713, 0.01694711670279503, 0.00537495780736208], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03053233213722706, 0.021937556564807892, 0.062166277319192886, 0.06526894867420197, 0.7029340267181396, 0.05423783138394356, 0.029049869626760483], "reduce_n3_p1": [0.7578424215316772, 0.08226513117551804, 0.03414333611726761, 0.01931614615023136, 0.02639109641313553, 0.02135349251329899, 0.02315799705684185], "reduce_n3_p2": [0.09288109093904495, 0.04601519927382469, 0.15189726650714874, 0.3828136622905731, 0.07394185662269592, 0.055039286613464355, 0.07334700971841812], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0472567193210125, 0.10315477102994919, 0.7858006954193115, 0.01266857422888279, 0.010310135781764984, 0.013923834078013897, 0.010821758769452572], "normal_n2_p1": [0.2656036913394928, 0.1957116276025772, 0.14623983204364777, 0.13962383568286896, 0.08414886891841888, 0.06333143264055252, 0.03227727860212326], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06804366409778595, 0.033649396151304245, 0.042323581874370575, 0.688042938709259, 0.03764628246426582, 0.03380214795470238, 0.05327831953763962], "normal_n3_p1": [0.23728112876415253, 0.04163080453872681, 0.07567665725946426, 0.4034324884414673, 0.14251965284347534, 0.0070907375775277615, 0.08350811153650284], "normal_n3_p2": [0.024256765842437744, 0.016392897814512253, 0.01536453329026699, 0.012407153844833374, 0.009525817818939686, 0.906618595123291, 0.006396776996552944], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05258762463927269, 0.02524562180042267, 0.15696711838245392, 0.5634725689888, 0.03197062760591507, 0.024789003655314445, 0.09103837609291077], "reduce_n2_p1": [0.007798715960234404, 0.005560846533626318, 0.947655200958252, 0.0029012740124017, 0.008161140605807304, 0.01895975135266781, 0.006561257876455784], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022760098800063133, 0.02030901424586773, 0.05331392586231232, 0.09843920916318893, 0.7225828766822815, 0.04061034694314003, 0.0201130248606205], "reduce_n3_p1": [0.843222975730896, 0.044617146253585815, 0.023729423061013222, 0.016068851575255394, 0.018627187237143517, 0.015580631792545319, 0.015035256743431091], "reduce_n3_p2": [0.022004541009664536, 0.018339574337005615, 0.019869474694132805, 0.6549044251441956, 0.04639047384262085, 0.03868015483021736, 0.09482546150684357], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0472567193210125, 0.10315477102994919, 0.7858006954193115, 0.01266857422888279, 0.010310135781764984, 0.013923834078013897, 0.010821758769452572], "normal_n2_p1": [0.2656036913394928, 0.1957116276025772, 0.14623983204364777, 0.13962383568286896, 0.08414886891841888, 0.06333143264055252, 0.03227727860212326], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06804366409778595, 0.033649396151304245, 0.042323581874370575, 0.688042938709259, 0.03764628246426582, 0.03380214795470238, 0.05327831953763962], "normal_n3_p1": [0.23728112876415253, 0.04163080453872681, 0.07567665725946426, 0.4034324884414673, 0.14251965284347534, 0.0070907375775277615, 0.08350811153650284], "normal_n3_p2": [0.024256765842437744, 0.016392897814512253, 0.01536453329026699, 0.012407153844833374, 0.009525817818939686, 0.906618595123291, 0.006396776996552944], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05258762463927269, 0.02524562180042267, 0.15696711838245392, 0.5634725689888, 0.03197062760591507, 0.024789003655314445, 0.09103837609291077], "reduce_n2_p1": [0.007798715960234404, 0.005560846533626318, 0.947655200958252, 0.0029012740124017, 0.008161140605807304, 0.01895975135266781, 0.006561257876455784], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022760098800063133, 0.02030901424586773, 0.05331392586231232, 0.09843920916318893, 0.7225828766822815, 0.04061034694314003, 0.0201130248606205], "reduce_n3_p1": [0.843222975730896, 0.044617146253585815, 0.023729423061013222, 0.016068851575255394, 0.018627187237143517, 0.015580631792545319, 0.015035256743431091], "reduce_n3_p2": [0.022004541009664536, 0.018339574337005615, 0.019869474694132805, 0.6549044251441956, 0.04639047384262085, 0.03868015483021736, 0.09482546150684357], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11266033351421356, 0.2178068608045578, 0.4560844898223877, 0.03725970908999443, 0.033927738666534424, 0.04500576853752136, 0.031047450378537178], "normal_n2_p1": [0.19627141952514648, 0.2953138053417206, 0.22398865222930908, 0.09931713342666626, 0.06533443927764893, 0.03839726001024246, 0.026545600965619087], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.09656394273042679, 0.06045093387365341, 0.07875602692365646, 0.528713583946228, 0.02769440785050392, 0.035858940333127975, 0.10428652912378311], "normal_n3_p1": [0.1530061513185501, 0.04171476513147354, 0.06579751521348953, 0.6485344767570496, 0.03602989763021469, 0.005906505044549704, 0.04300493374466896], "normal_n3_p2": [0.015207692980766296, 0.012360041961073875, 0.011951245367527008, 0.01067981868982315, 0.007817390374839306, 0.9328421354293823, 0.0032051175367087126], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.12372336536645889, 0.034709151834249496, 0.4016546905040741, 0.2477879673242569, 0.030236443504691124, 0.030661042779684067, 0.03400390222668648], "reduce_n2_p1": [0.013978797011077404, 0.010225494392216206, 0.9105729460716248, 0.005481853149831295, 0.01423586718738079, 0.02944076992571354, 0.011538290418684483], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.023437755182385445, 0.018336813896894455, 0.03350388631224632, 0.024808047339320183, 0.8461171984672546, 0.027049120515584946, 0.011597068049013615], "reduce_n3_p1": [0.9301140308380127, 0.017857063561677933, 0.008790531195700169, 0.01038874126970768, 0.008691470138728619, 0.0071708704344928265, 0.006785359233617783], "reduce_n3_p2": [0.02150646783411503, 0.01965181715786457, 0.010682513006031513, 0.5279237031936646, 0.05453425645828247, 0.048751071095466614, 0.14343155920505524], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11266033351421356, 0.2178068608045578, 0.4560844898223877, 0.03725970908999443, 0.033927738666534424, 0.04500576853752136, 0.031047450378537178], "normal_n2_p1": [0.19627141952514648, 0.2953138053417206, 0.22398865222930908, 0.09931713342666626, 0.06533443927764893, 0.03839726001024246, 0.026545600965619087], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.09656394273042679, 0.06045093387365341, 0.07875602692365646, 0.528713583946228, 0.02769440785050392, 0.035858940333127975, 0.10428652912378311], "normal_n3_p1": [0.1530061513185501, 0.04171476513147354, 0.06579751521348953, 0.6485344767570496, 0.03602989763021469, 0.005906505044549704, 0.04300493374466896], "normal_n3_p2": [0.015207692980766296, 0.012360041961073875, 0.011951245367527008, 0.01067981868982315, 0.007817390374839306, 0.9328421354293823, 0.0032051175367087126], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.12372336536645889, 0.034709151834249496, 0.4016546905040741, 0.2477879673242569, 0.030236443504691124, 0.030661042779684067, 0.03400390222668648], "reduce_n2_p1": [0.013978797011077404, 0.010225494392216206, 0.9105729460716248, 0.005481853149831295, 0.01423586718738079, 0.02944076992571354, 0.011538290418684483], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.023437755182385445, 0.018336813896894455, 0.03350388631224632, 0.024808047339320183, 0.8461171984672546, 0.027049120515584946, 0.011597068049013615], "reduce_n3_p1": [0.9301140308380127, 0.017857063561677933, 0.008790531195700169, 0.01038874126970768, 0.008691470138728619, 0.0071708704344928265, 0.006785359233617783], "reduce_n3_p2": [0.02150646783411503, 0.01965181715786457, 0.010682513006031513, 0.5279237031936646, 0.05453425645828247, 0.048751071095466614, 0.14343155920505524], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08517434448003769, 0.262745201587677, 0.15610092878341675, 0.055973395705223083, 0.05437195673584938, 0.0833682045340538, 0.09315474331378937], "normal_n2_p1": [0.12578032910823822, 0.28728795051574707, 0.23670557141304016, 0.2139918953180313, 0.02609669417142868, 0.034792978316545486, 0.023000214248895645], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03874403238296509, 0.03015224263072014, 0.040893394500017166, 0.7487573027610779, 0.01370440423488617, 0.024976689368486404, 0.07139232754707336], "normal_n3_p1": [0.07206883281469345, 0.03431560844182968, 0.03709777817130089, 0.7879566550254822, 0.02639715000987053, 0.006806292571127415, 0.0284604262560606], "normal_n3_p2": [0.02154998853802681, 0.018978461623191833, 0.02012616954743862, 0.0171585064381361, 0.014189017005264759, 0.8951253294944763, 0.004197344649583101], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.48247942328453064, 0.03304500877857208, 0.07468521595001221, 0.09537619352340698, 0.03739626705646515, 0.028310194611549377, 0.016568563878536224], "reduce_n2_p1": [0.015048056840896606, 0.011601177044212818, 0.9039849638938904, 0.007048827596008778, 0.015138941816985607, 0.02564873732626438, 0.014338074252009392], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04075232520699501, 0.02680799551308155, 0.03291967138648033, 0.013910900801420212, 0.818676233291626, 0.031165126711130142, 0.014535087160766125], "reduce_n3_p1": [0.9525465369224548, 0.011679934337735176, 0.005061505828052759, 0.007389559876173735, 0.00608457624912262, 0.005521455779671669, 0.005388736259192228], "reduce_n3_p2": [0.026733968406915665, 0.024185407906770706, 0.009462074376642704, 0.11267662793397903, 0.09218912571668625, 0.10101473331451416, 0.051556579768657684], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08517434448003769, 0.262745201587677, 0.15610092878341675, 0.055973395705223083, 0.05437195673584938, 0.0833682045340538, 0.09315474331378937], "normal_n2_p1": [0.12578032910823822, 0.28728795051574707, 0.23670557141304016, 0.2139918953180313, 0.02609669417142868, 0.034792978316545486, 0.023000214248895645], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03874403238296509, 0.03015224263072014, 0.040893394500017166, 0.7487573027610779, 0.01370440423488617, 0.024976689368486404, 0.07139232754707336], "normal_n3_p1": [0.07206883281469345, 0.03431560844182968, 0.03709777817130089, 0.7879566550254822, 0.02639715000987053, 0.006806292571127415, 0.0284604262560606], "normal_n3_p2": [0.02154998853802681, 0.018978461623191833, 0.02012616954743862, 0.0171585064381361, 0.014189017005264759, 0.8951253294944763, 0.004197344649583101], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.48247942328453064, 0.03304500877857208, 0.07468521595001221, 0.09537619352340698, 0.03739626705646515, 0.028310194611549377, 0.016568563878536224], "reduce_n2_p1": [0.015048056840896606, 0.011601177044212818, 0.9039849638938904, 0.007048827596008778, 0.015138941816985607, 0.02564873732626438, 0.014338074252009392], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04075232520699501, 0.02680799551308155, 0.03291967138648033, 0.013910900801420212, 0.818676233291626, 0.031165126711130142, 0.014535087160766125], "reduce_n3_p1": [0.9525465369224548, 0.011679934337735176, 0.005061505828052759, 0.007389559876173735, 0.00608457624912262, 0.005521455779671669, 0.005388736259192228], "reduce_n3_p2": [0.026733968406915665, 0.024185407906770706, 0.009462074376642704, 0.11267662793397903, 0.09218912571668625, 0.10101473331451416, 0.051556579768657684], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.018847323954105377, 0.04800974205136299, 0.014362603425979614, 0.06313485652208328, 0.030963361263275146, 0.07314738631248474, 0.11872981488704681], "normal_n2_p1": [0.17860610783100128, 0.26491880416870117, 0.15680256485939026, 0.23925448954105377, 0.020783325657248497, 0.051473505795001984, 0.026818647980690002], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.029871027916669846, 0.02759958617389202, 0.040072549134492874, 0.7392907738685608, 0.015150126069784164, 0.027239171788096428, 0.08779618889093399], "normal_n3_p1": [0.07473994046449661, 0.04301929846405983, 0.04016626253724098, 0.7463799715042114, 0.033526334911584854, 0.013048728927969933, 0.034809935837984085], "normal_n3_p2": [0.028729353100061417, 0.023106388747692108, 0.028909772634506226, 0.024932129308581352, 0.020135879516601562, 0.8550891876220703, 0.006216039881110191], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.16036351025104523, 0.020555024966597557, 0.019471852108836174, 0.03724260628223419, 0.03154284507036209, 0.02193523570895195, 0.009002655744552612], "reduce_n2_p1": [0.009680991992354393, 0.008185465820133686, 0.9380419254302979, 0.00567552400752902, 0.009161693044006824, 0.012775516137480736, 0.00923854298889637], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06789438426494598, 0.04364688694477081, 0.049653589725494385, 0.015117163769900799, 0.7177160978317261, 0.0438280813395977, 0.026405174285173416], "reduce_n3_p1": [0.8707147836685181, 0.027477474883198738, 0.012529756873846054, 0.020153243094682693, 0.01802760176360607, 0.016219288110733032, 0.01712960936129093], "reduce_n3_p2": [0.024780582636594772, 0.02315770834684372, 0.008596053346991539, 0.054306820034980774, 0.20511332154273987, 0.042892564088106155, 0.030460039153695107], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.018847323954105377, 0.04800974205136299, 0.014362603425979614, 0.06313485652208328, 0.030963361263275146, 0.07314738631248474, 0.11872981488704681], "normal_n2_p1": [0.17860610783100128, 0.26491880416870117, 0.15680256485939026, 0.23925448954105377, 0.020783325657248497, 0.051473505795001984, 0.026818647980690002], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.029871027916669846, 0.02759958617389202, 0.040072549134492874, 0.7392907738685608, 0.015150126069784164, 0.027239171788096428, 0.08779618889093399], "normal_n3_p1": [0.07473994046449661, 0.04301929846405983, 0.04016626253724098, 0.7463799715042114, 0.033526334911584854, 0.013048728927969933, 0.034809935837984085], "normal_n3_p2": [0.028729353100061417, 0.023106388747692108, 0.028909772634506226, 0.024932129308581352, 0.020135879516601562, 0.8550891876220703, 0.006216039881110191], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.16036351025104523, 0.020555024966597557, 0.019471852108836174, 0.03724260628223419, 0.03154284507036209, 0.02193523570895195, 0.009002655744552612], "reduce_n2_p1": [0.009680991992354393, 0.008185465820133686, 0.9380419254302979, 0.00567552400752902, 0.009161693044006824, 0.012775516137480736, 0.00923854298889637], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06789438426494598, 0.04364688694477081, 0.049653589725494385, 0.015117163769900799, 0.7177160978317261, 0.0438280813395977, 0.026405174285173416], "reduce_n3_p1": [0.8707147836685181, 0.027477474883198738, 0.012529756873846054, 0.020153243094682693, 0.01802760176360607, 0.016219288110733032, 0.01712960936129093], "reduce_n3_p2": [0.024780582636594772, 0.02315770834684372, 0.008596053346991539, 0.054306820034980774, 0.20511332154273987, 0.042892564088106155, 0.030460039153695107], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06983792036771774, 0.15254290401935577, 0.037188753485679626, 0.061499860137701035, 0.06867443025112152, 0.4208376109600067, 0.11579034477472305], "normal_n2_p1": [0.3222501277923584, 0.27873101830482483, 0.058624424040317535, 0.1880619078874588, 0.01823336072266102, 0.04874340444803238, 0.02734481357038021], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.032287392765283585, 0.03463437035679817, 0.045712001621723175, 0.7882267832756042, 0.017551938071846962, 0.02873874269425869, 0.028874222189188004], "normal_n3_p1": [0.05318526551127434, 0.03804544731974602, 0.029449963942170143, 0.8072519898414612, 0.019896510988473892, 0.013393805362284184, 0.02337290719151497], "normal_n3_p2": [0.06207767874002457, 0.03950057923793793, 0.04212179407477379, 0.02938123792409897, 0.030539339408278465, 0.7668665051460266, 0.009988255798816681], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07505157589912415, 0.025897452607750893, 0.016255151480436325, 0.03984897583723068, 0.03801781311631203, 0.031402040272951126, 0.011804589070379734], "reduce_n2_p1": [0.025183536112308502, 0.023261088877916336, 0.8235899806022644, 0.01589200831949711, 0.025947624817490578, 0.032194387167692184, 0.02496391534805298], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010156136006116867, 0.016680661588907242, 0.016267478466033936, 0.007620681542903185, 0.8953221440315247, 0.02488234080374241, 0.01432703249156475], "reduce_n3_p1": [0.9557355046272278, 0.011770335026085377, 0.004226853139698505, 0.006504090968519449, 0.006283264607191086, 0.004742621909826994, 0.004694947507232428], "reduce_n3_p2": [0.010760089382529259, 0.011908168904483318, 0.0052922675386071205, 0.02112753689289093, 0.06195170059800148, 0.017425494268536568, 0.01424338761717081], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06983792036771774, 0.15254290401935577, 0.037188753485679626, 0.061499860137701035, 0.06867443025112152, 0.4208376109600067, 0.11579034477472305], "normal_n2_p1": [0.3222501277923584, 0.27873101830482483, 0.058624424040317535, 0.1880619078874588, 0.01823336072266102, 0.04874340444803238, 0.02734481357038021], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.032287392765283585, 0.03463437035679817, 0.045712001621723175, 0.7882267832756042, 0.017551938071846962, 0.02873874269425869, 0.028874222189188004], "normal_n3_p1": [0.05318526551127434, 0.03804544731974602, 0.029449963942170143, 0.8072519898414612, 0.019896510988473892, 0.013393805362284184, 0.02337290719151497], "normal_n3_p2": [0.06207767874002457, 0.03950057923793793, 0.04212179407477379, 0.02938123792409897, 0.030539339408278465, 0.7668665051460266, 0.009988255798816681], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07505157589912415, 0.025897452607750893, 0.016255151480436325, 0.03984897583723068, 0.03801781311631203, 0.031402040272951126, 0.011804589070379734], "reduce_n2_p1": [0.025183536112308502, 0.023261088877916336, 0.8235899806022644, 0.01589200831949711, 0.025947624817490578, 0.032194387167692184, 0.02496391534805298], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010156136006116867, 0.016680661588907242, 0.016267478466033936, 0.007620681542903185, 0.8953221440315247, 0.02488234080374241, 0.01432703249156475], "reduce_n3_p1": [0.9557355046272278, 0.011770335026085377, 0.004226853139698505, 0.006504090968519449, 0.006283264607191086, 0.004742621909826994, 0.004694947507232428], "reduce_n3_p2": [0.010760089382529259, 0.011908168904483318, 0.0052922675386071205, 0.02112753689289093, 0.06195170059800148, 0.017425494268536568, 0.01424338761717081], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.12289866805076599, 0.2675827145576477, 0.07139790803194046, 0.07097869366407394, 0.16863223910331726, 0.23118984699249268, 0.05095707252621651], "normal_n2_p1": [0.689132809638977, 0.15249599516391754, 0.01998838223516941, 0.04856143519282341, 0.012738492339849472, 0.02681807242333889, 0.018114326521754265], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0238911435008049, 0.027365466579794884, 0.030454866588115692, 0.8459984064102173, 0.01696634478867054, 0.025463467463850975, 0.01342437881976366], "normal_n3_p1": [0.09093916416168213, 0.07286931574344635, 0.056900154799222946, 0.6540746688842773, 0.028498364612460136, 0.02746536023914814, 0.03480669856071472], "normal_n3_p2": [0.0316467359662056, 0.026744859293103218, 0.022527631372213364, 0.02110929973423481, 0.01717962883412838, 0.8545148968696594, 0.009787443093955517], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.19729438424110413, 0.07417486608028412, 0.03826037794351578, 0.09922311455011368, 0.10775405913591385, 0.07727086544036865, 0.032788801938295364], "reduce_n2_p1": [0.060702450573444366, 0.05075343698263168, 0.6242144107818604, 0.03533773124217987, 0.05205833539366722, 0.05847972631454468, 0.04435698688030243], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.00442225206643343, 0.00965677946805954, 0.009143199771642685, 0.006889022886753082, 0.9312008023262024, 0.017475910484790802, 0.011410881765186787], "reduce_n3_p1": [0.9225561022758484, 0.019810756668448448, 0.0076932040974497795, 0.011678962968289852, 0.011114239692687988, 0.007785429246723652, 0.007847415283322334], "reduce_n3_p2": [0.011939216405153275, 0.013939853757619858, 0.007901469245553017, 0.024794815108180046, 0.05427035316824913, 0.017818961292505264, 0.018434548750519753], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.12289866805076599, 0.2675827145576477, 0.07139790803194046, 0.07097869366407394, 0.16863223910331726, 0.23118984699249268, 0.05095707252621651], "normal_n2_p1": [0.689132809638977, 0.15249599516391754, 0.01998838223516941, 0.04856143519282341, 0.012738492339849472, 0.02681807242333889, 0.018114326521754265], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0238911435008049, 0.027365466579794884, 0.030454866588115692, 0.8459984064102173, 0.01696634478867054, 0.025463467463850975, 0.01342437881976366], "normal_n3_p1": [0.09093916416168213, 0.07286931574344635, 0.056900154799222946, 0.6540746688842773, 0.028498364612460136, 0.02746536023914814, 0.03480669856071472], "normal_n3_p2": [0.0316467359662056, 0.026744859293103218, 0.022527631372213364, 0.02110929973423481, 0.01717962883412838, 0.8545148968696594, 0.009787443093955517], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.19729438424110413, 0.07417486608028412, 0.03826037794351578, 0.09922311455011368, 0.10775405913591385, 0.07727086544036865, 0.032788801938295364], "reduce_n2_p1": [0.060702450573444366, 0.05075343698263168, 0.6242144107818604, 0.03533773124217987, 0.05205833539366722, 0.05847972631454468, 0.04435698688030243], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.00442225206643343, 0.00965677946805954, 0.009143199771642685, 0.006889022886753082, 0.9312008023262024, 0.017475910484790802, 0.011410881765186787], "reduce_n3_p1": [0.9225561022758484, 0.019810756668448448, 0.0076932040974497795, 0.011678962968289852, 0.011114239692687988, 0.007785429246723652, 0.007847415283322334], "reduce_n3_p2": [0.011939216405153275, 0.013939853757619858, 0.007901469245553017, 0.024794815108180046, 0.05427035316824913, 0.017818961292505264, 0.018434548750519753], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1318581998348236, 0.5411103367805481, 0.13427935540676117, 0.027018563821911812, 0.0461527481675148, 0.08200405538082123, 0.030055446550250053], "normal_n2_p1": [0.5899941921234131, 0.18605133891105652, 0.022684475407004356, 0.0587494820356369, 0.022015752270817757, 0.036739494651556015, 0.0306862685829401], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02205693908035755, 0.02571113593876362, 0.02866712212562561, 0.847484827041626, 0.017909318208694458, 0.02871973067522049, 0.012036063708364964], "normal_n3_p1": [0.17616350948810577, 0.1038857027888298, 0.09740878641605377, 0.39395397901535034, 0.045361265540122986, 0.04990736022591591, 0.050806231796741486], "normal_n3_p2": [0.015381173230707645, 0.013864035718142986, 0.011976778507232666, 0.019660556688904762, 0.008981963619589806, 0.9097166061401367, 0.007930058985948563], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.7874140739440918, 0.07253699004650116, 0.021714789792895317, 0.04734506085515022, 0.00975209940224886, 0.029921459034085274, 0.020694535225629807], "reduce_n2_p1": [0.039464887231588364, 0.035534441471099854, 0.7191306948661804, 0.03194758668541908, 0.03930208832025528, 0.03656560182571411, 0.024358253926038742], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005156445782631636, 0.01027609035372734, 0.008433234877884388, 0.009810409508645535, 0.9248918294906616, 0.01854010671377182, 0.012480461038649082], "reduce_n3_p1": [0.6311759948730469, 0.06972900778055191, 0.041711580008268356, 0.06541398912668228, 0.052606001496315, 0.037551164627075195, 0.03698094189167023], "reduce_n3_p2": [0.027150779962539673, 0.030963893979787827, 0.02132747508585453, 0.06332826614379883, 0.09954366087913513, 0.031548287719488144, 0.04543072357773781], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1318581998348236, 0.5411103367805481, 0.13427935540676117, 0.027018563821911812, 0.0461527481675148, 0.08200405538082123, 0.030055446550250053], "normal_n2_p1": [0.5899941921234131, 0.18605133891105652, 0.022684475407004356, 0.0587494820356369, 0.022015752270817757, 0.036739494651556015, 0.0306862685829401], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02205693908035755, 0.02571113593876362, 0.02866712212562561, 0.847484827041626, 0.017909318208694458, 0.02871973067522049, 0.012036063708364964], "normal_n3_p1": [0.17616350948810577, 0.1038857027888298, 0.09740878641605377, 0.39395397901535034, 0.045361265540122986, 0.04990736022591591, 0.050806231796741486], "normal_n3_p2": [0.015381173230707645, 0.013864035718142986, 0.011976778507232666, 0.019660556688904762, 0.008981963619589806, 0.9097166061401367, 0.007930058985948563], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.7874140739440918, 0.07253699004650116, 0.021714789792895317, 0.04734506085515022, 0.00975209940224886, 0.029921459034085274, 0.020694535225629807], "reduce_n2_p1": [0.039464887231588364, 0.035534441471099854, 0.7191306948661804, 0.03194758668541908, 0.03930208832025528, 0.03656560182571411, 0.024358253926038742], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005156445782631636, 0.01027609035372734, 0.008433234877884388, 0.009810409508645535, 0.9248918294906616, 0.01854010671377182, 0.012480461038649082], "reduce_n3_p1": [0.6311759948730469, 0.06972900778055191, 0.041711580008268356, 0.06541398912668228, 0.052606001496315, 0.037551164627075195, 0.03698094189167023], "reduce_n3_p2": [0.027150779962539673, 0.030963893979787827, 0.02132747508585453, 0.06332826614379883, 0.09954366087913513, 0.031548287719488144, 0.04543072357773781], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06173994392156601, 0.5648193359375, 0.10302925854921341, 0.028033526614308357, 0.04973805323243141, 0.15181800723075867, 0.0324256494641304], "normal_n2_p1": [0.15685512125492096, 0.18886542320251465, 0.03726346418261528, 0.180184468626976, 0.05227065831422806, 0.09413635730743408, 0.09803875535726547], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04601714387536049, 0.05280715599656105, 0.060938235372304916, 0.661337673664093, 0.04254428669810295, 0.06200956925749779, 0.02414184808731079], "normal_n3_p1": [0.11772898584604263, 0.03700399026274681, 0.058258965611457825, 0.11894502490758896, 0.06362546980381012, 0.13198454678058624, 0.0665084570646286], "normal_n3_p2": [0.008837728761136532, 0.008148202672600746, 0.007616822142153978, 0.019643694162368774, 0.00791123230010271, 0.9273478984832764, 0.008321774192154408], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.6630815267562866, 0.14159399271011353, 0.03547654300928116, 0.07827946543693542, 0.008314886130392551, 0.03040754608809948, 0.038512177765369415], "reduce_n2_p1": [0.002385020488873124, 0.0026053902693092823, 0.9768020510673523, 0.004362139850854874, 0.0036186270881444216, 0.0033368957228958607, 0.0018591084517538548], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.012354906648397446, 0.019338227808475494, 0.014853733591735363, 0.020276891067624092, 0.8645980954170227, 0.026333246380090714, 0.022299444302916527], "reduce_n3_p1": [0.5493702292442322, 0.06405853480100632, 0.05323701724410057, 0.0639767050743103, 0.055237576365470886, 0.04222171753644943, 0.04496191069483757], "reduce_n3_p2": [0.09918788820505142, 0.1267170011997223, 0.0746670663356781, 0.1671413779258728, 0.29173311591148376, 0.05724850669503212, 0.08908362686634064], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06173994392156601, 0.5648193359375, 0.10302925854921341, 0.028033526614308357, 0.04973805323243141, 0.15181800723075867, 0.0324256494641304], "normal_n2_p1": [0.15685512125492096, 0.18886542320251465, 0.03726346418261528, 0.180184468626976, 0.05227065831422806, 0.09413635730743408, 0.09803875535726547], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04601714387536049, 0.05280715599656105, 0.060938235372304916, 0.661337673664093, 0.04254428669810295, 0.06200956925749779, 0.02414184808731079], "normal_n3_p1": [0.11772898584604263, 0.03700399026274681, 0.058258965611457825, 0.11894502490758896, 0.06362546980381012, 0.13198454678058624, 0.0665084570646286], "normal_n3_p2": [0.008837728761136532, 0.008148202672600746, 0.007616822142153978, 0.019643694162368774, 0.00791123230010271, 0.9273478984832764, 0.008321774192154408], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.6630815267562866, 0.14159399271011353, 0.03547654300928116, 0.07827946543693542, 0.008314886130392551, 0.03040754608809948, 0.038512177765369415], "reduce_n2_p1": [0.002385020488873124, 0.0026053902693092823, 0.9768020510673523, 0.004362139850854874, 0.0036186270881444216, 0.0033368957228958607, 0.0018591084517538548], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.012354906648397446, 0.019338227808475494, 0.014853733591735363, 0.020276891067624092, 0.8645980954170227, 0.026333246380090714, 0.022299444302916527], "reduce_n3_p1": [0.5493702292442322, 0.06405853480100632, 0.05323701724410057, 0.0639767050743103, 0.055237576365470886, 0.04222171753644943, 0.04496191069483757], "reduce_n3_p2": [0.09918788820505142, 0.1267170011997223, 0.0746670663356781, 0.1671413779258728, 0.29173311591148376, 0.05724850669503212, 0.08908362686634064], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03345731273293495, 0.6651142239570618, 0.048156410455703735, 0.03137257322669029, 0.061736635863780975, 0.10203399509191513, 0.04698076844215393], "normal_n2_p1": [0.03600612282752991, 0.1460258960723877, 0.032107651233673096, 0.12077191472053528, 0.072706438601017, 0.07256602495908737, 0.308918833732605], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.12650807201862335, 0.18409062922000885, 0.20457486808300018, 0.19441558420658112, 0.08132214844226837, 0.08723060041666031, 0.0388701856136322], "normal_n3_p1": [0.20996053516864777, 0.04020710289478302, 0.07929416745901108, 0.05461305007338524, 0.10233989357948303, 0.3153296411037445, 0.08457490801811218], "normal_n3_p2": [0.011920484714210033, 0.010978931561112404, 0.010734433308243752, 0.02492128498852253, 0.010241549462080002, 0.904910683631897, 0.011158750392496586], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.8022541999816895, 0.0789734274148941, 0.025294285267591476, 0.038869235664606094, 0.0056808749213814735, 0.018246250227093697, 0.02827143855392933], "reduce_n2_p1": [0.0010927984258159995, 0.0013136855559423566, 0.9881178736686707, 0.002627708250656724, 0.0018852092325687408, 0.0016915732994675636, 0.0009869169443845749], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022671211510896683, 0.026168107986450195, 0.023710938170552254, 0.03330039232969284, 0.7985451221466064, 0.031929243355989456, 0.030311739072203636], "reduce_n3_p1": [0.8521021008491516, 0.02599363774061203, 0.026877397671341896, 0.018247518688440323, 0.01923452690243721, 0.02444576658308506, 0.012613498605787754], "reduce_n3_p2": [0.15138152241706848, 0.10780995339155197, 0.06746664643287659, 0.11457162350416183, 0.4090630114078522, 0.05355378985404968, 0.06870701909065247], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03345731273293495, 0.6651142239570618, 0.048156410455703735, 0.03137257322669029, 0.061736635863780975, 0.10203399509191513, 0.04698076844215393], "normal_n2_p1": [0.03600612282752991, 0.1460258960723877, 0.032107651233673096, 0.12077191472053528, 0.072706438601017, 0.07256602495908737, 0.308918833732605], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.12650807201862335, 0.18409062922000885, 0.20457486808300018, 0.19441558420658112, 0.08132214844226837, 0.08723060041666031, 0.0388701856136322], "normal_n3_p1": [0.20996053516864777, 0.04020710289478302, 0.07929416745901108, 0.05461305007338524, 0.10233989357948303, 0.3153296411037445, 0.08457490801811218], "normal_n3_p2": [0.011920484714210033, 0.010978931561112404, 0.010734433308243752, 0.02492128498852253, 0.010241549462080002, 0.904910683631897, 0.011158750392496586], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.8022541999816895, 0.0789734274148941, 0.025294285267591476, 0.038869235664606094, 0.0056808749213814735, 0.018246250227093697, 0.02827143855392933], "reduce_n2_p1": [0.0010927984258159995, 0.0013136855559423566, 0.9881178736686707, 0.002627708250656724, 0.0018852092325687408, 0.0016915732994675636, 0.0009869169443845749], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022671211510896683, 0.026168107986450195, 0.023710938170552254, 0.03330039232969284, 0.7985451221466064, 0.031929243355989456, 0.030311739072203636], "reduce_n3_p1": [0.8521021008491516, 0.02599363774061203, 0.026877397671341896, 0.018247518688440323, 0.01923452690243721, 0.02444576658308506, 0.012613498605787754], "reduce_n3_p2": [0.15138152241706848, 0.10780995339155197, 0.06746664643287659, 0.11457162350416183, 0.4090630114078522, 0.05355378985404968, 0.06870701909065247], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013385530561208725, 0.8770090341567993, 0.024424036964774132, 0.006820434704422951, 0.03107922151684761, 0.014033915475010872, 0.025489892810583115], "normal_n2_p1": [0.028104515746235847, 0.23311761021614075, 0.03941109776496887, 0.10572562366724014, 0.10752134770154953, 0.06536168605089188, 0.03381996601819992], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.2561100423336029, 0.1843613237142563, 0.35574766993522644, 0.022627850994467735, 0.05393905192613602, 0.04512982815504074, 0.02904139645397663], "normal_n3_p1": [0.25362715125083923, 0.018214978277683258, 0.027643876150250435, 0.018649689853191376, 0.03729265183210373, 0.5678495764732361, 0.05251789838075638], "normal_n3_p2": [0.02956371381878853, 0.024527978152036667, 0.025799447670578957, 0.05435075983405113, 0.018403539434075356, 0.800299346446991, 0.019690021872520447], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.9293310642242432, 0.029968727380037308, 0.007985041476786137, 0.011577341705560684, 0.002890409203246236, 0.006506134755909443, 0.01031478401273489], "reduce_n2_p1": [0.001799676800146699, 0.0022194860503077507, 0.9810771346092224, 0.004151759669184685, 0.0029505183920264244, 0.0025433360133320093, 0.0017276122234761715], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06285029649734497, 0.049752235412597656, 0.036005761474370956, 0.05072328820824623, 0.6389579772949219, 0.060807764530181885, 0.046891000121831894], "reduce_n3_p1": [0.7182855010032654, 0.04003472253680229, 0.0568748377263546, 0.04046180471777916, 0.035097669810056686, 0.06456010788679123, 0.022674838081002235], "reduce_n3_p2": [0.21528056263923645, 0.14558252692222595, 0.0911358892917633, 0.3051096498966217, 0.11720818281173706, 0.05191585421562195, 0.052928488701581955], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013385530561208725, 0.8770090341567993, 0.024424036964774132, 0.006820434704422951, 0.03107922151684761, 0.014033915475010872, 0.025489892810583115], "normal_n2_p1": [0.028104515746235847, 0.23311761021614075, 0.03941109776496887, 0.10572562366724014, 0.10752134770154953, 0.06536168605089188, 0.03381996601819992], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.2561100423336029, 0.1843613237142563, 0.35574766993522644, 0.022627850994467735, 0.05393905192613602, 0.04512982815504074, 0.02904139645397663], "normal_n3_p1": [0.25362715125083923, 0.018214978277683258, 0.027643876150250435, 0.018649689853191376, 0.03729265183210373, 0.5678495764732361, 0.05251789838075638], "normal_n3_p2": [0.02956371381878853, 0.024527978152036667, 0.025799447670578957, 0.05435075983405113, 0.018403539434075356, 0.800299346446991, 0.019690021872520447], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.9293310642242432, 0.029968727380037308, 0.007985041476786137, 0.011577341705560684, 0.002890409203246236, 0.006506134755909443, 0.01031478401273489], "reduce_n2_p1": [0.001799676800146699, 0.0022194860503077507, 0.9810771346092224, 0.004151759669184685, 0.0029505183920264244, 0.0025433360133320093, 0.0017276122234761715], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06285029649734497, 0.049752235412597656, 0.036005761474370956, 0.05072328820824623, 0.6389579772949219, 0.060807764530181885, 0.046891000121831894], "reduce_n3_p1": [0.7182855010032654, 0.04003472253680229, 0.0568748377263546, 0.04046180471777916, 0.035097669810056686, 0.06456010788679123, 0.022674838081002235], "reduce_n3_p2": [0.21528056263923645, 0.14558252692222595, 0.0911358892917633, 0.3051096498966217, 0.11720818281173706, 0.05191585421562195, 0.052928488701581955], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.014912040904164314, 0.8436902761459351, 0.02818162925541401, 0.007023838814347982, 0.05058355629444122, 0.008468953892588615, 0.03427429869771004], "normal_n2_p1": [0.02197943814098835, 0.7326465845108032, 0.044364187866449356, 0.04565725848078728, 0.06760581582784653, 0.023458579555153847, 0.004914482589811087], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.1325858235359192, 0.08598759025335312, 0.4945882260799408, 0.01205766387283802, 0.09271533042192459, 0.051584430038928986, 0.04033759608864784], "normal_n3_p1": [0.5085772275924683, 0.020273465663194656, 0.02702893503010273, 0.015720777213573456, 0.025034727528691292, 0.34753137826919556, 0.04175275191664696], "normal_n3_p2": [0.030717089772224426, 0.028645219281315804, 0.030109740793704987, 0.0682302713394165, 0.02290905825793743, 0.7575424313545227, 0.027618352323770523], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.9147438406944275, 0.03328828141093254, 0.00937835406512022, 0.013297701254487038, 0.005286421626806259, 0.00805362407118082, 0.01267379429191351], "reduce_n2_p1": [0.0043719252571463585, 0.005275039467960596, 0.9574736952781677, 0.008514017798006535, 0.00652654841542244, 0.005537528079003096, 0.0044330102391541], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005203720182180405, 0.008654747158288956, 0.009823143482208252, 0.007184281013906002, 0.9428302645683289, 0.011159799061715603, 0.008673789910972118], "reduce_n3_p1": [0.3819703757762909, 0.07203151285648346, 0.13454385101795197, 0.11914604902267456, 0.08088205754756927, 0.08490151166915894, 0.07508876919746399], "reduce_n3_p2": [0.033483345061540604, 0.015567159280180931, 0.017272282391786575, 0.8732609748840332, 0.012126479297876358, 0.02345503307878971, 0.0170412827283144], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.014912040904164314, 0.8436902761459351, 0.02818162925541401, 0.007023838814347982, 0.05058355629444122, 0.008468953892588615, 0.03427429869771004], "normal_n2_p1": [0.02197943814098835, 0.7326465845108032, 0.044364187866449356, 0.04565725848078728, 0.06760581582784653, 0.023458579555153847, 0.004914482589811087], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.1325858235359192, 0.08598759025335312, 0.4945882260799408, 0.01205766387283802, 0.09271533042192459, 0.051584430038928986, 0.04033759608864784], "normal_n3_p1": [0.5085772275924683, 0.020273465663194656, 0.02702893503010273, 0.015720777213573456, 0.025034727528691292, 0.34753137826919556, 0.04175275191664696], "normal_n3_p2": [0.030717089772224426, 0.028645219281315804, 0.030109740793704987, 0.0682302713394165, 0.02290905825793743, 0.7575424313545227, 0.027618352323770523], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.9147438406944275, 0.03328828141093254, 0.00937835406512022, 0.013297701254487038, 0.005286421626806259, 0.00805362407118082, 0.01267379429191351], "reduce_n2_p1": [0.0043719252571463585, 0.005275039467960596, 0.9574736952781677, 0.008514017798006535, 0.00652654841542244, 0.005537528079003096, 0.0044330102391541], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005203720182180405, 0.008654747158288956, 0.009823143482208252, 0.007184281013906002, 0.9428302645683289, 0.011159799061715603, 0.008673789910972118], "reduce_n3_p1": [0.3819703757762909, 0.07203151285648346, 0.13454385101795197, 0.11914604902267456, 0.08088205754756927, 0.08490151166915894, 0.07508876919746399], "reduce_n3_p2": [0.033483345061540604, 0.015567159280180931, 0.017272282391786575, 0.8732609748840332, 0.012126479297876358, 0.02345503307878971, 0.0170412827283144], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02238290198147297, 0.7134464979171753, 0.03605689853429794, 0.011445119045674801, 0.12474223971366882, 0.009031206369400024, 0.05872585251927376], "normal_n2_p1": [0.013646931387484074, 0.877787172794342, 0.02850007638335228, 0.022371692582964897, 0.030531303957104683, 0.00992570724338293, 0.001489629503339529], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.08485747873783112, 0.042961396276950836, 0.42948123812675476, 0.011407432146370411, 0.1530163288116455, 0.08194286376237869, 0.04619264230132103], "normal_n3_p1": [0.6788156032562256, 0.024588044732809067, 0.03079753741621971, 0.019416557624936104, 0.02399212308228016, 0.1649097502231598, 0.04227684810757637], "normal_n3_p2": [0.017740827053785324, 0.01791897974908352, 0.017630400136113167, 0.06880795955657959, 0.019067252054810524, 0.8041304349899292, 0.021998124197125435], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.8924458622932434, 0.03761740028858185, 0.011688659898936749, 0.015974096953868866, 0.009454203769564629, 0.010483664460480213, 0.014755847863852978], "reduce_n2_p1": [0.011222761124372482, 0.012911086902022362, 0.8985790014266968, 0.017956657335162163, 0.015268195420503616, 0.013271817937493324, 0.011831913143396378], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0026495635975152254, 0.005256487522274256, 0.007516811136156321, 0.0036235072184354067, 0.9658079743385315, 0.006533845327794552, 0.005087955389171839], "reduce_n3_p1": [0.9042177200317383, 0.022353867068886757, 0.02000119537115097, 0.010884367860853672, 0.009824133478105068, 0.008174276910722256, 0.008066120557487011], "reduce_n3_p2": [0.015028195455670357, 0.006195634603500366, 0.008838438428938389, 0.932921290397644, 0.004729728680104017, 0.01570165529847145, 0.010519509203732014], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02238290198147297, 0.7134464979171753, 0.03605689853429794, 0.011445119045674801, 0.12474223971366882, 0.009031206369400024, 0.05872585251927376], "normal_n2_p1": [0.013646931387484074, 0.877787172794342, 0.02850007638335228, 0.022371692582964897, 0.030531303957104683, 0.00992570724338293, 0.001489629503339529], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.08485747873783112, 0.042961396276950836, 0.42948123812675476, 0.011407432146370411, 0.1530163288116455, 0.08194286376237869, 0.04619264230132103], "normal_n3_p1": [0.6788156032562256, 0.024588044732809067, 0.03079753741621971, 0.019416557624936104, 0.02399212308228016, 0.1649097502231598, 0.04227684810757637], "normal_n3_p2": [0.017740827053785324, 0.01791897974908352, 0.017630400136113167, 0.06880795955657959, 0.019067252054810524, 0.8041304349899292, 0.021998124197125435], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.8924458622932434, 0.03761740028858185, 0.011688659898936749, 0.015974096953868866, 0.009454203769564629, 0.010483664460480213, 0.014755847863852978], "reduce_n2_p1": [0.011222761124372482, 0.012911086902022362, 0.8985790014266968, 0.017956657335162163, 0.015268195420503616, 0.013271817937493324, 0.011831913143396378], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0026495635975152254, 0.005256487522274256, 0.007516811136156321, 0.0036235072184354067, 0.9658079743385315, 0.006533845327794552, 0.005087955389171839], "reduce_n3_p1": [0.9042177200317383, 0.022353867068886757, 0.02000119537115097, 0.010884367860853672, 0.009824133478105068, 0.008174276910722256, 0.008066120557487011], "reduce_n3_p2": [0.015028195455670357, 0.006195634603500366, 0.008838438428938389, 0.932921290397644, 0.004729728680104017, 0.01570165529847145, 0.010519509203732014], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.037650708109140396, 0.6926202774047852, 0.053864553570747375, 0.0182315856218338, 0.1133212074637413, 0.010274014435708523, 0.03716907650232315], "normal_n2_p1": [0.021732300519943237, 0.818273663520813, 0.04550467059016228, 0.02915976010262966, 0.05417254939675331, 0.012362075038254261, 0.001812112983316183], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.038282714784145355, 0.024327823892235756, 0.5437948107719421, 0.011260942555963993, 0.12034034729003906, 0.07844368368387222, 0.06512971967458725], "normal_n3_p1": [0.4836532771587372, 0.03553896024823189, 0.04565682262182236, 0.030019043013453484, 0.03484826534986496, 0.267509400844574, 0.07605431973934174], "normal_n3_p2": [0.006228931248188019, 0.0066038016229867935, 0.006411006674170494, 0.04129519313573837, 0.009522738866508007, 0.9013708829879761, 0.011789070442318916], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.7736660242080688, 0.0734696164727211, 0.023450728505849838, 0.029916593804955482, 0.024083208292722702, 0.023145893588662148, 0.030460175126791], "reduce_n2_p1": [0.022984040901064873, 0.02631315588951111, 0.8229063153266907, 0.02879304811358452, 0.025921974331140518, 0.02125958353281021, 0.022270046174526215], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0039927763864398, 0.007086611818522215, 0.009889933280646801, 0.004736046306788921, 0.9536328911781311, 0.009004916995763779, 0.00663656834512949], "reduce_n3_p1": [0.8980291485786438, 0.02504407986998558, 0.020655382424592972, 0.00990445539355278, 0.008740421384572983, 0.006531154736876488, 0.006949689704924822], "reduce_n3_p2": [0.028695113956928253, 0.011439861729741096, 0.018439659848809242, 0.8642511367797852, 0.008016799576580524, 0.03315279632806778, 0.021076347678899765], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.037650708109140396, 0.6926202774047852, 0.053864553570747375, 0.0182315856218338, 0.1133212074637413, 0.010274014435708523, 0.03716907650232315], "normal_n2_p1": [0.021732300519943237, 0.818273663520813, 0.04550467059016228, 0.02915976010262966, 0.05417254939675331, 0.012362075038254261, 0.001812112983316183], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.038282714784145355, 0.024327823892235756, 0.5437948107719421, 0.011260942555963993, 0.12034034729003906, 0.07844368368387222, 0.06512971967458725], "normal_n3_p1": [0.4836532771587372, 0.03553896024823189, 0.04565682262182236, 0.030019043013453484, 0.03484826534986496, 0.267509400844574, 0.07605431973934174], "normal_n3_p2": [0.006228931248188019, 0.0066038016229867935, 0.006411006674170494, 0.04129519313573837, 0.009522738866508007, 0.9013708829879761, 0.011789070442318916], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.7736660242080688, 0.0734696164727211, 0.023450728505849838, 0.029916593804955482, 0.024083208292722702, 0.023145893588662148, 0.030460175126791], "reduce_n2_p1": [0.022984040901064873, 0.02631315588951111, 0.8229063153266907, 0.02879304811358452, 0.025921974331140518, 0.02125958353281021, 0.022270046174526215], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0039927763864398, 0.007086611818522215, 0.009889933280646801, 0.004736046306788921, 0.9536328911781311, 0.009004916995763779, 0.00663656834512949], "reduce_n3_p1": [0.8980291485786438, 0.02504407986998558, 0.020655382424592972, 0.00990445539355278, 0.008740421384572983, 0.006531154736876488, 0.006949689704924822], "reduce_n3_p2": [0.028695113956928253, 0.011439861729741096, 0.018439659848809242, 0.8642511367797852, 0.008016799576580524, 0.03315279632806778, 0.021076347678899765], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04886087030172348, 0.7659533023834229, 0.07331285625696182, 0.02046855166554451, 0.030066974461078644, 0.009688024409115314, 0.02056674100458622], "normal_n2_p1": [0.04276369512081146, 0.6271679401397705, 0.07953440397977829, 0.050183530896902084, 0.14848467707633972, 0.022132620215415955, 0.0035001705400645733], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.045666132122278214, 0.028282061219215393, 0.06868504732847214, 0.01722666062414646, 0.36431458592414856, 0.10790378600358963, 0.1716199517250061], "normal_n3_p1": [0.3114362359046936, 0.03792422264814377, 0.03793087974190712, 0.0385562926530838, 0.04159628972411156, 0.4073440134525299, 0.08188257366418839], "normal_n3_p2": [0.00579052185639739, 0.005991921294480562, 0.005787504371255636, 0.04217774420976639, 0.010361181572079659, 0.9029852151870728, 0.011262744665145874], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4419644773006439, 0.16452890634536743, 0.056811362504959106, 0.06380157172679901, 0.0553613007068634, 0.06730493903160095, 0.08295471221208572], "reduce_n2_p1": [0.01559086237102747, 0.015141519717872143, 0.8730390667915344, 0.019274111837148666, 0.01982223056256771, 0.019484810531139374, 0.017185276374220848], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008658302947878838, 0.012389767915010452, 0.016053203493356705, 0.008816110901534557, 0.9153000712394714, 0.01694350689649582, 0.011560438200831413], "reduce_n3_p1": [0.8500997424125671, 0.03580399602651596, 0.026128020137548447, 0.014843311160802841, 0.0131837772205472, 0.010290964506566525, 0.011151375249028206], "reduce_n3_p2": [0.03261706233024597, 0.017275575548410416, 0.026195766404271126, 0.804829478263855, 0.012274887412786484, 0.0454433336853981, 0.03429931029677391], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.04886087030172348, 0.7659533023834229, 0.07331285625696182, 0.02046855166554451, 0.030066974461078644, 0.009688024409115314, 0.02056674100458622], "normal_n2_p1": [0.04276369512081146, 0.6271679401397705, 0.07953440397977829, 0.050183530896902084, 0.14848467707633972, 0.022132620215415955, 0.0035001705400645733], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.045666132122278214, 0.028282061219215393, 0.06868504732847214, 0.01722666062414646, 0.36431458592414856, 0.10790378600358963, 0.1716199517250061], "normal_n3_p1": [0.3114362359046936, 0.03792422264814377, 0.03793087974190712, 0.0385562926530838, 0.04159628972411156, 0.4073440134525299, 0.08188257366418839], "normal_n3_p2": [0.00579052185639739, 0.005991921294480562, 0.005787504371255636, 0.04217774420976639, 0.010361181572079659, 0.9029852151870728, 0.011262744665145874], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4419644773006439, 0.16452890634536743, 0.056811362504959106, 0.06380157172679901, 0.0553613007068634, 0.06730493903160095, 0.08295471221208572], "reduce_n2_p1": [0.01559086237102747, 0.015141519717872143, 0.8730390667915344, 0.019274111837148666, 0.01982223056256771, 0.019484810531139374, 0.017185276374220848], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008658302947878838, 0.012389767915010452, 0.016053203493356705, 0.008816110901534557, 0.9153000712394714, 0.01694350689649582, 0.011560438200831413], "reduce_n3_p1": [0.8500997424125671, 0.03580399602651596, 0.026128020137548447, 0.014843311160802841, 0.0131837772205472, 0.010290964506566525, 0.011151375249028206], "reduce_n3_p2": [0.03261706233024597, 0.017275575548410416, 0.026195766404271126, 0.804829478263855, 0.012274887412786484, 0.0454433336853981, 0.03429931029677391], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.10432683676481247, 0.692570149898529, 0.07072041183710098, 0.03111918456852436, 0.027712451294064522, 0.014939026907086372, 0.020258234813809395], "normal_n2_p1": [0.06358381360769272, 0.56742262840271, 0.07754415273666382, 0.04757482185959816, 0.18810917437076569, 0.02420841157436371, 0.0052035171538591385], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03584390878677368, 0.024492822587490082, 0.01819133572280407, 0.01688707061111927, 0.06725326180458069, 0.1458042711019516, 0.6498530507087708], "normal_n3_p1": [0.11398153007030487, 0.02762073650956154, 0.027653014287352562, 0.03215675428509712, 0.02874595671892166, 0.6664080023765564, 0.06471320241689682], "normal_n3_p2": [0.0063157156109809875, 0.006284688599407673, 0.0062033324502408504, 0.02913542464375496, 0.011214101687073708, 0.9205237030982971, 0.008577258326113224], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4569741189479828, 0.24528881907463074, 0.04676492139697075, 0.05096462368965149, 0.04669541120529175, 0.03324829414486885, 0.07614793628454208], "reduce_n2_p1": [0.029665976762771606, 0.027497800067067146, 0.7600246667861938, 0.03162073343992233, 0.03728814050555229, 0.03699537739157677, 0.03603268042206764], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.015582258813083172, 0.018807874992489815, 0.02165171317756176, 0.016141561791300774, 0.866854190826416, 0.02552022784948349, 0.017443010583519936], "reduce_n3_p1": [0.7548471689224243, 0.05984539911150932, 0.04308130219578743, 0.028237055987119675, 0.02323882281780243, 0.017523139715194702, 0.018853504210710526], "reduce_n3_p2": [0.06884604692459106, 0.04591873660683632, 0.06845182925462723, 0.5304667353630066, 0.03028162382543087, 0.10053318738937378, 0.07894755154848099], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.10432683676481247, 0.692570149898529, 0.07072041183710098, 0.03111918456852436, 0.027712451294064522, 0.014939026907086372, 0.020258234813809395], "normal_n2_p1": [0.06358381360769272, 0.56742262840271, 0.07754415273666382, 0.04757482185959816, 0.18810917437076569, 0.02420841157436371, 0.0052035171538591385], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03584390878677368, 0.024492822587490082, 0.01819133572280407, 0.01688707061111927, 0.06725326180458069, 0.1458042711019516, 0.6498530507087708], "normal_n3_p1": [0.11398153007030487, 0.02762073650956154, 0.027653014287352562, 0.03215675428509712, 0.02874595671892166, 0.6664080023765564, 0.06471320241689682], "normal_n3_p2": [0.0063157156109809875, 0.006284688599407673, 0.0062033324502408504, 0.02913542464375496, 0.011214101687073708, 0.9205237030982971, 0.008577258326113224], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4569741189479828, 0.24528881907463074, 0.04676492139697075, 0.05096462368965149, 0.04669541120529175, 0.03324829414486885, 0.07614793628454208], "reduce_n2_p1": [0.029665976762771606, 0.027497800067067146, 0.7600246667861938, 0.03162073343992233, 0.03728814050555229, 0.03699537739157677, 0.03603268042206764], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.015582258813083172, 0.018807874992489815, 0.02165171317756176, 0.016141561791300774, 0.866854190826416, 0.02552022784948349, 0.017443010583519936], "reduce_n3_p1": [0.7548471689224243, 0.05984539911150932, 0.04308130219578743, 0.028237055987119675, 0.02323882281780243, 0.017523139715194702, 0.018853504210710526], "reduce_n3_p2": [0.06884604692459106, 0.04591873660683632, 0.06845182925462723, 0.5304667353630066, 0.03028162382543087, 0.10053318738937378, 0.07894755154848099], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1852370798587799, 0.6677420139312744, 0.02998020127415657, 0.02655937150120735, 0.02660117670893669, 0.01750534400343895, 0.01900220848619938], "normal_n2_p1": [0.08236564695835114, 0.7125344276428223, 0.06601616740226746, 0.05514140427112579, 0.031080147251486778, 0.02340741828083992, 0.006106626242399216], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.035376328974962234, 0.02333906665444374, 0.011082603596150875, 0.0212351456284523, 0.06772607564926147, 0.14002610743045807, 0.6760233044624329], "normal_n3_p1": [0.30761730670928955, 0.07949640601873398, 0.07569049298763275, 0.08738210052251816, 0.06869282573461533, 0.1606874018907547, 0.1215691864490509], "normal_n3_p2": [0.00659047020599246, 0.006329035386443138, 0.006335938349366188, 0.013910513371229172, 0.010046564973890781, 0.942088782787323, 0.006431445013731718], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.42883217334747314, 0.3328147530555725, 0.0343768373131752, 0.04360944405198097, 0.039761949330568314, 0.021601606160402298, 0.0654149278998375], "reduce_n2_p1": [0.0756256952881813, 0.07765214890241623, 0.36989259719848633, 0.06486386805772781, 0.09945305436849594, 0.08168605715036392, 0.11398649215698242], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.037640273571014404, 0.03782472386956215, 0.034331485629081726, 0.03820377215743065, 0.7325681447982788, 0.05030415579676628, 0.032601747661828995], "reduce_n3_p1": [0.7625001668930054, 0.06834966689348221, 0.041733331978321075, 0.032215263694524765, 0.025678638368844986, 0.01728309504687786, 0.02165154181420803], "reduce_n3_p2": [0.10623971372842789, 0.10169591009616852, 0.13214550912380219, 0.2643604874610901, 0.058524712920188904, 0.09791151434183121, 0.0967743992805481], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1852370798587799, 0.6677420139312744, 0.02998020127415657, 0.02655937150120735, 0.02660117670893669, 0.01750534400343895, 0.01900220848619938], "normal_n2_p1": [0.08236564695835114, 0.7125344276428223, 0.06601616740226746, 0.05514140427112579, 0.031080147251486778, 0.02340741828083992, 0.006106626242399216], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.035376328974962234, 0.02333906665444374, 0.011082603596150875, 0.0212351456284523, 0.06772607564926147, 0.14002610743045807, 0.6760233044624329], "normal_n3_p1": [0.30761730670928955, 0.07949640601873398, 0.07569049298763275, 0.08738210052251816, 0.06869282573461533, 0.1606874018907547, 0.1215691864490509], "normal_n3_p2": [0.00659047020599246, 0.006329035386443138, 0.006335938349366188, 0.013910513371229172, 0.010046564973890781, 0.942088782787323, 0.006431445013731718], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.42883217334747314, 0.3328147530555725, 0.0343768373131752, 0.04360944405198097, 0.039761949330568314, 0.021601606160402298, 0.0654149278998375], "reduce_n2_p1": [0.0756256952881813, 0.07765214890241623, 0.36989259719848633, 0.06486386805772781, 0.09945305436849594, 0.08168605715036392, 0.11398649215698242], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.037640273571014404, 0.03782472386956215, 0.034331485629081726, 0.03820377215743065, 0.7325681447982788, 0.05030415579676628, 0.032601747661828995], "reduce_n3_p1": [0.7625001668930054, 0.06834966689348221, 0.041733331978321075, 0.032215263694524765, 0.025678638368844986, 0.01728309504687786, 0.02165154181420803], "reduce_n3_p2": [0.10623971372842789, 0.10169591009616852, 0.13214550912380219, 0.2643604874610901, 0.058524712920188904, 0.09791151434183121, 0.0967743992805481], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08701907843351364, 0.8130817413330078, 0.01624227501451969, 0.012819018214941025, 0.01890731044113636, 0.019035564735531807, 0.01653682067990303], "normal_n2_p1": [0.11375054717063904, 0.6223018765449524, 0.06852087378501892, 0.09980636090040207, 0.01962176524102688, 0.03230789303779602, 0.010271864011883736], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.1181284561753273, 0.07898515462875366, 0.0249739121645689, 0.05121354013681412, 0.25619956851005554, 0.3145122230052948, 0.09715726971626282], "normal_n3_p1": [0.17010074853897095, 0.0884377732872963, 0.09410965442657471, 0.13658291101455688, 0.06562650948762894, 0.12385639548301697, 0.11572834849357605], "normal_n3_p2": [0.010493156500160694, 0.01008059736341238, 0.010290484875440598, 0.01298864372074604, 0.014058651402592659, 0.9252780675888062, 0.007457669824361801], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.31261032819747925, 0.26652342081069946, 0.05122390761971474, 0.06033683940768242, 0.05547380819916725, 0.027922971174120903, 0.16514678299427032], "reduce_n2_p1": [0.07000399380922318, 0.056878332048654556, 0.2800299823284149, 0.06409519165754318, 0.1756247878074646, 0.14254480600357056, 0.12940829992294312], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.042174797505140305, 0.0357217900454998, 0.030994856730103493, 0.02965657413005829, 0.7318052053451538, 0.043910037726163864, 0.045259252190589905], "reduce_n3_p1": [0.7526459693908691, 0.08152122050523758, 0.03399180993437767, 0.03507035970687866, 0.028034433722496033, 0.020893646404147148, 0.02138851210474968], "reduce_n3_p2": [0.17865562438964844, 0.12983639538288116, 0.140563502907753, 0.0896027609705925, 0.14735719561576843, 0.06163839250802994, 0.12083252519369125], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08701907843351364, 0.8130817413330078, 0.01624227501451969, 0.012819018214941025, 0.01890731044113636, 0.019035564735531807, 0.01653682067990303], "normal_n2_p1": [0.11375054717063904, 0.6223018765449524, 0.06852087378501892, 0.09980636090040207, 0.01962176524102688, 0.03230789303779602, 0.010271864011883736], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.1181284561753273, 0.07898515462875366, 0.0249739121645689, 0.05121354013681412, 0.25619956851005554, 0.3145122230052948, 0.09715726971626282], "normal_n3_p1": [0.17010074853897095, 0.0884377732872963, 0.09410965442657471, 0.13658291101455688, 0.06562650948762894, 0.12385639548301697, 0.11572834849357605], "normal_n3_p2": [0.010493156500160694, 0.01008059736341238, 0.010290484875440598, 0.01298864372074604, 0.014058651402592659, 0.9252780675888062, 0.007457669824361801], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.31261032819747925, 0.26652342081069946, 0.05122390761971474, 0.06033683940768242, 0.05547380819916725, 0.027922971174120903, 0.16514678299427032], "reduce_n2_p1": [0.07000399380922318, 0.056878332048654556, 0.2800299823284149, 0.06409519165754318, 0.1756247878074646, 0.14254480600357056, 0.12940829992294312], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.042174797505140305, 0.0357217900454998, 0.030994856730103493, 0.02965657413005829, 0.7318052053451538, 0.043910037726163864, 0.045259252190589905], "reduce_n3_p1": [0.7526459693908691, 0.08152122050523758, 0.03399180993437767, 0.03507035970687866, 0.028034433722496033, 0.020893646404147148, 0.02138851210474968], "reduce_n3_p2": [0.17865562438964844, 0.12983639538288116, 0.140563502907753, 0.0896027609705925, 0.14735719561576843, 0.06163839250802994, 0.12083252519369125], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05032914876937866, 0.8581283688545227, 0.014191427268087864, 0.009822419844567776, 0.018013982102274895, 0.018370136618614197, 0.015933165326714516], "normal_n2_p1": [0.0817405954003334, 0.6550574898719788, 0.06367871165275574, 0.09246329963207245, 0.017530303448438644, 0.03449229896068573, 0.014670575968921185], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.059855446219444275, 0.03352610766887665, 0.019677279517054558, 0.044232435524463654, 0.53896164894104, 0.22974678874015808, 0.025988975539803505], "normal_n3_p1": [0.10659469664096832, 0.06113588437438011, 0.0799299106001854, 0.16023914515972137, 0.057497840374708176, 0.2173232138156891, 0.12920528650283813], "normal_n3_p2": [0.01685931719839573, 0.015763791278004646, 0.016129763796925545, 0.01806045137345791, 0.025198016315698624, 0.8832921385765076, 0.01117798313498497], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.35055413842201233, 0.2632008194923401, 0.056469812989234924, 0.0576392225921154, 0.023726966232061386, 0.024862471967935562, 0.148570254445076], "reduce_n2_p1": [0.028041042387485504, 0.025167006999254227, 0.3403327167034149, 0.03489987924695015, 0.20750471949577332, 0.03350163996219635, 0.30030906200408936], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01400946918874979, 0.013738795183598995, 0.016867784783244133, 0.00996562372893095, 0.896694540977478, 0.014296500943601131, 0.019119204953312874], "reduce_n3_p1": [0.42545226216316223, 0.14153702557086945, 0.06429021805524826, 0.12487698346376419, 0.055607523769140244, 0.07320640236139297, 0.03706677630543709], "reduce_n3_p2": [0.07747405767440796, 0.0815771222114563, 0.11547324061393738, 0.08103301376104355, 0.19801785051822662, 0.06284163147211075, 0.22080978751182556], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05032914876937866, 0.8581283688545227, 0.014191427268087864, 0.009822419844567776, 0.018013982102274895, 0.018370136618614197, 0.015933165326714516], "normal_n2_p1": [0.0817405954003334, 0.6550574898719788, 0.06367871165275574, 0.09246329963207245, 0.017530303448438644, 0.03449229896068573, 0.014670575968921185], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.059855446219444275, 0.03352610766887665, 0.019677279517054558, 0.044232435524463654, 0.53896164894104, 0.22974678874015808, 0.025988975539803505], "normal_n3_p1": [0.10659469664096832, 0.06113588437438011, 0.0799299106001854, 0.16023914515972137, 0.057497840374708176, 0.2173232138156891, 0.12920528650283813], "normal_n3_p2": [0.01685931719839573, 0.015763791278004646, 0.016129763796925545, 0.01806045137345791, 0.025198016315698624, 0.8832921385765076, 0.01117798313498497], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.35055413842201233, 0.2632008194923401, 0.056469812989234924, 0.0576392225921154, 0.023726966232061386, 0.024862471967935562, 0.148570254445076], "reduce_n2_p1": [0.028041042387485504, 0.025167006999254227, 0.3403327167034149, 0.03489987924695015, 0.20750471949577332, 0.03350163996219635, 0.30030906200408936], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01400946918874979, 0.013738795183598995, 0.016867784783244133, 0.00996562372893095, 0.896694540977478, 0.014296500943601131, 0.019119204953312874], "reduce_n3_p1": [0.42545226216316223, 0.14153702557086945, 0.06429021805524826, 0.12487698346376419, 0.055607523769140244, 0.07320640236139297, 0.03706677630543709], "reduce_n3_p2": [0.07747405767440796, 0.0815771222114563, 0.11547324061393738, 0.08103301376104355, 0.19801785051822662, 0.06284163147211075, 0.22080978751182556], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05384920537471771, 0.8369095325469971, 0.019177701324224472, 0.01130936574190855, 0.017594419419765472, 0.022284656763076782, 0.021122168749570847], "normal_n2_p1": [0.05545641854405403, 0.816745936870575, 0.03816542029380798, 0.026347719132900238, 0.012017282657325268, 0.01654955744743347, 0.010811285115778446], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018232623115181923, 0.013132045976817608, 0.012625545263290405, 0.03377131000161171, 0.7931625843048096, 0.0879577100276947, 0.01120525412261486], "normal_n3_p1": [0.04533372074365616, 0.03091365285217762, 0.04171931743621826, 0.30756866931915283, 0.04735633358359337, 0.1549479365348816, 0.1293163299560547], "normal_n3_p2": [0.01426031906157732, 0.013073574751615524, 0.012470663525164127, 0.019593747332692146, 0.03098837286233902, 0.8826776146888733, 0.012296599335968494], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.12244591116905212, 0.14191775023937225, 0.08740992099046707, 0.07438959926366806, 0.03206629306077957, 0.03597314655780792, 0.3029913306236267], "reduce_n2_p1": [0.011719029396772385, 0.011238149367272854, 0.8067716956138611, 0.020899368450045586, 0.0856424942612648, 0.018780125305056572, 0.029461219906806946], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005917389411479235, 0.006892892997711897, 0.011963149532675743, 0.005844017956405878, 0.9418774247169495, 0.008718911558389664, 0.010195142589509487], "reduce_n3_p1": [0.7053622007369995, 0.11481266468763351, 0.034034788608551025, 0.01938440650701523, 0.03275395557284355, 0.02222306840121746, 0.026755783706903458], "reduce_n3_p2": [0.008349851705133915, 0.008522739633917809, 0.01813826896250248, 0.028711849823594093, 0.0514184907078743, 0.027680469676852226, 0.8118127584457397], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.05384920537471771, 0.8369095325469971, 0.019177701324224472, 0.01130936574190855, 0.017594419419765472, 0.022284656763076782, 0.021122168749570847], "normal_n2_p1": [0.05545641854405403, 0.816745936870575, 0.03816542029380798, 0.026347719132900238, 0.012017282657325268, 0.01654955744743347, 0.010811285115778446], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018232623115181923, 0.013132045976817608, 0.012625545263290405, 0.03377131000161171, 0.7931625843048096, 0.0879577100276947, 0.01120525412261486], "normal_n3_p1": [0.04533372074365616, 0.03091365285217762, 0.04171931743621826, 0.30756866931915283, 0.04735633358359337, 0.1549479365348816, 0.1293163299560547], "normal_n3_p2": [0.01426031906157732, 0.013073574751615524, 0.012470663525164127, 0.019593747332692146, 0.03098837286233902, 0.8826776146888733, 0.012296599335968494], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.12244591116905212, 0.14191775023937225, 0.08740992099046707, 0.07438959926366806, 0.03206629306077957, 0.03597314655780792, 0.3029913306236267], "reduce_n2_p1": [0.011719029396772385, 0.011238149367272854, 0.8067716956138611, 0.020899368450045586, 0.0856424942612648, 0.018780125305056572, 0.029461219906806946], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005917389411479235, 0.006892892997711897, 0.011963149532675743, 0.005844017956405878, 0.9418774247169495, 0.008718911558389664, 0.010195142589509487], "reduce_n3_p1": [0.7053622007369995, 0.11481266468763351, 0.034034788608551025, 0.01938440650701523, 0.03275395557284355, 0.02222306840121746, 0.026755783706903458], "reduce_n3_p2": [0.008349851705133915, 0.008522739633917809, 0.01813826896250248, 0.028711849823594093, 0.0514184907078743, 0.027680469676852226, 0.8118127584457397], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1311590075492859, 0.6779415011405945, 0.037296026945114136, 0.02595886029303074, 0.027280477806925774, 0.0331806018948555, 0.03275850787758827], "normal_n2_p1": [0.0965791717171669, 0.775627076625824, 0.04304492473602295, 0.01596640795469284, 0.016188226640224457, 0.015751903876662254, 0.012620708905160427], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.017540382221341133, 0.01271356362849474, 0.01605639047920704, 0.04480039328336716, 0.7678323984146118, 0.09145190566778183, 0.011977752670645714], "normal_n3_p1": [0.026881130412220955, 0.017597472295165062, 0.02220318466424942, 0.10959003120660782, 0.042041242122650146, 0.4854860305786133, 0.09697204828262329], "normal_n3_p2": [0.008053219877183437, 0.007113492116332054, 0.006482772994786501, 0.015316798351705074, 0.010887966491281986, 0.9306570887565613, 0.010518605820834637], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08045242726802826, 0.1355127990245819, 0.08178279548883438, 0.10332220047712326, 0.03478916734457016, 0.06209755688905716, 0.15367144346237183], "reduce_n2_p1": [0.0026164096780121326, 0.0025153057649731636, 0.9774138927459717, 0.00453994469717145, 0.0034710310865193605, 0.0034311956260353327, 0.0027055356185883284], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.007786576636135578, 0.008385853841900826, 0.017202354967594147, 0.00894848071038723, 0.9161937832832336, 0.015071062371134758, 0.013661463744938374], "reduce_n3_p1": [0.8396078944206238, 0.060738157480955124, 0.018080776557326317, 0.0070594134740531445, 0.022894373163580894, 0.011661798693239689, 0.014655600301921368], "reduce_n3_p2": [0.002472542691975832, 0.0024622278288006783, 0.0054444181732833385, 0.014208627864718437, 0.019669074565172195, 0.01721189357340336, 0.9212698340415955], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1311590075492859, 0.6779415011405945, 0.037296026945114136, 0.02595886029303074, 0.027280477806925774, 0.0331806018948555, 0.03275850787758827], "normal_n2_p1": [0.0965791717171669, 0.775627076625824, 0.04304492473602295, 0.01596640795469284, 0.016188226640224457, 0.015751903876662254, 0.012620708905160427], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.017540382221341133, 0.01271356362849474, 0.01605639047920704, 0.04480039328336716, 0.7678323984146118, 0.09145190566778183, 0.011977752670645714], "normal_n3_p1": [0.026881130412220955, 0.017597472295165062, 0.02220318466424942, 0.10959003120660782, 0.042041242122650146, 0.4854860305786133, 0.09697204828262329], "normal_n3_p2": [0.008053219877183437, 0.007113492116332054, 0.006482772994786501, 0.015316798351705074, 0.010887966491281986, 0.9306570887565613, 0.010518605820834637], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08045242726802826, 0.1355127990245819, 0.08178279548883438, 0.10332220047712326, 0.03478916734457016, 0.06209755688905716, 0.15367144346237183], "reduce_n2_p1": [0.0026164096780121326, 0.0025153057649731636, 0.9774138927459717, 0.00453994469717145, 0.0034710310865193605, 0.0034311956260353327, 0.0027055356185883284], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.007786576636135578, 0.008385853841900826, 0.017202354967594147, 0.00894848071038723, 0.9161937832832336, 0.015071062371134758, 0.013661463744938374], "reduce_n3_p1": [0.8396078944206238, 0.060738157480955124, 0.018080776557326317, 0.0070594134740531445, 0.022894373163580894, 0.011661798693239689, 0.014655600301921368], "reduce_n3_p2": [0.002472542691975832, 0.0024622278288006783, 0.0054444181732833385, 0.014208627864718437, 0.019669074565172195, 0.01721189357340336, 0.9212698340415955], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.36664578318595886, 0.33487892150878906, 0.07768572866916656, 0.03529815003275871, 0.04332069307565689, 0.04680285230278969, 0.03906454145908356], "normal_n2_p1": [0.3236001431941986, 0.4795849323272705, 0.0629069060087204, 0.022571058943867683, 0.030143791809678078, 0.022311529144644737, 0.0206142608076334], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.07151782512664795, 0.047583527863025665, 0.06730744242668152, 0.12350567430257797, 0.27280181646347046, 0.23539958894252777, 0.03837612271308899], "normal_n3_p1": [0.006576200015842915, 0.0041679879650473595, 0.004931068979203701, 0.014122245833277702, 0.007618427276611328, 0.9353799223899841, 0.017346138134598732], "normal_n3_p2": [0.0156124671921134, 0.013173685409128666, 0.01171304751187563, 0.02539309486746788, 0.011104929260909557, 0.8894078731536865, 0.017109090462327003], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1782221645116806, 0.36539167165756226, 0.1175641342997551, 0.14083293080329895, 0.021124649792909622, 0.06287195533514023, 0.045222289860248566], "reduce_n2_p1": [0.0025162596721202135, 0.0024217357859015465, 0.9828500151634216, 0.00374540314078331, 0.0012653943849727511, 0.0026033404283225536, 0.0015393886715173721], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02009447291493416, 0.017336705699563026, 0.03402332589030266, 0.020220652222633362, 0.81736159324646, 0.037308789789676666, 0.025327501818537712], "reduce_n3_p1": [0.8840275406837463, 0.038439154624938965, 0.012061112560331821, 0.006617891136556864, 0.017880085855722427, 0.010899201966822147, 0.01086155604571104], "reduce_n3_p2": [0.0021249440032988787, 0.002101469086483121, 0.004123617894947529, 0.013211258687078953, 0.01317563746124506, 0.015533916652202606, 0.9371769428253174], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.36664578318595886, 0.33487892150878906, 0.07768572866916656, 0.03529815003275871, 0.04332069307565689, 0.04680285230278969, 0.03906454145908356], "normal_n2_p1": [0.3236001431941986, 0.4795849323272705, 0.0629069060087204, 0.022571058943867683, 0.030143791809678078, 0.022311529144644737, 0.0206142608076334], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.07151782512664795, 0.047583527863025665, 0.06730744242668152, 0.12350567430257797, 0.27280181646347046, 0.23539958894252777, 0.03837612271308899], "normal_n3_p1": [0.006576200015842915, 0.0041679879650473595, 0.004931068979203701, 0.014122245833277702, 0.007618427276611328, 0.9353799223899841, 0.017346138134598732], "normal_n3_p2": [0.0156124671921134, 0.013173685409128666, 0.01171304751187563, 0.02539309486746788, 0.011104929260909557, 0.8894078731536865, 0.017109090462327003], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1782221645116806, 0.36539167165756226, 0.1175641342997551, 0.14083293080329895, 0.021124649792909622, 0.06287195533514023, 0.045222289860248566], "reduce_n2_p1": [0.0025162596721202135, 0.0024217357859015465, 0.9828500151634216, 0.00374540314078331, 0.0012653943849727511, 0.0026033404283225536, 0.0015393886715173721], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02009447291493416, 0.017336705699563026, 0.03402332589030266, 0.020220652222633362, 0.81736159324646, 0.037308789789676666, 0.025327501818537712], "reduce_n3_p1": [0.8840275406837463, 0.038439154624938965, 0.012061112560331821, 0.006617891136556864, 0.017880085855722427, 0.010899201966822147, 0.01086155604571104], "reduce_n3_p2": [0.0021249440032988787, 0.002101469086483121, 0.004123617894947529, 0.013211258687078953, 0.01317563746124506, 0.015533916652202606, 0.9371769428253174], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.011705693788826466, 0.5478558540344238, 0.29104775190353394, 0.013149561360478401, 0.03346726670861244, 0.027504947036504745, 0.04143678396940231], "normal_n2_p1": [0.11474436521530151, 0.6483796238899231, 0.10217538475990295, 0.0276158656924963, 0.02969108521938324, 0.018985988572239876, 0.02066895365715027], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.041104141622781754, 0.03783046826720238, 0.038539204746484756, 0.40031296014785767, 0.3139476478099823, 0.09119577705860138, 0.038919493556022644], "normal_n3_p1": [0.008754507638514042, 0.006264801602810621, 0.007692063692957163, 0.013854887336492538, 0.009269786067306995, 0.9286181330680847, 0.01889718696475029], "normal_n3_p2": [0.01807541213929653, 0.016738608479499817, 0.014406503178179264, 0.02672193944454193, 0.011378812603652477, 0.8709392547607422, 0.023335887119174004], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1473817080259323, 0.4700348675251007, 0.11729082465171814, 0.17626015841960907, 0.014059995301067829, 0.03840327262878418, 0.01912808232009411], "reduce_n2_p1": [0.005061994772404432, 0.004887263290584087, 0.9692802429199219, 0.006157421972602606, 0.001626199809834361, 0.004368209280073643, 0.002409466076642275], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03071858175098896, 0.021371454000473022, 0.03919924050569534, 0.02533734403550625, 0.7832909226417542, 0.037087634205818176, 0.02953261323273182], "reduce_n3_p1": [0.7342966794967651, 0.06622455269098282, 0.030729297548532486, 0.01883063092827797, 0.0491008460521698, 0.032606348395347595, 0.02474777027964592], "reduce_n3_p2": [0.0032803101930767298, 0.0032549253664910793, 0.005342483054846525, 0.017503252252936363, 0.013172043487429619, 0.017585547640919685, 0.9266758561134338], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.011705693788826466, 0.5478558540344238, 0.29104775190353394, 0.013149561360478401, 0.03346726670861244, 0.027504947036504745, 0.04143678396940231], "normal_n2_p1": [0.11474436521530151, 0.6483796238899231, 0.10217538475990295, 0.0276158656924963, 0.02969108521938324, 0.018985988572239876, 0.02066895365715027], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.041104141622781754, 0.03783046826720238, 0.038539204746484756, 0.40031296014785767, 0.3139476478099823, 0.09119577705860138, 0.038919493556022644], "normal_n3_p1": [0.008754507638514042, 0.006264801602810621, 0.007692063692957163, 0.013854887336492538, 0.009269786067306995, 0.9286181330680847, 0.01889718696475029], "normal_n3_p2": [0.01807541213929653, 0.016738608479499817, 0.014406503178179264, 0.02672193944454193, 0.011378812603652477, 0.8709392547607422, 0.023335887119174004], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1473817080259323, 0.4700348675251007, 0.11729082465171814, 0.17626015841960907, 0.014059995301067829, 0.03840327262878418, 0.01912808232009411], "reduce_n2_p1": [0.005061994772404432, 0.004887263290584087, 0.9692802429199219, 0.006157421972602606, 0.001626199809834361, 0.004368209280073643, 0.002409466076642275], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03071858175098896, 0.021371454000473022, 0.03919924050569534, 0.02533734403550625, 0.7832909226417542, 0.037087634205818176, 0.02953261323273182], "reduce_n3_p1": [0.7342966794967651, 0.06622455269098282, 0.030729297548532486, 0.01883063092827797, 0.0491008460521698, 0.032606348395347595, 0.02474777027964592], "reduce_n3_p2": [0.0032803101930767298, 0.0032549253664910793, 0.005342483054846525, 0.017503252252936363, 0.013172043487429619, 0.017585547640919685, 0.9266758561134338], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0016686912858858705, 0.36776626110076904, 0.5368995070457458, 0.007542758714407682, 0.021391354501247406, 0.013178203254938126, 0.03672945871949196], "normal_n2_p1": [0.05640975013375282, 0.7293509840965271, 0.06532631069421768, 0.03649463132023811, 0.029757089912891388, 0.021196795627474785, 0.02399185672402382], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0227432232350111, 0.02620547078549862, 0.022523194551467896, 0.5746129751205444, 0.28148993849754333, 0.03684462606906891, 0.020602140575647354], "normal_n3_p1": [0.03360634297132492, 0.029814481735229492, 0.04008582606911659, 0.04677159711718559, 0.03261207416653633, 0.7365387678146362, 0.061117831617593765], "normal_n3_p2": [0.02740681916475296, 0.025586361065506935, 0.02220892533659935, 0.014701547101140022, 0.012428686954081059, 0.8499734401702881, 0.02908897213637829], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08540868759155273, 0.3216412663459778, 0.1377631574869156, 0.3779583275318146, 0.01696646958589554, 0.029093598946928978, 0.017948420718312263], "reduce_n2_p1": [0.01146076712757349, 0.010882045142352581, 0.9342429637908936, 0.011544736102223396, 0.0034024231135845184, 0.009054596535861492, 0.005205474328249693], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04737607389688492, 0.030257372185587883, 0.04188917949795723, 0.042802195996046066, 0.697418212890625, 0.045775413513183594, 0.04993981122970581], "reduce_n3_p1": [0.6607702970504761, 0.07470965385437012, 0.052420832216739655, 0.028758274391293526, 0.05239188298583031, 0.0518905371427536, 0.031870439648628235], "reduce_n3_p2": [0.009051707573235035, 0.009169449098408222, 0.012377929873764515, 0.03625103831291199, 0.024164801463484764, 0.03359511122107506, 0.8511532545089722], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0016686912858858705, 0.36776626110076904, 0.5368995070457458, 0.007542758714407682, 0.021391354501247406, 0.013178203254938126, 0.03672945871949196], "normal_n2_p1": [0.05640975013375282, 0.7293509840965271, 0.06532631069421768, 0.03649463132023811, 0.029757089912891388, 0.021196795627474785, 0.02399185672402382], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0227432232350111, 0.02620547078549862, 0.022523194551467896, 0.5746129751205444, 0.28148993849754333, 0.03684462606906891, 0.020602140575647354], "normal_n3_p1": [0.03360634297132492, 0.029814481735229492, 0.04008582606911659, 0.04677159711718559, 0.03261207416653633, 0.7365387678146362, 0.061117831617593765], "normal_n3_p2": [0.02740681916475296, 0.025586361065506935, 0.02220892533659935, 0.014701547101140022, 0.012428686954081059, 0.8499734401702881, 0.02908897213637829], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08540868759155273, 0.3216412663459778, 0.1377631574869156, 0.3779583275318146, 0.01696646958589554, 0.029093598946928978, 0.017948420718312263], "reduce_n2_p1": [0.01146076712757349, 0.010882045142352581, 0.9342429637908936, 0.011544736102223396, 0.0034024231135845184, 0.009054596535861492, 0.005205474328249693], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04737607389688492, 0.030257372185587883, 0.04188917949795723, 0.042802195996046066, 0.697418212890625, 0.045775413513183594, 0.04993981122970581], "reduce_n3_p1": [0.6607702970504761, 0.07470965385437012, 0.052420832216739655, 0.028758274391293526, 0.05239188298583031, 0.0518905371427536, 0.031870439648628235], "reduce_n3_p2": [0.009051707573235035, 0.009169449098408222, 0.012377929873764515, 0.03625103831291199, 0.024164801463484764, 0.03359511122107506, 0.8511532545089722], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0018406525487080216, 0.671030580997467, 0.10396347939968109, 0.016193147748708725, 0.058562491089105606, 0.021594658493995667, 0.10151257365942001], "normal_n2_p1": [0.03342718258500099, 0.7395557165145874, 0.04738396406173706, 0.06317762285470963, 0.030611887574195862, 0.025542642921209335, 0.02321547642350197], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009850623086094856, 0.011466930620372295, 0.01025201752781868, 0.704940915107727, 0.23177073895931244, 0.014295730739831924, 0.010008476674556732], "normal_n3_p1": [0.1056034192442894, 0.13448578119277954, 0.24946796894073486, 0.15876714885234833, 0.09116201847791672, 0.10927299410104752, 0.09852837771177292], "normal_n3_p2": [0.03117998316884041, 0.03164318576455116, 0.028004849329590797, 0.01295512542128563, 0.016321197152137756, 0.835140585899353, 0.02638240158557892], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03148875758051872, 0.07074255496263504, 0.14065931737422943, 0.6769842505455017, 0.021896647289395332, 0.030393369495868683, 0.015727045014500618], "reduce_n2_p1": [0.029907308518886566, 0.02858763560652733, 0.8352964520454407, 0.025587523356080055, 0.0093492167070508, 0.020483672618865967, 0.013745277188718319], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.08072036504745483, 0.044784266501665115, 0.05138426646590233, 0.08883751183748245, 0.5096322298049927, 0.06661158800125122, 0.08999417722225189], "reduce_n3_p1": [0.8485463857650757, 0.03608963266015053, 0.03984353318810463, 0.00935590174049139, 0.023095665499567986, 0.01966976188123226, 0.013710478320717812], "reduce_n3_p2": [0.03514035418629646, 0.036497198045253754, 0.0418090783059597, 0.10164188593626022, 0.06789113581180573, 0.08157879114151001, 0.5682803392410278], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0018406525487080216, 0.671030580997467, 0.10396347939968109, 0.016193147748708725, 0.058562491089105606, 0.021594658493995667, 0.10151257365942001], "normal_n2_p1": [0.03342718258500099, 0.7395557165145874, 0.04738396406173706, 0.06317762285470963, 0.030611887574195862, 0.025542642921209335, 0.02321547642350197], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009850623086094856, 0.011466930620372295, 0.01025201752781868, 0.704940915107727, 0.23177073895931244, 0.014295730739831924, 0.010008476674556732], "normal_n3_p1": [0.1056034192442894, 0.13448578119277954, 0.24946796894073486, 0.15876714885234833, 0.09116201847791672, 0.10927299410104752, 0.09852837771177292], "normal_n3_p2": [0.03117998316884041, 0.03164318576455116, 0.028004849329590797, 0.01295512542128563, 0.016321197152137756, 0.835140585899353, 0.02638240158557892], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03148875758051872, 0.07074255496263504, 0.14065931737422943, 0.6769842505455017, 0.021896647289395332, 0.030393369495868683, 0.015727045014500618], "reduce_n2_p1": [0.029907308518886566, 0.02858763560652733, 0.8352964520454407, 0.025587523356080055, 0.0093492167070508, 0.020483672618865967, 0.013745277188718319], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.08072036504745483, 0.044784266501665115, 0.05138426646590233, 0.08883751183748245, 0.5096322298049927, 0.06661158800125122, 0.08999417722225189], "reduce_n3_p1": [0.8485463857650757, 0.03608963266015053, 0.03984353318810463, 0.00935590174049139, 0.023095665499567986, 0.01966976188123226, 0.013710478320717812], "reduce_n3_p2": [0.03514035418629646, 0.036497198045253754, 0.0418090783059597, 0.10164188593626022, 0.06789113581180573, 0.08157879114151001, 0.5682803392410278], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0017316665034741163, 0.7962545156478882, 0.0188575629144907, 0.014763104729354382, 0.05344904586672783, 0.015986548736691475, 0.08145593106746674], "normal_n2_p1": [0.03794665262103081, 0.5867140293121338, 0.043560463935136795, 0.11059615015983582, 0.05375033989548683, 0.05419771745800972, 0.04299677535891533], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.013975062407553196, 0.01760924980044365, 0.01545867882668972, 0.6916266083717346, 0.22069771587848663, 0.015266193076968193, 0.012224005535244942], "normal_n3_p1": [0.09400028735399246, 0.07780338823795319, 0.16083146631717682, 0.3028883934020996, 0.1083252876996994, 0.052786849439144135, 0.12732447683811188], "normal_n3_p2": [0.0509326197206974, 0.05019783228635788, 0.06089194864034653, 0.020506972447037697, 0.02853274717926979, 0.7142843008041382, 0.04572851583361626], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.015620945952832699, 0.019489329308271408, 0.04923582822084427, 0.8555533289909363, 0.01620299555361271, 0.021495411172509193, 0.012416291050612926], "reduce_n2_p1": [0.04270070418715477, 0.04604378715157509, 0.7569467425346375, 0.02835279330611229, 0.016284791752696037, 0.03224142640829086, 0.023037085309624672], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.1620689481496811, 0.053161587566137314, 0.07863001525402069, 0.023214757442474365, 0.46009957790374756, 0.06416894495487213, 0.10995856672525406], "reduce_n3_p1": [0.8949854969978333, 0.02296062372624874, 0.025852303951978683, 0.0074674892239272594, 0.01968206837773323, 0.011663367971777916, 0.010231895372271538], "reduce_n3_p2": [0.12025702744722366, 0.12014084309339523, 0.08849384635686874, 0.1807200163602829, 0.14143739640712738, 0.20060312747955322, 0.04632268846035004], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0017316665034741163, 0.7962545156478882, 0.0188575629144907, 0.014763104729354382, 0.05344904586672783, 0.015986548736691475, 0.08145593106746674], "normal_n2_p1": [0.03794665262103081, 0.5867140293121338, 0.043560463935136795, 0.11059615015983582, 0.05375033989548683, 0.05419771745800972, 0.04299677535891533], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.013975062407553196, 0.01760924980044365, 0.01545867882668972, 0.6916266083717346, 0.22069771587848663, 0.015266193076968193, 0.012224005535244942], "normal_n3_p1": [0.09400028735399246, 0.07780338823795319, 0.16083146631717682, 0.3028883934020996, 0.1083252876996994, 0.052786849439144135, 0.12732447683811188], "normal_n3_p2": [0.0509326197206974, 0.05019783228635788, 0.06089194864034653, 0.020506972447037697, 0.02853274717926979, 0.7142843008041382, 0.04572851583361626], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.015620945952832699, 0.019489329308271408, 0.04923582822084427, 0.8555533289909363, 0.01620299555361271, 0.021495411172509193, 0.012416291050612926], "reduce_n2_p1": [0.04270070418715477, 0.04604378715157509, 0.7569467425346375, 0.02835279330611229, 0.016284791752696037, 0.03224142640829086, 0.023037085309624672], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.1620689481496811, 0.053161587566137314, 0.07863001525402069, 0.023214757442474365, 0.46009957790374756, 0.06416894495487213, 0.10995856672525406], "reduce_n3_p1": [0.8949854969978333, 0.02296062372624874, 0.025852303951978683, 0.0074674892239272594, 0.01968206837773323, 0.011663367971777916, 0.010231895372271538], "reduce_n3_p2": [0.12025702744722366, 0.12014084309339523, 0.08849384635686874, 0.1807200163602829, 0.14143739640712738, 0.20060312747955322, 0.04632268846035004], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.003055458189919591, 0.7271541357040405, 0.011051544919610023, 0.02092743292450905, 0.13111746311187744, 0.02284395694732666, 0.06016220897436142], "normal_n2_p1": [0.030220845714211464, 0.7282221913337708, 0.032162584364414215, 0.06331539154052734, 0.04261259362101555, 0.03637995570898056, 0.02865244820713997], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.020225031301379204, 0.024399833753705025, 0.022394051775336266, 0.6984304189682007, 0.17762534320354462, 0.017311085015535355, 0.016289176419377327], "normal_n3_p1": [0.07519010454416275, 0.05501754954457283, 0.08423998206853867, 0.4518814980983734, 0.07930926233530045, 0.04527624323964119, 0.09963582456111908], "normal_n3_p2": [0.03188677877187729, 0.03917354345321655, 0.06418707966804504, 0.03458360955119133, 0.04283209145069122, 0.7042763233184814, 0.04519810527563095], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03656020388007164, 0.028666090220212936, 0.08979734778404236, 0.6963971257209778, 0.04528675600886345, 0.04810841754078865, 0.027768578380346298], "reduce_n2_p1": [0.02749088779091835, 0.02337544411420822, 0.8576526641845703, 0.017638124525547028, 0.012383089400827885, 0.01954697258770466, 0.019274404272437096], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04629245400428772, 0.03799501433968544, 0.0551491305232048, 0.01048711035400629, 0.6904141902923584, 0.019735433161258698, 0.10856714099645615], "reduce_n3_p1": [0.9008246660232544, 0.020625459030270576, 0.021096015349030495, 0.009157302789390087, 0.01764761656522751, 0.010497022420167923, 0.010564913041889668], "reduce_n3_p2": [0.11613807082176208, 0.16517962515354156, 0.16110621392726898, 0.21857282519340515, 0.1368437260389328, 0.09106667339801788, 0.011418042704463005], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.003055458189919591, 0.7271541357040405, 0.011051544919610023, 0.02092743292450905, 0.13111746311187744, 0.02284395694732666, 0.06016220897436142], "normal_n2_p1": [0.030220845714211464, 0.7282221913337708, 0.032162584364414215, 0.06331539154052734, 0.04261259362101555, 0.03637995570898056, 0.02865244820713997], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.020225031301379204, 0.024399833753705025, 0.022394051775336266, 0.6984304189682007, 0.17762534320354462, 0.017311085015535355, 0.016289176419377327], "normal_n3_p1": [0.07519010454416275, 0.05501754954457283, 0.08423998206853867, 0.4518814980983734, 0.07930926233530045, 0.04527624323964119, 0.09963582456111908], "normal_n3_p2": [0.03188677877187729, 0.03917354345321655, 0.06418707966804504, 0.03458360955119133, 0.04283209145069122, 0.7042763233184814, 0.04519810527563095], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03656020388007164, 0.028666090220212936, 0.08979734778404236, 0.6963971257209778, 0.04528675600886345, 0.04810841754078865, 0.027768578380346298], "reduce_n2_p1": [0.02749088779091835, 0.02337544411420822, 0.8576526641845703, 0.017638124525547028, 0.012383089400827885, 0.01954697258770466, 0.019274404272437096], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04629245400428772, 0.03799501433968544, 0.0551491305232048, 0.01048711035400629, 0.6904141902923584, 0.019735433161258698, 0.10856714099645615], "reduce_n3_p1": [0.9008246660232544, 0.020625459030270576, 0.021096015349030495, 0.009157302789390087, 0.01764761656522751, 0.010497022420167923, 0.010564913041889668], "reduce_n3_p2": [0.11613807082176208, 0.16517962515354156, 0.16110621392726898, 0.21857282519340515, 0.1368437260389328, 0.09106667339801788, 0.011418042704463005], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0043366472236812115, 0.26336970925331116, 0.008440333418548107, 0.023817727342247963, 0.6230284571647644, 0.023021526634693146, 0.025518128648400307], "normal_n2_p1": [0.03466734290122986, 0.7663790583610535, 0.03234580159187317, 0.03914966806769371, 0.03829444572329521, 0.032220952212810516, 0.026350487023591995], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.015029538422822952, 0.014379576779901981, 0.015085375867784023, 0.8649075031280518, 0.045556407421827316, 0.012883021496236324, 0.013602382503449917], "normal_n3_p1": [0.04848857596516609, 0.03105856105685234, 0.028887895867228508, 0.6003661155700684, 0.06643666326999664, 0.04176145792007446, 0.07583659142255783], "normal_n3_p2": [0.02581428363919258, 0.030292188748717308, 0.040779318660497665, 0.03888114541769028, 0.0808139219880104, 0.6472916603088379, 0.07644619792699814], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03461725264787674, 0.024649282917380333, 0.08583491295576096, 0.6681239008903503, 0.049777086824178696, 0.06967467069625854, 0.033755961805582047], "reduce_n2_p1": [0.06497399508953094, 0.043967705219984055, 0.7319390177726746, 0.03219446539878845, 0.02405068837106228, 0.03369380906224251, 0.033411670476198196], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02581091783940792, 0.03901055455207825, 0.07692177593708038, 0.01300964504480362, 0.5495905876159668, 0.0209206510335207, 0.2285967767238617], "reduce_n3_p1": [0.8562725782394409, 0.02690282091498375, 0.025555044412612915, 0.01598738692700863, 0.023918384686112404, 0.015358498319983482, 0.017632441595196724], "reduce_n3_p2": [0.10181919485330582, 0.12252272665500641, 0.17594698071479797, 0.20731917023658752, 0.22409944236278534, 0.06559599190950394, 0.007651200518012047], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0043366472236812115, 0.26336970925331116, 0.008440333418548107, 0.023817727342247963, 0.6230284571647644, 0.023021526634693146, 0.025518128648400307], "normal_n2_p1": [0.03466734290122986, 0.7663790583610535, 0.03234580159187317, 0.03914966806769371, 0.03829444572329521, 0.032220952212810516, 0.026350487023591995], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.015029538422822952, 0.014379576779901981, 0.015085375867784023, 0.8649075031280518, 0.045556407421827316, 0.012883021496236324, 0.013602382503449917], "normal_n3_p1": [0.04848857596516609, 0.03105856105685234, 0.028887895867228508, 0.6003661155700684, 0.06643666326999664, 0.04176145792007446, 0.07583659142255783], "normal_n3_p2": [0.02581428363919258, 0.030292188748717308, 0.040779318660497665, 0.03888114541769028, 0.0808139219880104, 0.6472916603088379, 0.07644619792699814], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03461725264787674, 0.024649282917380333, 0.08583491295576096, 0.6681239008903503, 0.049777086824178696, 0.06967467069625854, 0.033755961805582047], "reduce_n2_p1": [0.06497399508953094, 0.043967705219984055, 0.7319390177726746, 0.03219446539878845, 0.02405068837106228, 0.03369380906224251, 0.033411670476198196], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02581091783940792, 0.03901055455207825, 0.07692177593708038, 0.01300964504480362, 0.5495905876159668, 0.0209206510335207, 0.2285967767238617], "reduce_n3_p1": [0.8562725782394409, 0.02690282091498375, 0.025555044412612915, 0.01598738692700863, 0.023918384686112404, 0.015358498319983482, 0.017632441595196724], "reduce_n3_p2": [0.10181919485330582, 0.12252272665500641, 0.17594698071479797, 0.20731917023658752, 0.22409944236278534, 0.06559599190950394, 0.007651200518012047], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.008729258552193642, 0.7880409955978394, 0.013251027092337608, 0.029180482029914856, 0.07767613232135773, 0.03249503672122955, 0.01933830790221691], "normal_n2_p1": [0.051900677382946014, 0.6940085887908936, 0.0434064157307148, 0.04027188941836357, 0.06676620990037918, 0.03628788888454437, 0.030482454225420952], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.016170697286725044, 0.013323603197932243, 0.014483070001006126, 0.8913567066192627, 0.02214762195944786, 0.012404103763401508, 0.012806703336536884], "normal_n3_p1": [0.016119662672281265, 0.009558425284922123, 0.007412905339151621, 0.8497970104217529, 0.021992072463035583, 0.024558665230870247, 0.024642597883939743], "normal_n3_p2": [0.010714138858020306, 0.009842279367148876, 0.008310091681778431, 0.02096959576010704, 0.047259069979190826, 0.837693452835083, 0.03260812163352966], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08084103465080261, 0.04444458708167076, 0.2719562351703644, 0.216207817196846, 0.10897006094455719, 0.14946742355823517, 0.06105222553014755], "reduce_n2_p1": [0.27176421880722046, 0.11251702904701233, 0.32431885600090027, 0.05883460491895676, 0.04521472379565239, 0.06273107975721359, 0.0651695653796196], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03584573417901993, 0.0667283684015274, 0.06587155908346176, 0.022616282105445862, 0.4754616618156433, 0.03707915171980858, 0.22595074772834778], "reduce_n3_p1": [0.8355541229248047, 0.031489297747612, 0.020649541169404984, 0.022564392536878586, 0.022774603217840195, 0.01794072985649109, 0.023449508473277092], "reduce_n3_p2": [0.03119577094912529, 0.04216400533914566, 0.0567842535674572, 0.2645041346549988, 0.4710937440395355, 0.0395364835858345, 0.006553878542035818], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.008729258552193642, 0.7880409955978394, 0.013251027092337608, 0.029180482029914856, 0.07767613232135773, 0.03249503672122955, 0.01933830790221691], "normal_n2_p1": [0.051900677382946014, 0.6940085887908936, 0.0434064157307148, 0.04027188941836357, 0.06676620990037918, 0.03628788888454437, 0.030482454225420952], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.016170697286725044, 0.013323603197932243, 0.014483070001006126, 0.8913567066192627, 0.02214762195944786, 0.012404103763401508, 0.012806703336536884], "normal_n3_p1": [0.016119662672281265, 0.009558425284922123, 0.007412905339151621, 0.8497970104217529, 0.021992072463035583, 0.024558665230870247, 0.024642597883939743], "normal_n3_p2": [0.010714138858020306, 0.009842279367148876, 0.008310091681778431, 0.02096959576010704, 0.047259069979190826, 0.837693452835083, 0.03260812163352966], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08084103465080261, 0.04444458708167076, 0.2719562351703644, 0.216207817196846, 0.10897006094455719, 0.14946742355823517, 0.06105222553014755], "reduce_n2_p1": [0.27176421880722046, 0.11251702904701233, 0.32431885600090027, 0.05883460491895676, 0.04521472379565239, 0.06273107975721359, 0.0651695653796196], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03584573417901993, 0.0667283684015274, 0.06587155908346176, 0.022616282105445862, 0.4754616618156433, 0.03707915171980858, 0.22595074772834778], "reduce_n3_p1": [0.8355541229248047, 0.031489297747612, 0.020649541169404984, 0.022564392536878586, 0.022774603217840195, 0.01794072985649109, 0.023449508473277092], "reduce_n3_p2": [0.03119577094912529, 0.04216400533914566, 0.0567842535674572, 0.2645041346549988, 0.4710937440395355, 0.0395364835858345, 0.006553878542035818], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.01942998729646206, 0.6370162963867188, 0.026924513280391693, 0.07812193036079407, 0.07861887663602829, 0.06699604541063309, 0.02799990028142929], "normal_n2_p1": [0.05399711802601814, 0.6757165789604187, 0.04658829793334007, 0.028529686853289604, 0.08695961534976959, 0.04573031887412071, 0.02795988880097866], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02979944832623005, 0.021684421226382256, 0.024278242141008377, 0.8287690281867981, 0.02439342625439167, 0.01877535879611969, 0.020177824422717094], "normal_n3_p1": [0.016227873042225838, 0.010236903093755245, 0.008566558361053467, 0.7986099720001221, 0.02260098047554493, 0.0387321412563324, 0.029513979330658913], "normal_n3_p2": [0.011160249821841717, 0.00928060058504343, 0.006536419037729502, 0.02635781466960907, 0.05967716500163078, 0.8099205493927002, 0.03654670715332031], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.20403660833835602, 0.03863336145877838, 0.010872873477637768, 0.469233900308609, 0.11572568863630295, 0.07082738727331161, 0.04816591739654541], "reduce_n2_p1": [0.6092398166656494, 0.056758321821689606, 0.2351371943950653, 0.031010165810585022, 0.007630746345967054, 0.025233222171664238, 0.010710177943110466], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014663312584161758, 0.02617541141808033, 0.027407733723521233, 0.011835367418825626, 0.7710041403770447, 0.015549168922007084, 0.11545540392398834], "reduce_n3_p1": [0.40005064010620117, 0.07397311925888062, 0.05941808596253395, 0.07425661385059357, 0.06141341105103493, 0.07855076342821121, 0.08241879940032959], "reduce_n3_p2": [0.005730351898819208, 0.0083895493298769, 0.012529788538813591, 0.7796635031700134, 0.14888781309127808, 0.01054985262453556, 0.0042405701242387295], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.01942998729646206, 0.6370162963867188, 0.026924513280391693, 0.07812193036079407, 0.07861887663602829, 0.06699604541063309, 0.02799990028142929], "normal_n2_p1": [0.05399711802601814, 0.6757165789604187, 0.04658829793334007, 0.028529686853289604, 0.08695961534976959, 0.04573031887412071, 0.02795988880097866], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02979944832623005, 0.021684421226382256, 0.024278242141008377, 0.8287690281867981, 0.02439342625439167, 0.01877535879611969, 0.020177824422717094], "normal_n3_p1": [0.016227873042225838, 0.010236903093755245, 0.008566558361053467, 0.7986099720001221, 0.02260098047554493, 0.0387321412563324, 0.029513979330658913], "normal_n3_p2": [0.011160249821841717, 0.00928060058504343, 0.006536419037729502, 0.02635781466960907, 0.05967716500163078, 0.8099205493927002, 0.03654670715332031], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.20403660833835602, 0.03863336145877838, 0.010872873477637768, 0.469233900308609, 0.11572568863630295, 0.07082738727331161, 0.04816591739654541], "reduce_n2_p1": [0.6092398166656494, 0.056758321821689606, 0.2351371943950653, 0.031010165810585022, 0.007630746345967054, 0.025233222171664238, 0.010710177943110466], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014663312584161758, 0.02617541141808033, 0.027407733723521233, 0.011835367418825626, 0.7710041403770447, 0.015549168922007084, 0.11545540392398834], "reduce_n3_p1": [0.40005064010620117, 0.07397311925888062, 0.05941808596253395, 0.07425661385059357, 0.06141341105103493, 0.07855076342821121, 0.08241879940032959], "reduce_n3_p2": [0.005730351898819208, 0.0083895493298769, 0.012529788538813591, 0.7796635031700134, 0.14888781309127808, 0.01054985262453556, 0.0042405701242387295], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.031140368431806564, 0.23498699069023132, 0.038152679800987244, 0.4159107506275177, 0.05192512273788452, 0.06201770156621933, 0.0265052430331707], "normal_n2_p1": [0.05988552048802376, 0.7823053598403931, 0.03768439590930939, 0.01809435896575451, 0.034365493804216385, 0.03398251533508301, 0.013707676902413368], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.023658346384763718, 0.012918524444103241, 0.015264530666172504, 0.8692082762718201, 0.016303647309541702, 0.01842607371509075, 0.018633630126714706], "normal_n3_p1": [0.01898033730685711, 0.01373109221458435, 0.012957597151398659, 0.7533546686172485, 0.026044512167572975, 0.07493115961551666, 0.03749734163284302], "normal_n3_p2": [0.012901974841952324, 0.010473129339516163, 0.007911109365522861, 0.034077856689691544, 0.04784514382481575, 0.8003184199333191, 0.03840593993663788], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.12359586358070374, 0.01566816121339798, 0.0015920901205390692, 0.7472527027130127, 0.04039185121655464, 0.020013557747006416, 0.03228265419602394], "reduce_n2_p1": [0.0036271370481699705, 0.0031350671779364347, 0.971184253692627, 0.007505946327000856, 0.0012434712843969464, 0.0062194145284593105, 0.0016694593941792846], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010656336322426796, 0.01794651709496975, 0.020681599155068398, 0.013405881822109222, 0.6966314911842346, 0.013662006705999374, 0.21563859283924103], "reduce_n3_p1": [0.6731582283973694, 0.0789358913898468, 0.059470366686582565, 0.010274837724864483, 0.037144310772418976, 0.01583658903837204, 0.10582860559225082], "reduce_n3_p2": [0.0038127684965729713, 0.006232747808098793, 0.009537000209093094, 0.08940880000591278, 0.8471789360046387, 0.008682208135724068, 0.005075320601463318], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.031140368431806564, 0.23498699069023132, 0.038152679800987244, 0.4159107506275177, 0.05192512273788452, 0.06201770156621933, 0.0265052430331707], "normal_n2_p1": [0.05988552048802376, 0.7823053598403931, 0.03768439590930939, 0.01809435896575451, 0.034365493804216385, 0.03398251533508301, 0.013707676902413368], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.023658346384763718, 0.012918524444103241, 0.015264530666172504, 0.8692082762718201, 0.016303647309541702, 0.01842607371509075, 0.018633630126714706], "normal_n3_p1": [0.01898033730685711, 0.01373109221458435, 0.012957597151398659, 0.7533546686172485, 0.026044512167572975, 0.07493115961551666, 0.03749734163284302], "normal_n3_p2": [0.012901974841952324, 0.010473129339516163, 0.007911109365522861, 0.034077856689691544, 0.04784514382481575, 0.8003184199333191, 0.03840593993663788], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.12359586358070374, 0.01566816121339798, 0.0015920901205390692, 0.7472527027130127, 0.04039185121655464, 0.020013557747006416, 0.03228265419602394], "reduce_n2_p1": [0.0036271370481699705, 0.0031350671779364347, 0.971184253692627, 0.007505946327000856, 0.0012434712843969464, 0.0062194145284593105, 0.0016694593941792846], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010656336322426796, 0.01794651709496975, 0.020681599155068398, 0.013405881822109222, 0.6966314911842346, 0.013662006705999374, 0.21563859283924103], "reduce_n3_p1": [0.6731582283973694, 0.0789358913898468, 0.059470366686582565, 0.010274837724864483, 0.037144310772418976, 0.01583658903837204, 0.10582860559225082], "reduce_n3_p2": [0.0038127684965729713, 0.006232747808098793, 0.009537000209093094, 0.08940880000591278, 0.8471789360046387, 0.008682208135724068, 0.005075320601463318], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06480895727872849, 0.33852624893188477, 0.0446762889623642, 0.3877864181995392, 0.029393553733825684, 0.07254043221473694, 0.02411266230046749], "normal_n2_p1": [0.1018044501543045, 0.7378855347633362, 0.04056289419531822, 0.02151402272284031, 0.021882876753807068, 0.04257170110940933, 0.014371180906891823], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.024070344865322113, 0.01261125411838293, 0.014229993335902691, 0.8648511171340942, 0.016466163098812103, 0.021020475775003433, 0.022385086864233017], "normal_n3_p1": [0.038524921983480453, 0.040292706340551376, 0.04150617495179176, 0.3949269652366638, 0.05297718942165375, 0.26568982005119324, 0.06760617345571518], "normal_n3_p2": [0.01999303512275219, 0.018573006615042686, 0.014041220769286156, 0.030471744015812874, 0.025297118350863457, 0.8046388030052185, 0.04959487542510033], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.058898091316223145, 0.008205762133002281, 0.0006305405986495316, 0.8778473138809204, 0.01405330654233694, 0.007354858331382275, 0.022158564999699593], "reduce_n2_p1": [0.00023888757277745754, 0.0006935189012438059, 0.9902234673500061, 0.0029813414439558983, 0.0004970006993971765, 0.002451968612149358, 0.0006390604539774358], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01179130095988512, 0.014913825318217278, 0.02136082760989666, 0.0160007793456316, 0.8221588730812073, 0.014822163619101048, 0.08782164007425308], "reduce_n3_p1": [0.6402990221977234, 0.10431735217571259, 0.08507715165615082, 0.006495676934719086, 0.05654221400618553, 0.01227172464132309, 0.08349573612213135], "reduce_n3_p2": [0.001960886176675558, 0.003199021564796567, 0.004582863301038742, 0.010604803450405598, 0.9587803483009338, 0.004206659272313118, 0.0032107706647366285], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06480895727872849, 0.33852624893188477, 0.0446762889623642, 0.3877864181995392, 0.029393553733825684, 0.07254043221473694, 0.02411266230046749], "normal_n2_p1": [0.1018044501543045, 0.7378855347633362, 0.04056289419531822, 0.02151402272284031, 0.021882876753807068, 0.04257170110940933, 0.014371180906891823], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.024070344865322113, 0.01261125411838293, 0.014229993335902691, 0.8648511171340942, 0.016466163098812103, 0.021020475775003433, 0.022385086864233017], "normal_n3_p1": [0.038524921983480453, 0.040292706340551376, 0.04150617495179176, 0.3949269652366638, 0.05297718942165375, 0.26568982005119324, 0.06760617345571518], "normal_n3_p2": [0.01999303512275219, 0.018573006615042686, 0.014041220769286156, 0.030471744015812874, 0.025297118350863457, 0.8046388030052185, 0.04959487542510033], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.058898091316223145, 0.008205762133002281, 0.0006305405986495316, 0.8778473138809204, 0.01405330654233694, 0.007354858331382275, 0.022158564999699593], "reduce_n2_p1": [0.00023888757277745754, 0.0006935189012438059, 0.9902234673500061, 0.0029813414439558983, 0.0004970006993971765, 0.002451968612149358, 0.0006390604539774358], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01179130095988512, 0.014913825318217278, 0.02136082760989666, 0.0160007793456316, 0.8221588730812073, 0.014822163619101048, 0.08782164007425308], "reduce_n3_p1": [0.6402990221977234, 0.10431735217571259, 0.08507715165615082, 0.006495676934719086, 0.05654221400618553, 0.01227172464132309, 0.08349573612213135], "reduce_n3_p2": [0.001960886176675558, 0.003199021564796567, 0.004582863301038742, 0.010604803450405598, 0.9587803483009338, 0.004206659272313118, 0.0032107706647366285], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11641387641429901, 0.5215226411819458, 0.08204343169927597, 0.1497526615858078, 0.01893817074596882, 0.06863578408956528, 0.023791635408997536], "normal_n2_p1": [0.3148958683013916, 0.43918272852897644, 0.0618649460375309, 0.03278809413313866, 0.029608547687530518, 0.07034510374069214, 0.021742602810263634], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01787087321281433, 0.01167509239166975, 0.012319376692175865, 0.8778376579284668, 0.017879754304885864, 0.0228973887860775, 0.02272780053317547], "normal_n3_p1": [0.04129252955317497, 0.05029354244470596, 0.06751096248626709, 0.17814068496227264, 0.06093123182654381, 0.4210807979106903, 0.08182520419359207], "normal_n3_p2": [0.022572560235857964, 0.023104345425963402, 0.020240535959601402, 0.024563059210777283, 0.01695418916642666, 0.8152765035629272, 0.046328529715538025], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05075613409280777, 0.008360272273421288, 0.0006821946008130908, 0.8860027194023132, 0.012005932629108429, 0.006748006213456392, 0.023891746997833252], "reduce_n2_p1": [0.00012508434883784503, 0.0006497505819424987, 0.9900745749473572, 0.0029011983424425125, 0.0006151426350697875, 0.0024438812397420406, 0.0007533523021265864], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014315350912511349, 0.013527997769415379, 0.01997372694313526, 0.017131051048636436, 0.8775293827056885, 0.016282470896840096, 0.028618106618523598], "reduce_n3_p1": [0.4720914959907532, 0.14445917308330536, 0.09519583731889725, 0.011447364464402199, 0.11251609772443771, 0.020586062222719193, 0.12575265765190125], "reduce_n3_p2": [0.002569582313299179, 0.0039546736516058445, 0.00515109533444047, 0.0051909442991018295, 0.961794912815094, 0.00460826838389039, 0.004300879780203104], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11641387641429901, 0.5215226411819458, 0.08204343169927597, 0.1497526615858078, 0.01893817074596882, 0.06863578408956528, 0.023791635408997536], "normal_n2_p1": [0.3148958683013916, 0.43918272852897644, 0.0618649460375309, 0.03278809413313866, 0.029608547687530518, 0.07034510374069214, 0.021742602810263634], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01787087321281433, 0.01167509239166975, 0.012319376692175865, 0.8778376579284668, 0.017879754304885864, 0.0228973887860775, 0.02272780053317547], "normal_n3_p1": [0.04129252955317497, 0.05029354244470596, 0.06751096248626709, 0.17814068496227264, 0.06093123182654381, 0.4210807979106903, 0.08182520419359207], "normal_n3_p2": [0.022572560235857964, 0.023104345425963402, 0.020240535959601402, 0.024563059210777283, 0.01695418916642666, 0.8152765035629272, 0.046328529715538025], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05075613409280777, 0.008360272273421288, 0.0006821946008130908, 0.8860027194023132, 0.012005932629108429, 0.006748006213456392, 0.023891746997833252], "reduce_n2_p1": [0.00012508434883784503, 0.0006497505819424987, 0.9900745749473572, 0.0029011983424425125, 0.0006151426350697875, 0.0024438812397420406, 0.0007533523021265864], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014315350912511349, 0.013527997769415379, 0.01997372694313526, 0.017131051048636436, 0.8775293827056885, 0.016282470896840096, 0.028618106618523598], "reduce_n3_p1": [0.4720914959907532, 0.14445917308330536, 0.09519583731889725, 0.011447364464402199, 0.11251609772443771, 0.020586062222719193, 0.12575265765190125], "reduce_n3_p2": [0.002569582313299179, 0.0039546736516058445, 0.00515109533444047, 0.0051909442991018295, 0.961794912815094, 0.00460826838389039, 0.004300879780203104], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09559346735477448, 0.6869573593139648, 0.11068979650735855, 0.037370018661022186, 0.011240648105740547, 0.03554704785346985, 0.014173414558172226], "normal_n2_p1": [0.2738024592399597, 0.4087626039981842, 0.0839468464255333, 0.03781072422862053, 0.034616101533174515, 0.09686398506164551, 0.026656417176127434], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028125053271651268, 0.021397624164819717, 0.020419318228960037, 0.8184828162193298, 0.0264801736921072, 0.03234384208917618, 0.03222160041332245], "normal_n3_p1": [0.05054797604680061, 0.06505973637104034, 0.06996331363916397, 0.12903764843940735, 0.0728156715631485, 0.4094530940055847, 0.12901796400547028], "normal_n3_p2": [0.04003015160560608, 0.04147540032863617, 0.03905388340353966, 0.021369704976677895, 0.01687115989625454, 0.7795686721801758, 0.035281408578157425], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07953095436096191, 0.014163309708237648, 0.0013810518430545926, 0.8186150789260864, 0.018081802874803543, 0.011171308346092701, 0.03733091056346893], "reduce_n2_p1": [0.000200834299903363, 0.0012769252061843872, 0.9831095337867737, 0.004502657800912857, 0.0013141746167093515, 0.0038994860369712114, 0.0015497250715270638], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.016650507226586342, 0.013646023347973824, 0.02173399180173874, 0.018485719338059425, 0.879104733467102, 0.01948174089193344, 0.014752408489584923], "reduce_n3_p1": [0.9155879616737366, 0.046633679419755936, 0.004183176904916763, 0.004230402410030365, 0.008035167120397091, 0.005667464807629585, 0.010050990618765354], "reduce_n3_p2": [0.0067737470380961895, 0.009724185802042484, 0.011606958694756031, 0.007138343062251806, 0.9221261143684387, 0.009839575737714767, 0.01043506059795618], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09559346735477448, 0.6869573593139648, 0.11068979650735855, 0.037370018661022186, 0.011240648105740547, 0.03554704785346985, 0.014173414558172226], "normal_n2_p1": [0.2738024592399597, 0.4087626039981842, 0.0839468464255333, 0.03781072422862053, 0.034616101533174515, 0.09686398506164551, 0.026656417176127434], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028125053271651268, 0.021397624164819717, 0.020419318228960037, 0.8184828162193298, 0.0264801736921072, 0.03234384208917618, 0.03222160041332245], "normal_n3_p1": [0.05054797604680061, 0.06505973637104034, 0.06996331363916397, 0.12903764843940735, 0.0728156715631485, 0.4094530940055847, 0.12901796400547028], "normal_n3_p2": [0.04003015160560608, 0.04147540032863617, 0.03905388340353966, 0.021369704976677895, 0.01687115989625454, 0.7795686721801758, 0.035281408578157425], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07953095436096191, 0.014163309708237648, 0.0013810518430545926, 0.8186150789260864, 0.018081802874803543, 0.011171308346092701, 0.03733091056346893], "reduce_n2_p1": [0.000200834299903363, 0.0012769252061843872, 0.9831095337867737, 0.004502657800912857, 0.0013141746167093515, 0.0038994860369712114, 0.0015497250715270638], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.016650507226586342, 0.013646023347973824, 0.02173399180173874, 0.018485719338059425, 0.879104733467102, 0.01948174089193344, 0.014752408489584923], "reduce_n3_p1": [0.9155879616737366, 0.046633679419755936, 0.004183176904916763, 0.004230402410030365, 0.008035167120397091, 0.005667464807629585, 0.010050990618765354], "reduce_n3_p2": [0.0067737470380961895, 0.009724185802042484, 0.011606958694756031, 0.007138343062251806, 0.9221261143684387, 0.009839575737714767, 0.01043506059795618], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.13639770448207855, 0.4993736147880554, 0.17292536795139313, 0.0938962772488594, 0.017267519608139992, 0.04719936102628708, 0.02101222611963749], "normal_n2_p1": [0.37422698736190796, 0.37632107734680176, 0.06643787026405334, 0.030467599630355835, 0.030700242146849632, 0.06930962204933167, 0.020878801122307777], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03840398043394089, 0.0306293535977602, 0.02920071966946125, 0.7652974724769592, 0.03312111645936966, 0.04177858307957649, 0.03638072311878204], "normal_n3_p1": [0.08334797620773315, 0.14721837639808655, 0.1476326584815979, 0.12723638117313385, 0.10102127492427826, 0.20532092452049255, 0.12650755047798157], "normal_n3_p2": [0.16904796659946442, 0.16120333969593048, 0.1743529886007309, 0.03225930407643318, 0.0287130456417799, 0.3263548016548157, 0.06904909759759903], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.11456035077571869, 0.023536544293165207, 0.0030323872342705727, 0.720737874507904, 0.026979953050613403, 0.02116083912551403, 0.057051945477724075], "reduce_n2_p1": [0.0005332895671017468, 0.003249801928177476, 0.9651517868041992, 0.008424884639680386, 0.003350732382386923, 0.007462194189429283, 0.0038103261031210423], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02772928588092327, 0.01969320699572563, 0.027615660801529884, 0.028357531875371933, 0.825441837310791, 0.028780046850442886, 0.015669099986553192], "reduce_n3_p1": [0.9481391310691833, 0.028990015387535095, 0.0013653190108016133, 0.004462942015379667, 0.002930601593106985, 0.004614673089236021, 0.004105356056243181], "reduce_n3_p2": [0.016452955082058907, 0.022000445052981377, 0.024881752207875252, 0.011765164323151112, 0.8479255437850952, 0.01957320235669613, 0.022321749478578568], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.13639770448207855, 0.4993736147880554, 0.17292536795139313, 0.0938962772488594, 0.017267519608139992, 0.04719936102628708, 0.02101222611963749], "normal_n2_p1": [0.37422698736190796, 0.37632107734680176, 0.06643787026405334, 0.030467599630355835, 0.030700242146849632, 0.06930962204933167, 0.020878801122307777], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03840398043394089, 0.0306293535977602, 0.02920071966946125, 0.7652974724769592, 0.03312111645936966, 0.04177858307957649, 0.03638072311878204], "normal_n3_p1": [0.08334797620773315, 0.14721837639808655, 0.1476326584815979, 0.12723638117313385, 0.10102127492427826, 0.20532092452049255, 0.12650755047798157], "normal_n3_p2": [0.16904796659946442, 0.16120333969593048, 0.1743529886007309, 0.03225930407643318, 0.0287130456417799, 0.3263548016548157, 0.06904909759759903], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.11456035077571869, 0.023536544293165207, 0.0030323872342705727, 0.720737874507904, 0.026979953050613403, 0.02116083912551403, 0.057051945477724075], "reduce_n2_p1": [0.0005332895671017468, 0.003249801928177476, 0.9651517868041992, 0.008424884639680386, 0.003350732382386923, 0.007462194189429283, 0.0038103261031210423], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02772928588092327, 0.01969320699572563, 0.027615660801529884, 0.028357531875371933, 0.825441837310791, 0.028780046850442886, 0.015669099986553192], "reduce_n3_p1": [0.9481391310691833, 0.028990015387535095, 0.0013653190108016133, 0.004462942015379667, 0.002930601593106985, 0.004614673089236021, 0.004105356056243181], "reduce_n3_p2": [0.016452955082058907, 0.022000445052981377, 0.024881752207875252, 0.011765164323151112, 0.8479255437850952, 0.01957320235669613, 0.022321749478578568], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.12133654952049255, 0.5676267147064209, 0.13586270809173584, 0.06991132348775864, 0.02076929807662964, 0.0460004024207592, 0.02413051761686802], "normal_n2_p1": [0.22823184728622437, 0.5380268692970276, 0.060345616191625595, 0.02840431034564972, 0.028845444321632385, 0.06501194089651108, 0.021107306703925133], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06233919784426689, 0.04520431160926819, 0.040991704910993576, 0.6650748252868652, 0.05560348182916641, 0.05106187239289284, 0.04301494359970093], "normal_n3_p1": [0.12347590178251266, 0.2511930763721466, 0.1476050466299057, 0.15943801403045654, 0.10983012616634369, 0.058652374893426895, 0.09446586668491364], "normal_n3_p2": [0.2307872474193573, 0.12546826899051666, 0.12689834833145142, 0.044932328164577484, 0.04154811054468155, 0.3322261869907379, 0.05932404845952988], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.09485280513763428, 0.03083544224500656, 0.0054283407516777515, 0.702334463596344, 0.03452151641249657, 0.02712957374751568, 0.06351277977228165], "reduce_n2_p1": [0.0015775334322825074, 0.007873095571994781, 0.929926335811615, 0.01566501520574093, 0.007997745648026466, 0.013460821472108364, 0.008993680588901043], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06508125364780426, 0.031835079193115234, 0.039192698895931244, 0.041451096534729004, 0.7219924330711365, 0.037023209035396576, 0.02143523283302784], "reduce_n3_p1": [0.9436872601509094, 0.025509368628263474, 0.0014717282028868794, 0.007434785831719637, 0.0029834434390068054, 0.006363965570926666, 0.004068948794156313], "reduce_n3_p2": [0.061131980270147324, 0.0801573172211647, 0.08621811866760254, 0.03087812103331089, 0.529052197933197, 0.0522526390850544, 0.06748224049806595], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.12133654952049255, 0.5676267147064209, 0.13586270809173584, 0.06991132348775864, 0.02076929807662964, 0.0460004024207592, 0.02413051761686802], "normal_n2_p1": [0.22823184728622437, 0.5380268692970276, 0.060345616191625595, 0.02840431034564972, 0.028845444321632385, 0.06501194089651108, 0.021107306703925133], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06233919784426689, 0.04520431160926819, 0.040991704910993576, 0.6650748252868652, 0.05560348182916641, 0.05106187239289284, 0.04301494359970093], "normal_n3_p1": [0.12347590178251266, 0.2511930763721466, 0.1476050466299057, 0.15943801403045654, 0.10983012616634369, 0.058652374893426895, 0.09446586668491364], "normal_n3_p2": [0.2307872474193573, 0.12546826899051666, 0.12689834833145142, 0.044932328164577484, 0.04154811054468155, 0.3322261869907379, 0.05932404845952988], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.09485280513763428, 0.03083544224500656, 0.0054283407516777515, 0.702334463596344, 0.03452151641249657, 0.02712957374751568, 0.06351277977228165], "reduce_n2_p1": [0.0015775334322825074, 0.007873095571994781, 0.929926335811615, 0.01566501520574093, 0.007997745648026466, 0.013460821472108364, 0.008993680588901043], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06508125364780426, 0.031835079193115234, 0.039192698895931244, 0.041451096534729004, 0.7219924330711365, 0.037023209035396576, 0.02143523283302784], "reduce_n3_p1": [0.9436872601509094, 0.025509368628263474, 0.0014717282028868794, 0.007434785831719637, 0.0029834434390068054, 0.006363965570926666, 0.004068948794156313], "reduce_n3_p2": [0.061131980270147324, 0.0801573172211647, 0.08621811866760254, 0.03087812103331089, 0.529052197933197, 0.0522526390850544, 0.06748224049806595], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.181741863489151, 0.2964455783367157, 0.09177589416503906, 0.2556469738483429, 0.03052225150167942, 0.08572369813919067, 0.031532809138298035], "normal_n2_p1": [0.2341633141040802, 0.4772137403488159, 0.06565839052200317, 0.02696835994720459, 0.03621222451329231, 0.09867045283317566, 0.028315948322415352], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.08576560020446777, 0.05134882032871246, 0.05092615634202957, 0.5290288329124451, 0.07615777105093002, 0.07783979922533035, 0.06727536022663116], "normal_n3_p1": [0.1872410774230957, 0.19524787366390228, 0.06373582780361176, 0.14794133603572845, 0.12832574546337128, 0.03792738541960716, 0.17148956656455994], "normal_n3_p2": [0.0922260582447052, 0.04165688157081604, 0.03799901530146599, 0.08237963914871216, 0.03834335878491402, 0.587443470954895, 0.07449797540903091], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13411782681941986, 0.042253877967596054, 0.010142318904399872, 0.5968643426895142, 0.04395773634314537, 0.03326084837317467, 0.0896008312702179], "reduce_n2_p1": [0.0040635596960783005, 0.015381610952317715, 0.8827695846557617, 0.02345491573214531, 0.016048509627580643, 0.01992025226354599, 0.01652672328054905], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.1788569688796997, 0.05112425610423088, 0.06014974042773247, 0.07857885956764221, 0.46203121542930603, 0.043368298560380936, 0.039668429642915726], "reduce_n3_p1": [0.8990913033485413, 0.03297898918390274, 0.0034434690605849028, 0.017613552510738373, 0.006196192931383848, 0.013759015128016472, 0.007802080828696489], "reduce_n3_p2": [0.14476819336414337, 0.14956960082054138, 0.1385171115398407, 0.04385916888713837, 0.3067988455295563, 0.0623568557202816, 0.08075729757547379], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.181741863489151, 0.2964455783367157, 0.09177589416503906, 0.2556469738483429, 0.03052225150167942, 0.08572369813919067, 0.031532809138298035], "normal_n2_p1": [0.2341633141040802, 0.4772137403488159, 0.06565839052200317, 0.02696835994720459, 0.03621222451329231, 0.09867045283317566, 0.028315948322415352], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.08576560020446777, 0.05134882032871246, 0.05092615634202957, 0.5290288329124451, 0.07615777105093002, 0.07783979922533035, 0.06727536022663116], "normal_n3_p1": [0.1872410774230957, 0.19524787366390228, 0.06373582780361176, 0.14794133603572845, 0.12832574546337128, 0.03792738541960716, 0.17148956656455994], "normal_n3_p2": [0.0922260582447052, 0.04165688157081604, 0.03799901530146599, 0.08237963914871216, 0.03834335878491402, 0.587443470954895, 0.07449797540903091], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13411782681941986, 0.042253877967596054, 0.010142318904399872, 0.5968643426895142, 0.04395773634314537, 0.03326084837317467, 0.0896008312702179], "reduce_n2_p1": [0.0040635596960783005, 0.015381610952317715, 0.8827695846557617, 0.02345491573214531, 0.016048509627580643, 0.01992025226354599, 0.01652672328054905], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.1788569688796997, 0.05112425610423088, 0.06014974042773247, 0.07857885956764221, 0.46203121542930603, 0.043368298560380936, 0.039668429642915726], "reduce_n3_p1": [0.8990913033485413, 0.03297898918390274, 0.0034434690605849028, 0.017613552510738373, 0.006196192931383848, 0.013759015128016472, 0.007802080828696489], "reduce_n3_p2": [0.14476819336414337, 0.14956960082054138, 0.1385171115398407, 0.04385916888713837, 0.3067988455295563, 0.0623568557202816, 0.08075729757547379], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.341762900352478, 0.19022297859191895, 0.09294714033603668, 0.12209542840719223, 0.02202284149825573, 0.16235041618347168, 0.026467174291610718], "normal_n2_p1": [0.20764833688735962, 0.47539252042770386, 0.06487265974283218, 0.027153154835104942, 0.0350661501288414, 0.12749189138412476, 0.03355666995048523], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01540503092110157, 0.006594909820705652, 0.007646180223673582, 0.8375041484832764, 0.03514103218913078, 0.04846232756972313, 0.032724905759096146], "normal_n3_p1": [0.24691347777843475, 0.10188355296850204, 0.02679014578461647, 0.1074790507555008, 0.28228408098220825, 0.027142813429236412, 0.12992674112319946], "normal_n3_p2": [0.004226403310894966, 0.0035606944002211094, 0.0036412044428288937, 0.029630059376358986, 0.007779051549732685, 0.9130812287330627, 0.023674428462982178], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07385921478271484, 0.043058134615421295, 0.012621966190636158, 0.6909199953079224, 0.02889249101281166, 0.03533995896577835, 0.07461363822221756], "reduce_n2_p1": [0.008755242452025414, 0.02447362057864666, 0.8302977085113525, 0.03488590940833092, 0.024853374809026718, 0.02591872587800026, 0.022939911112189293], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01954057067632675, 0.037136808037757874, 0.0726979523897171, 0.09949763864278793, 0.5712332725524902, 0.0502980574965477, 0.059579528868198395], "reduce_n3_p1": [0.7598358988761902, 0.057534098625183105, 0.011189423501491547, 0.04313107207417488, 0.017539069056510925, 0.036854494363069534, 0.02243787795305252], "reduce_n3_p2": [0.10849146544933319, 0.3007366359233856, 0.16942442953586578, 0.04723173752427101, 0.1444539725780487, 0.09741902351379395, 0.06510794907808304], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.341762900352478, 0.19022297859191895, 0.09294714033603668, 0.12209542840719223, 0.02202284149825573, 0.16235041618347168, 0.026467174291610718], "normal_n2_p1": [0.20764833688735962, 0.47539252042770386, 0.06487265974283218, 0.027153154835104942, 0.0350661501288414, 0.12749189138412476, 0.03355666995048523], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01540503092110157, 0.006594909820705652, 0.007646180223673582, 0.8375041484832764, 0.03514103218913078, 0.04846232756972313, 0.032724905759096146], "normal_n3_p1": [0.24691347777843475, 0.10188355296850204, 0.02679014578461647, 0.1074790507555008, 0.28228408098220825, 0.027142813429236412, 0.12992674112319946], "normal_n3_p2": [0.004226403310894966, 0.0035606944002211094, 0.0036412044428288937, 0.029630059376358986, 0.007779051549732685, 0.9130812287330627, 0.023674428462982178], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07385921478271484, 0.043058134615421295, 0.012621966190636158, 0.6909199953079224, 0.02889249101281166, 0.03533995896577835, 0.07461363822221756], "reduce_n2_p1": [0.008755242452025414, 0.02447362057864666, 0.8302977085113525, 0.03488590940833092, 0.024853374809026718, 0.02591872587800026, 0.022939911112189293], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01954057067632675, 0.037136808037757874, 0.0726979523897171, 0.09949763864278793, 0.5712332725524902, 0.0502980574965477, 0.059579528868198395], "reduce_n3_p1": [0.7598358988761902, 0.057534098625183105, 0.011189423501491547, 0.04313107207417488, 0.017539069056510925, 0.036854494363069534, 0.02243787795305252], "reduce_n3_p2": [0.10849146544933319, 0.3007366359233856, 0.16942442953586578, 0.04723173752427101, 0.1444539725780487, 0.09741902351379395, 0.06510794907808304], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.17164185643196106, 0.19177086651325226, 0.16667422652244568, 0.05150540545582771, 0.02915925718843937, 0.28801608085632324, 0.03802208602428436], "normal_n2_p1": [0.13513407111167908, 0.6135841012001038, 0.07476722449064255, 0.01995074935257435, 0.032353147864341736, 0.07147225737571716, 0.028316128998994827], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.005667524877935648, 0.002357090124860406, 0.002855209168046713, 0.9262204170227051, 0.01754041016101837, 0.021201618015766144, 0.017129989340901375], "normal_n3_p1": [0.1487288922071457, 0.044903043657541275, 0.019823770970106125, 0.0962948426604271, 0.41074302792549133, 0.026755481958389282, 0.1601988673210144], "normal_n3_p2": [0.001251524779945612, 0.0014990532072260976, 0.0016387637006118894, 0.014082912355661392, 0.003857672680169344, 0.9571855664253235, 0.012327411212027073], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08036716282367706, 0.05839008465409279, 0.021297723054885864, 0.5823301672935486, 0.0408649668097496, 0.05669665336608887, 0.08940086513757706], "reduce_n2_p1": [0.0150016313418746, 0.034666307270526886, 0.8070857524871826, 0.03934289887547493, 0.028505856171250343, 0.02192165143787861, 0.026114100590348244], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.004187651444226503, 0.017589999362826347, 0.02829844318330288, 0.04897689074277878, 0.8121339678764343, 0.02601419761776924, 0.024960454553365707], "reduce_n3_p1": [0.7664074897766113, 0.061646468937397, 0.01827583834528923, 0.023715266957879066, 0.027699366211891174, 0.02076382003724575, 0.036667320877313614], "reduce_n3_p2": [0.06358463317155838, 0.2123134881258011, 0.15253107249736786, 0.05860171839594841, 0.14189867675304413, 0.17002998292446136, 0.1075778529047966], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.17164185643196106, 0.19177086651325226, 0.16667422652244568, 0.05150540545582771, 0.02915925718843937, 0.28801608085632324, 0.03802208602428436], "normal_n2_p1": [0.13513407111167908, 0.6135841012001038, 0.07476722449064255, 0.01995074935257435, 0.032353147864341736, 0.07147225737571716, 0.028316128998994827], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.005667524877935648, 0.002357090124860406, 0.002855209168046713, 0.9262204170227051, 0.01754041016101837, 0.021201618015766144, 0.017129989340901375], "normal_n3_p1": [0.1487288922071457, 0.044903043657541275, 0.019823770970106125, 0.0962948426604271, 0.41074302792549133, 0.026755481958389282, 0.1601988673210144], "normal_n3_p2": [0.001251524779945612, 0.0014990532072260976, 0.0016387637006118894, 0.014082912355661392, 0.003857672680169344, 0.9571855664253235, 0.012327411212027073], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08036716282367706, 0.05839008465409279, 0.021297723054885864, 0.5823301672935486, 0.0408649668097496, 0.05669665336608887, 0.08940086513757706], "reduce_n2_p1": [0.0150016313418746, 0.034666307270526886, 0.8070857524871826, 0.03934289887547493, 0.028505856171250343, 0.02192165143787861, 0.026114100590348244], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.004187651444226503, 0.017589999362826347, 0.02829844318330288, 0.04897689074277878, 0.8121339678764343, 0.02601419761776924, 0.024960454553365707], "reduce_n3_p1": [0.7664074897766113, 0.061646468937397, 0.01827583834528923, 0.023715266957879066, 0.027699366211891174, 0.02076382003724575, 0.036667320877313614], "reduce_n3_p2": [0.06358463317155838, 0.2123134881258011, 0.15253107249736786, 0.05860171839594841, 0.14189867675304413, 0.17002998292446136, 0.1075778529047966], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013528392650187016, 0.06475020945072174, 0.03694554790854454, 0.019771480932831764, 0.03321792557835579, 0.7113831639289856, 0.06884238868951797], "normal_n2_p1": [0.11309458315372467, 0.46912750601768494, 0.08619073778390884, 0.03404272347688675, 0.047123756259679794, 0.14422185719013214, 0.06225698068737984], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.004975254647433758, 0.0025722093414515257, 0.0030901944264769554, 0.9220054149627686, 0.02023802511394024, 0.019367946311831474, 0.019656198099255562], "normal_n3_p1": [0.011160103604197502, 0.005984829738736153, 0.005026635248214006, 0.025990178808569908, 0.9144166707992554, 0.005615598987787962, 0.014011249877512455], "normal_n3_p2": [0.0019290265627205372, 0.002675510011613369, 0.003025209531188011, 0.018612926825881004, 0.006120603997260332, 0.932275116443634, 0.022464565932750702], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.23773550987243652, 0.1132444366812706, 0.028898289427161217, 0.10563453286886215, 0.035076774656772614, 0.1410093754529953, 0.2255827784538269], "reduce_n2_p1": [0.02517295815050602, 0.04898295924067497, 0.7352601289749146, 0.05537379905581474, 0.03788617253303528, 0.026805466040968895, 0.03612489253282547], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0019328617490828037, 0.009451295249164104, 0.010013386607170105, 0.0076654148288071156, 0.9459577798843384, 0.007264729589223862, 0.009023724123835564], "reduce_n3_p1": [0.44111257791519165, 0.07799969613552094, 0.05312853679060936, 0.04448111355304718, 0.09150372445583344, 0.03393940255045891, 0.13113655149936676], "reduce_n3_p2": [0.07063808292150497, 0.43636763095855713, 0.21835896372795105, 0.044056594371795654, 0.03670940175652504, 0.06937447190284729, 0.0582055002450943], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013528392650187016, 0.06475020945072174, 0.03694554790854454, 0.019771480932831764, 0.03321792557835579, 0.7113831639289856, 0.06884238868951797], "normal_n2_p1": [0.11309458315372467, 0.46912750601768494, 0.08619073778390884, 0.03404272347688675, 0.047123756259679794, 0.14422185719013214, 0.06225698068737984], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.004975254647433758, 0.0025722093414515257, 0.0030901944264769554, 0.9220054149627686, 0.02023802511394024, 0.019367946311831474, 0.019656198099255562], "normal_n3_p1": [0.011160103604197502, 0.005984829738736153, 0.005026635248214006, 0.025990178808569908, 0.9144166707992554, 0.005615598987787962, 0.014011249877512455], "normal_n3_p2": [0.0019290265627205372, 0.002675510011613369, 0.003025209531188011, 0.018612926825881004, 0.006120603997260332, 0.932275116443634, 0.022464565932750702], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.23773550987243652, 0.1132444366812706, 0.028898289427161217, 0.10563453286886215, 0.035076774656772614, 0.1410093754529953, 0.2255827784538269], "reduce_n2_p1": [0.02517295815050602, 0.04898295924067497, 0.7352601289749146, 0.05537379905581474, 0.03788617253303528, 0.026805466040968895, 0.03612489253282547], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0019328617490828037, 0.009451295249164104, 0.010013386607170105, 0.0076654148288071156, 0.9459577798843384, 0.007264729589223862, 0.009023724123835564], "reduce_n3_p1": [0.44111257791519165, 0.07799969613552094, 0.05312853679060936, 0.04448111355304718, 0.09150372445583344, 0.03393940255045891, 0.13113655149936676], "reduce_n3_p2": [0.07063808292150497, 0.43636763095855713, 0.21835896372795105, 0.044056594371795654, 0.03670940175652504, 0.06937447190284729, 0.0582055002450943], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.007358005736023188, 0.07312919944524765, 0.04282986372709274, 0.02976774238049984, 0.0558764822781086, 0.6131212711334229, 0.07850158214569092], "normal_n2_p1": [0.04068492352962494, 0.8652303218841553, 0.036797624081373215, 0.01099886279553175, 0.009243114851415157, 0.014156355522572994, 0.011664634570479393], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009415620006620884, 0.005991099867969751, 0.006976183038204908, 0.8451400399208069, 0.039760228246450424, 0.03166884183883667, 0.04250314459204674], "normal_n3_p1": [0.004064726177603006, 0.003392254700884223, 0.004225102718919516, 0.01626916415989399, 0.9535351395606995, 0.003428015159443021, 0.0052327848970890045], "normal_n3_p2": [0.005416335072368383, 0.007660197094082832, 0.008589627221226692, 0.03014133684337139, 0.013058511540293694, 0.8700329661369324, 0.04152911901473999], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.050679761916399, 0.048491768538951874, 0.01912122219800949, 0.016629599034786224, 0.011879545636475086, 0.1501908302307129, 0.6611824631690979], "reduce_n2_p1": [0.035322196781635284, 0.06960182636976242, 0.6756691336631775, 0.0648927092552185, 0.04127601534128189, 0.029731491580605507, 0.048056624829769135], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0026877273339778185, 0.009837422519922256, 0.009085668250918388, 0.004666229244321585, 0.9515939354896545, 0.006743863690644503, 0.008404736407101154], "reduce_n3_p1": [0.1268460601568222, 0.07904660701751709, 0.0847989171743393, 0.09612392634153366, 0.21374373137950897, 0.05339835211634636, 0.18971271812915802], "reduce_n3_p2": [0.06849934160709381, 0.3556358814239502, 0.3104279935359955, 0.04125113785266876, 0.01915736123919487, 0.07544649392366409, 0.058351676911115646], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.007358005736023188, 0.07312919944524765, 0.04282986372709274, 0.02976774238049984, 0.0558764822781086, 0.6131212711334229, 0.07850158214569092], "normal_n2_p1": [0.04068492352962494, 0.8652303218841553, 0.036797624081373215, 0.01099886279553175, 0.009243114851415157, 0.014156355522572994, 0.011664634570479393], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009415620006620884, 0.005991099867969751, 0.006976183038204908, 0.8451400399208069, 0.039760228246450424, 0.03166884183883667, 0.04250314459204674], "normal_n3_p1": [0.004064726177603006, 0.003392254700884223, 0.004225102718919516, 0.01626916415989399, 0.9535351395606995, 0.003428015159443021, 0.0052327848970890045], "normal_n3_p2": [0.005416335072368383, 0.007660197094082832, 0.008589627221226692, 0.03014133684337139, 0.013058511540293694, 0.8700329661369324, 0.04152911901473999], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.050679761916399, 0.048491768538951874, 0.01912122219800949, 0.016629599034786224, 0.011879545636475086, 0.1501908302307129, 0.6611824631690979], "reduce_n2_p1": [0.035322196781635284, 0.06960182636976242, 0.6756691336631775, 0.0648927092552185, 0.04127601534128189, 0.029731491580605507, 0.048056624829769135], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0026877273339778185, 0.009837422519922256, 0.009085668250918388, 0.004666229244321585, 0.9515939354896545, 0.006743863690644503, 0.008404736407101154], "reduce_n3_p1": [0.1268460601568222, 0.07904660701751709, 0.0847989171743393, 0.09612392634153366, 0.21374373137950897, 0.05339835211634636, 0.18971271812915802], "reduce_n3_p2": [0.06849934160709381, 0.3556358814239502, 0.3104279935359955, 0.04125113785266876, 0.01915736123919487, 0.07544649392366409, 0.058351676911115646], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.00946471281349659, 0.16442708671092987, 0.147386372089386, 0.0497107058763504, 0.24185039103031158, 0.08139005303382874, 0.1485910415649414], "normal_n2_p1": [0.012834078632295132, 0.952372670173645, 0.015685632824897766, 0.004835246596485376, 0.003031670581549406, 0.0034830744843930006, 0.003514021635055542], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.015013102442026138, 0.011088256724178791, 0.011997288092970848, 0.8222325444221497, 0.03902468457818031, 0.03353889659047127, 0.04326057434082031], "normal_n3_p1": [0.004778942558914423, 0.005498683080077171, 0.008574303239583969, 0.02597196027636528, 0.9301085472106934, 0.005280948709696531, 0.006019107066094875], "normal_n3_p2": [0.012221939861774445, 0.015909746289253235, 0.0173918716609478, 0.03049400821328163, 0.022074371576309204, 0.830384373664856, 0.04245263338088989], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13296441733837128, 0.16432437300682068, 0.04696646332740784, 0.017451005056500435, 0.02193189412355423, 0.12396825104951859, 0.430167019367218], "reduce_n2_p1": [0.07320922613143921, 0.35361579060554504, 0.32523834705352783, 0.06503187865018845, 0.037446279078722, 0.04449974000453949, 0.06725728511810303], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005716411862522364, 0.014372059144079685, 0.010812551714479923, 0.005414084997028112, 0.9334288239479065, 0.0098494291305542, 0.01151182223111391], "reduce_n3_p1": [0.3324221074581146, 0.16015101969242096, 0.06892740726470947, 0.04580245912075043, 0.01775391399860382, 0.06780366599559784, 0.019135477021336555], "reduce_n3_p2": [0.0937289148569107, 0.050059664994478226, 0.19121500849723816, 0.06953988969326019, 0.026201097294688225, 0.1640036553144455, 0.15281689167022705], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.00946471281349659, 0.16442708671092987, 0.147386372089386, 0.0497107058763504, 0.24185039103031158, 0.08139005303382874, 0.1485910415649414], "normal_n2_p1": [0.012834078632295132, 0.952372670173645, 0.015685632824897766, 0.004835246596485376, 0.003031670581549406, 0.0034830744843930006, 0.003514021635055542], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.015013102442026138, 0.011088256724178791, 0.011997288092970848, 0.8222325444221497, 0.03902468457818031, 0.03353889659047127, 0.04326057434082031], "normal_n3_p1": [0.004778942558914423, 0.005498683080077171, 0.008574303239583969, 0.02597196027636528, 0.9301085472106934, 0.005280948709696531, 0.006019107066094875], "normal_n3_p2": [0.012221939861774445, 0.015909746289253235, 0.0173918716609478, 0.03049400821328163, 0.022074371576309204, 0.830384373664856, 0.04245263338088989], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13296441733837128, 0.16432437300682068, 0.04696646332740784, 0.017451005056500435, 0.02193189412355423, 0.12396825104951859, 0.430167019367218], "reduce_n2_p1": [0.07320922613143921, 0.35361579060554504, 0.32523834705352783, 0.06503187865018845, 0.037446279078722, 0.04449974000453949, 0.06725728511810303], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005716411862522364, 0.014372059144079685, 0.010812551714479923, 0.005414084997028112, 0.9334288239479065, 0.0098494291305542, 0.01151182223111391], "reduce_n3_p1": [0.3324221074581146, 0.16015101969242096, 0.06892740726470947, 0.04580245912075043, 0.01775391399860382, 0.06780366599559784, 0.019135477021336555], "reduce_n3_p2": [0.0937289148569107, 0.050059664994478226, 0.19121500849723816, 0.06953988969326019, 0.026201097294688225, 0.1640036553144455, 0.15281689167022705], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.002058993326500058, 0.10099602490663528, 0.5412173271179199, 0.03277654945850372, 0.0010144413681700826, 0.010158360004425049, 0.001983779249712825], "normal_n2_p1": [0.00846513919532299, 0.968675434589386, 0.009914884343743324, 0.0035707235801965, 0.0021729706786572933, 0.00197157496586442, 0.0022169139701873064], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02952900156378746, 0.025309467688202858, 0.02594284527003765, 0.6804296374320984, 0.06234347075223923, 0.052970040589571, 0.08736949414014816], "normal_n3_p1": [0.010511325672268867, 0.016014108434319496, 0.029037058353424072, 0.05742206051945686, 0.8290305137634277, 0.013802752830088139, 0.013204144313931465], "normal_n3_p2": [0.019385473802685738, 0.022037258371710777, 0.02447647787630558, 0.033654723316431046, 0.027546800673007965, 0.8360254168510437, 0.014078231528401375], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.14686135947704315, 0.1969929188489914, 0.06473288685083389, 0.0162451583892107, 0.02811037190258503, 0.12736520171165466, 0.35184812545776367], "reduce_n2_p1": [0.10704203695058823, 0.1925906389951706, 0.4852067232131958, 0.04978704825043678, 0.02909037284553051, 0.06195050850510597, 0.04040910676121712], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.012462051585316658, 0.02065921202301979, 0.0180992279201746, 0.009478816762566566, 0.8814181089401245, 0.020637482404708862, 0.021078521385788918], "reduce_n3_p1": [0.7285006046295166, 0.1065320298075676, 0.01923336833715439, 0.019825298339128494, 0.003015736350789666, 0.05290530249476433, 0.003339669667184353], "reduce_n3_p2": [0.03047792613506317, 0.011207113973796368, 0.07106555253267288, 0.08512821048498154, 0.02530777081847191, 0.14898161590099335, 0.2354217767715454], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.002058993326500058, 0.10099602490663528, 0.5412173271179199, 0.03277654945850372, 0.0010144413681700826, 0.010158360004425049, 0.001983779249712825], "normal_n2_p1": [0.00846513919532299, 0.968675434589386, 0.009914884343743324, 0.0035707235801965, 0.0021729706786572933, 0.00197157496586442, 0.0022169139701873064], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02952900156378746, 0.025309467688202858, 0.02594284527003765, 0.6804296374320984, 0.06234347075223923, 0.052970040589571, 0.08736949414014816], "normal_n3_p1": [0.010511325672268867, 0.016014108434319496, 0.029037058353424072, 0.05742206051945686, 0.8290305137634277, 0.013802752830088139, 0.013204144313931465], "normal_n3_p2": [0.019385473802685738, 0.022037258371710777, 0.02447647787630558, 0.033654723316431046, 0.027546800673007965, 0.8360254168510437, 0.014078231528401375], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.14686135947704315, 0.1969929188489914, 0.06473288685083389, 0.0162451583892107, 0.02811037190258503, 0.12736520171165466, 0.35184812545776367], "reduce_n2_p1": [0.10704203695058823, 0.1925906389951706, 0.4852067232131958, 0.04978704825043678, 0.02909037284553051, 0.06195050850510597, 0.04040910676121712], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.012462051585316658, 0.02065921202301979, 0.0180992279201746, 0.009478816762566566, 0.8814181089401245, 0.020637482404708862, 0.021078521385788918], "reduce_n3_p1": [0.7285006046295166, 0.1065320298075676, 0.01923336833715439, 0.019825298339128494, 0.003015736350789666, 0.05290530249476433, 0.003339669667184353], "reduce_n3_p2": [0.03047792613506317, 0.011207113973796368, 0.07106555253267288, 0.08512821048498154, 0.02530777081847191, 0.14898161590099335, 0.2354217767715454], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0013349856017157435, 0.0814671590924263, 0.3949909806251526, 0.02459365501999855, 9.054339898284525e-05, 0.004038811195641756, 0.00030746933771297336], "normal_n2_p1": [0.008318739011883736, 0.9670059084892273, 0.009601605124771595, 0.004249414429068565, 0.002644234336912632, 0.0020691866520792246, 0.002515555825084448], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04102844372391701, 0.0354020893573761, 0.03650318458676338, 0.6710960865020752, 0.06956202536821365, 0.046590909361839294, 0.04649815708398819], "normal_n3_p1": [0.022976014763116837, 0.042019668966531754, 0.08470255136489868, 0.10999070852994919, 0.5960375666618347, 0.03132520243525505, 0.030008016154170036], "normal_n3_p2": [0.04532310739159584, 0.04611865058541298, 0.05276470258831978, 0.07209901511669159, 0.06532846391201019, 0.6628580093383789, 0.01452513225376606], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.228276789188385, 0.3216448426246643, 0.04682306945323944, 0.015429222024977207, 0.021359313279390335, 0.060158878564834595, 0.2644903063774109], "reduce_n2_p1": [0.10646586120128632, 0.3829585015773773, 0.2624100148677826, 0.04231811687350273, 0.026890859007835388, 0.08505470305681229, 0.04325861111283302], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02625204436480999, 0.029488326981663704, 0.028302311897277832, 0.013844791799783707, 0.8196273446083069, 0.02839660830795765, 0.03093027137219906], "reduce_n3_p1": [0.7140010595321655, 0.083688884973526, 0.013628345914185047, 0.014843229204416275, 0.00232862401753664, 0.11007554829120636, 0.0026642002630978823], "reduce_n3_p2": [0.016978498548269272, 0.005182224791496992, 0.039978768676519394, 0.08142106980085373, 0.017899487167596817, 0.030048297718167305, 0.19160670042037964], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0013349856017157435, 0.0814671590924263, 0.3949909806251526, 0.02459365501999855, 9.054339898284525e-05, 0.004038811195641756, 0.00030746933771297336], "normal_n2_p1": [0.008318739011883736, 0.9670059084892273, 0.009601605124771595, 0.004249414429068565, 0.002644234336912632, 0.0020691866520792246, 0.002515555825084448], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04102844372391701, 0.0354020893573761, 0.03650318458676338, 0.6710960865020752, 0.06956202536821365, 0.046590909361839294, 0.04649815708398819], "normal_n3_p1": [0.022976014763116837, 0.042019668966531754, 0.08470255136489868, 0.10999070852994919, 0.5960375666618347, 0.03132520243525505, 0.030008016154170036], "normal_n3_p2": [0.04532310739159584, 0.04611865058541298, 0.05276470258831978, 0.07209901511669159, 0.06532846391201019, 0.6628580093383789, 0.01452513225376606], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.228276789188385, 0.3216448426246643, 0.04682306945323944, 0.015429222024977207, 0.021359313279390335, 0.060158878564834595, 0.2644903063774109], "reduce_n2_p1": [0.10646586120128632, 0.3829585015773773, 0.2624100148677826, 0.04231811687350273, 0.026890859007835388, 0.08505470305681229, 0.04325861111283302], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02625204436480999, 0.029488326981663704, 0.028302311897277832, 0.013844791799783707, 0.8196273446083069, 0.02839660830795765, 0.03093027137219906], "reduce_n3_p1": [0.7140010595321655, 0.083688884973526, 0.013628345914185047, 0.014843229204416275, 0.00232862401753664, 0.11007554829120636, 0.0026642002630978823], "reduce_n3_p2": [0.016978498548269272, 0.005182224791496992, 0.039978768676519394, 0.08142106980085373, 0.017899487167596817, 0.030048297718167305, 0.19160670042037964], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.002147233346477151, 0.12726366519927979, 0.6442078351974487, 0.030811777338385582, 6.256213964661583e-05, 0.0044307769276201725, 0.00026428201817907393], "normal_n2_p1": [0.010754590854048729, 0.9544600248336792, 0.01189088448882103, 0.006414458621293306, 0.004166445694863796, 0.002996639581397176, 0.003821923630312085], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.007377968169748783, 0.006568117532879114, 0.006429795175790787, 0.9338521361351013, 0.02035393752157688, 0.012778538279235363, 0.006405430380254984], "normal_n3_p1": [0.03404807671904564, 0.061015527695417404, 0.0864720568060875, 0.17188242077827454, 0.4511755108833313, 0.043107770383358, 0.03855418041348457], "normal_n3_p2": [0.043981023132801056, 0.0440424382686615, 0.04437561705708504, 0.07405294477939606, 0.12861798703670502, 0.5966524481773376, 0.01643219031393528], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.15680254995822906, 0.3515738248825073, 0.03698064386844635, 0.016365477815270424, 0.023714080452919006, 0.03500659018754959, 0.35089603066444397], "reduce_n2_p1": [0.03279680758714676, 0.010357766412198544, 0.5480183362960815, 0.03600509464740753, 0.030999239534139633, 0.2273155152797699, 0.04495326429605484], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04143299534916878, 0.037045273929834366, 0.04414660483598709, 0.023457670584321022, 0.7399993538856506, 0.04127410054206848, 0.03441575542092323], "reduce_n3_p1": [0.8794779181480408, 0.04264917969703674, 0.01158597506582737, 0.011013279668986797, 0.002341071842238307, 0.02502232789993286, 0.0028276564553380013], "reduce_n3_p2": [0.013757319189608097, 0.004221299197524786, 0.025648022070527077, 0.06399226188659668, 0.01583322137594223, 0.013615071773529053, 0.09988261759281158], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.002147233346477151, 0.12726366519927979, 0.6442078351974487, 0.030811777338385582, 6.256213964661583e-05, 0.0044307769276201725, 0.00026428201817907393], "normal_n2_p1": [0.010754590854048729, 0.9544600248336792, 0.01189088448882103, 0.006414458621293306, 0.004166445694863796, 0.002996639581397176, 0.003821923630312085], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.007377968169748783, 0.006568117532879114, 0.006429795175790787, 0.9338521361351013, 0.02035393752157688, 0.012778538279235363, 0.006405430380254984], "normal_n3_p1": [0.03404807671904564, 0.061015527695417404, 0.0864720568060875, 0.17188242077827454, 0.4511755108833313, 0.043107770383358, 0.03855418041348457], "normal_n3_p2": [0.043981023132801056, 0.0440424382686615, 0.04437561705708504, 0.07405294477939606, 0.12861798703670502, 0.5966524481773376, 0.01643219031393528], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.15680254995822906, 0.3515738248825073, 0.03698064386844635, 0.016365477815270424, 0.023714080452919006, 0.03500659018754959, 0.35089603066444397], "reduce_n2_p1": [0.03279680758714676, 0.010357766412198544, 0.5480183362960815, 0.03600509464740753, 0.030999239534139633, 0.2273155152797699, 0.04495326429605484], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04143299534916878, 0.037045273929834366, 0.04414660483598709, 0.023457670584321022, 0.7399993538856506, 0.04127410054206848, 0.03441575542092323], "reduce_n3_p1": [0.8794779181480408, 0.04264917969703674, 0.01158597506582737, 0.011013279668986797, 0.002341071842238307, 0.02502232789993286, 0.0028276564553380013], "reduce_n3_p2": [0.013757319189608097, 0.004221299197524786, 0.025648022070527077, 0.06399226188659668, 0.01583322137594223, 0.013615071773529053, 0.09988261759281158], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0031687712762504816, 0.1280943900346756, 0.7747252583503723, 0.02637890912592411, 7.699551497353241e-05, 0.005057282280176878, 0.000337724486598745], "normal_n2_p1": [0.017726048827171326, 0.9171060919761658, 0.01956474967300892, 0.01259632594883442, 0.008271466940641403, 0.005851232912391424, 0.007836079224944115], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0032456594053655863, 0.003039903938770294, 0.002964820945635438, 0.9688807129859924, 0.010226293466985226, 0.006527554243803024, 0.002476311521604657], "normal_n3_p1": [0.02946920320391655, 0.04043380543589592, 0.03634326532483101, 0.2774888575077057, 0.49964407086372375, 0.03341788426041603, 0.029591228812932968], "normal_n3_p2": [0.031032299622893333, 0.036693476140499115, 0.039182402193546295, 0.08991989493370056, 0.1620481014251709, 0.5456986427307129, 0.02362537570297718], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.15932226181030273, 0.4303222894668579, 0.03453536704182625, 0.020388159900903702, 0.02960103563964367, 0.02784964255988598, 0.2680121660232544], "reduce_n2_p1": [0.018511246889829636, 0.001924810465425253, 0.27776068449020386, 0.03469358757138252, 0.03528570383787155, 0.469967782497406, 0.057282883673906326], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06172233819961548, 0.0392528660595417, 0.03295911103487015, 0.023771211504936218, 0.7606453895568848, 0.02666994370520115, 0.025682998821139336], "reduce_n3_p1": [0.8567867279052734, 0.04376400262117386, 0.021234741434454918, 0.018176281824707985, 0.00536675751209259, 0.02033095248043537, 0.006878174375742674], "reduce_n3_p2": [0.02276998572051525, 0.007516152691096067, 0.03569282218813896, 0.05783264338970184, 0.022769538685679436, 0.01388768944889307, 0.11463777720928192], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0031687712762504816, 0.1280943900346756, 0.7747252583503723, 0.02637890912592411, 7.699551497353241e-05, 0.005057282280176878, 0.000337724486598745], "normal_n2_p1": [0.017726048827171326, 0.9171060919761658, 0.01956474967300892, 0.01259632594883442, 0.008271466940641403, 0.005851232912391424, 0.007836079224944115], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0032456594053655863, 0.003039903938770294, 0.002964820945635438, 0.9688807129859924, 0.010226293466985226, 0.006527554243803024, 0.002476311521604657], "normal_n3_p1": [0.02946920320391655, 0.04043380543589592, 0.03634326532483101, 0.2774888575077057, 0.49964407086372375, 0.03341788426041603, 0.029591228812932968], "normal_n3_p2": [0.031032299622893333, 0.036693476140499115, 0.039182402193546295, 0.08991989493370056, 0.1620481014251709, 0.5456986427307129, 0.02362537570297718], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.15932226181030273, 0.4303222894668579, 0.03453536704182625, 0.020388159900903702, 0.02960103563964367, 0.02784964255988598, 0.2680121660232544], "reduce_n2_p1": [0.018511246889829636, 0.001924810465425253, 0.27776068449020386, 0.03469358757138252, 0.03528570383787155, 0.469967782497406, 0.057282883673906326], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06172233819961548, 0.0392528660595417, 0.03295911103487015, 0.023771211504936218, 0.7606453895568848, 0.02666994370520115, 0.025682998821139336], "reduce_n3_p1": [0.8567867279052734, 0.04376400262117386, 0.021234741434454918, 0.018176281824707985, 0.00536675751209259, 0.02033095248043537, 0.006878174375742674], "reduce_n3_p2": [0.02276998572051525, 0.007516152691096067, 0.03569282218813896, 0.05783264338970184, 0.022769538685679436, 0.01388768944889307, 0.11463777720928192], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.008030245080590248, 0.15138466656208038, 0.6679033637046814, 0.07420129328966141, 0.00023559101100545377, 0.011033708229660988, 0.0009758627275004983], "normal_n2_p1": [0.029948782175779343, 0.8396124243736267, 0.03606358543038368, 0.025823328644037247, 0.016300465911626816, 0.012114170007407665, 0.01743651181459427], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0033053795341402292, 0.003208569483831525, 0.003163271816447377, 0.9694744944572449, 0.00918513908982277, 0.006076349876821041, 0.0023936405777931213], "normal_n3_p1": [0.01565038040280342, 0.0169961079955101, 0.01229330524802208, 0.07427509129047394, 0.8364021182060242, 0.014778840355575085, 0.015198311768472195], "normal_n3_p2": [0.04040436074137688, 0.048864979296922684, 0.06212610751390457, 0.15953940153121948, 0.21656090021133423, 0.28723499178886414, 0.04861032962799072], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04156972095370293, 0.13145548105239868, 0.03076273389160633, 0.021289037540555, 0.037789348512887955, 0.025612354278564453, 0.6782418489456177], "reduce_n2_p1": [0.0074796853587031364, 0.0006178091862238944, 0.04123030602931976, 0.018377196043729782, 0.01841866225004196, 0.8354006409645081, 0.03000803478062153], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.11238672584295273, 0.05619756504893303, 0.029655441641807556, 0.03331549093127251, 0.6709746718406677, 0.02686121314764023, 0.03302597999572754], "reduce_n3_p1": [0.8185696005821228, 0.05070504546165466, 0.029697109013795853, 0.018938401713967323, 0.012546336278319359, 0.02725216932594776, 0.016753477975726128], "reduce_n3_p2": [0.04648026451468468, 0.0191483274102211, 0.06716305017471313, 0.07225874811410904, 0.04683394730091095, 0.02585684135556221, 0.24468587338924408], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.008030245080590248, 0.15138466656208038, 0.6679033637046814, 0.07420129328966141, 0.00023559101100545377, 0.011033708229660988, 0.0009758627275004983], "normal_n2_p1": [0.029948782175779343, 0.8396124243736267, 0.03606358543038368, 0.025823328644037247, 0.016300465911626816, 0.012114170007407665, 0.01743651181459427], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0033053795341402292, 0.003208569483831525, 0.003163271816447377, 0.9694744944572449, 0.00918513908982277, 0.006076349876821041, 0.0023936405777931213], "normal_n3_p1": [0.01565038040280342, 0.0169961079955101, 0.01229330524802208, 0.07427509129047394, 0.8364021182060242, 0.014778840355575085, 0.015198311768472195], "normal_n3_p2": [0.04040436074137688, 0.048864979296922684, 0.06212610751390457, 0.15953940153121948, 0.21656090021133423, 0.28723499178886414, 0.04861032962799072], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04156972095370293, 0.13145548105239868, 0.03076273389160633, 0.021289037540555, 0.037789348512887955, 0.025612354278564453, 0.6782418489456177], "reduce_n2_p1": [0.0074796853587031364, 0.0006178091862238944, 0.04123030602931976, 0.018377196043729782, 0.01841866225004196, 0.8354006409645081, 0.03000803478062153], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.11238672584295273, 0.05619756504893303, 0.029655441641807556, 0.03331549093127251, 0.6709746718406677, 0.02686121314764023, 0.03302597999572754], "reduce_n3_p1": [0.8185696005821228, 0.05070504546165466, 0.029697109013795853, 0.018938401713967323, 0.012546336278319359, 0.02725216932594776, 0.016753477975726128], "reduce_n3_p2": [0.04648026451468468, 0.0191483274102211, 0.06716305017471313, 0.07225874811410904, 0.04683394730091095, 0.02585684135556221, 0.24468587338924408], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.008853915147483349, 0.15388266742229462, 0.7979124784469604, 0.013420640490949154, 0.00034716801019385457, 0.010397905483841896, 0.0012875013053417206], "normal_n2_p1": [0.0412287712097168, 0.7359606027603149, 0.05145617201924324, 0.046973831951618195, 0.02995133586227894, 0.02151712216436863, 0.032119229435920715], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0055941385217010975, 0.005640251096338034, 0.00551627716049552, 0.9543984532356262, 0.01077976729720831, 0.008092975243926048, 0.0037713416386395693], "normal_n3_p1": [0.034783028066158295, 0.03835373744368553, 0.0262669138610363, 0.14871037006378174, 0.6706580519676208, 0.02728462405502796, 0.032232433557510376], "normal_n3_p2": [0.058503441512584686, 0.06967280060052872, 0.13611075282096863, 0.31205177307128906, 0.006935534067451954, 0.3779086470603943, 0.020756132900714874], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.025390468537807465, 0.07921444624662399, 0.03864334896206856, 0.02669496461749077, 0.05540436506271362, 0.034890323877334595, 0.6919645667076111], "reduce_n2_p1": [0.007425626739859581, 0.0008097674581222236, 0.023966651409864426, 0.019480090588331223, 0.022831862792372704, 0.8436490893363953, 0.030105004087090492], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.007727507036179304, 0.014433409087359905, 0.009024188853800297, 0.01505187340080738, 0.9211623072624207, 0.008712098933756351, 0.010708612389862537], "reduce_n3_p1": [0.7906821370124817, 0.05338378623127937, 0.029426978901028633, 0.021656891331076622, 0.022149695083498955, 0.027532145380973816, 0.03005305491387844], "reduce_n3_p2": [0.09581076353788376, 0.03801777586340904, 0.09796128422021866, 0.0726858377456665, 0.05535239726305008, 0.03552873432636261, 0.06347738206386566], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.008853915147483349, 0.15388266742229462, 0.7979124784469604, 0.013420640490949154, 0.00034716801019385457, 0.010397905483841896, 0.0012875013053417206], "normal_n2_p1": [0.0412287712097168, 0.7359606027603149, 0.05145617201924324, 0.046973831951618195, 0.02995133586227894, 0.02151712216436863, 0.032119229435920715], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0055941385217010975, 0.005640251096338034, 0.00551627716049552, 0.9543984532356262, 0.01077976729720831, 0.008092975243926048, 0.0037713416386395693], "normal_n3_p1": [0.034783028066158295, 0.03835373744368553, 0.0262669138610363, 0.14871037006378174, 0.6706580519676208, 0.02728462405502796, 0.032232433557510376], "normal_n3_p2": [0.058503441512584686, 0.06967280060052872, 0.13611075282096863, 0.31205177307128906, 0.006935534067451954, 0.3779086470603943, 0.020756132900714874], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.025390468537807465, 0.07921444624662399, 0.03864334896206856, 0.02669496461749077, 0.05540436506271362, 0.034890323877334595, 0.6919645667076111], "reduce_n2_p1": [0.007425626739859581, 0.0008097674581222236, 0.023966651409864426, 0.019480090588331223, 0.022831862792372704, 0.8436490893363953, 0.030105004087090492], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.007727507036179304, 0.014433409087359905, 0.009024188853800297, 0.01505187340080738, 0.9211623072624207, 0.008712098933756351, 0.010708612389862537], "reduce_n3_p1": [0.7906821370124817, 0.05338378623127937, 0.029426978901028633, 0.021656891331076622, 0.022149695083498955, 0.027532145380973816, 0.03005305491387844], "reduce_n3_p2": [0.09581076353788376, 0.03801777586340904, 0.09796128422021866, 0.0726858377456665, 0.05535239726305008, 0.03552873432636261, 0.06347738206386566], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013372906483709812, 0.19134099781513214, 0.7620739340782166, 0.007455458398908377, 0.0007914243033155799, 0.01472175121307373, 0.0025642516557127237], "normal_n2_p1": [0.05009058490395546, 0.6659491062164307, 0.05289839208126068, 0.0588233657181263, 0.04285537451505661, 0.026653876528143883, 0.04345568269491196], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009729286655783653, 0.009951218031346798, 0.009912515990436077, 0.9249665141105652, 0.014407896436750889, 0.011639879085123539, 0.006902854889631271], "normal_n3_p1": [0.059300702065229416, 0.07244941592216492, 0.04691047593951225, 0.1321714222431183, 0.5557371377944946, 0.04103512316942215, 0.06130687892436981], "normal_n3_p2": [0.025891100987792015, 0.027282459661364555, 0.03630630299448967, 0.38397839665412903, 0.0011381368385627866, 0.5102349519729614, 0.010110327042639256], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03793035075068474, 0.11107891798019409, 0.07033470273017883, 0.04479987546801567, 0.07990572601556778, 0.06611791253089905, 0.5116060376167297], "reduce_n2_p1": [0.019080640748143196, 0.0030385563150048256, 0.04267456755042076, 0.044974349439144135, 0.055922795087099075, 0.6251822113990784, 0.07723850011825562], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0038354704156517982, 0.012747226282954216, 0.008162228390574455, 0.015938175842165947, 0.9245736598968506, 0.010003109462559223, 0.01039128191769123], "reduce_n3_p1": [0.8616576790809631, 0.03597521409392357, 0.016479643061757088, 0.015089478343725204, 0.019221285358071327, 0.01083723921328783, 0.02752179466187954], "reduce_n3_p2": [0.25074926018714905, 0.08391021192073822, 0.22897912561893463, 0.09965614229440689, 0.0640106275677681, 0.06156003475189209, 0.030612962320446968], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.013372906483709812, 0.19134099781513214, 0.7620739340782166, 0.007455458398908377, 0.0007914243033155799, 0.01472175121307373, 0.0025642516557127237], "normal_n2_p1": [0.05009058490395546, 0.6659491062164307, 0.05289839208126068, 0.0588233657181263, 0.04285537451505661, 0.026653876528143883, 0.04345568269491196], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009729286655783653, 0.009951218031346798, 0.009912515990436077, 0.9249665141105652, 0.014407896436750889, 0.011639879085123539, 0.006902854889631271], "normal_n3_p1": [0.059300702065229416, 0.07244941592216492, 0.04691047593951225, 0.1321714222431183, 0.5557371377944946, 0.04103512316942215, 0.06130687892436981], "normal_n3_p2": [0.025891100987792015, 0.027282459661364555, 0.03630630299448967, 0.38397839665412903, 0.0011381368385627866, 0.5102349519729614, 0.010110327042639256], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03793035075068474, 0.11107891798019409, 0.07033470273017883, 0.04479987546801567, 0.07990572601556778, 0.06611791253089905, 0.5116060376167297], "reduce_n2_p1": [0.019080640748143196, 0.0030385563150048256, 0.04267456755042076, 0.044974349439144135, 0.055922795087099075, 0.6251822113990784, 0.07723850011825562], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0038354704156517982, 0.012747226282954216, 0.008162228390574455, 0.015938175842165947, 0.9245736598968506, 0.010003109462559223, 0.01039128191769123], "reduce_n3_p1": [0.8616576790809631, 0.03597521409392357, 0.016479643061757088, 0.015089478343725204, 0.019221285358071327, 0.01083723921328783, 0.02752179466187954], "reduce_n3_p2": [0.25074926018714905, 0.08391021192073822, 0.22897912561893463, 0.09965614229440689, 0.0640106275677681, 0.06156003475189209, 0.030612962320446968], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0292152501642704, 0.35864296555519104, 0.5496879816055298, 0.010785814374685287, 0.0026134352665394545, 0.030886439606547356, 0.007449124474078417], "normal_n2_p1": [0.07100323587656021, 0.45305898785591125, 0.07752442359924316, 0.11065800487995148, 0.06812062859535217, 0.042907215654850006, 0.07480499893426895], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.015483304858207703, 0.015777207911014557, 0.01575442962348461, 0.884792149066925, 0.020400604233145714, 0.01666243188083172, 0.011718109250068665], "normal_n3_p1": [0.03634434565901756, 0.04349824786186218, 0.02907804772257805, 0.04845227673649788, 0.7600477337837219, 0.026368405669927597, 0.03635266795754433], "normal_n3_p2": [0.012255487963557243, 0.012923954986035824, 0.012393632903695107, 0.01853872276842594, 0.0005425024428404868, 0.9350224137306213, 0.005841023288667202], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03071197122335434, 0.06550385802984238, 0.06245550513267517, 0.03892502933740616, 0.06512795388698578, 0.0758078396320343, 0.611376941204071], "reduce_n2_p1": [0.042264942079782486, 0.009343686513602734, 0.08249516040086746, 0.09025026112794876, 0.10791948437690735, 0.1373113989830017, 0.12750230729579926], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005003783851861954, 0.017952464520931244, 0.011098499409854412, 0.02353525161743164, 0.8879849910736084, 0.01598770171403885, 0.014976052567362785], "reduce_n3_p1": [0.8623959422111511, 0.030900750309228897, 0.0162533950060606, 0.01533172931522131, 0.022228477522730827, 0.008546053431928158, 0.03211090713739395], "reduce_n3_p2": [0.38305965065956116, 0.09127429127693176, 0.21474741399288177, 0.08058957755565643, 0.047610387206077576, 0.07338406145572662, 0.019029920920729637], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0292152501642704, 0.35864296555519104, 0.5496879816055298, 0.010785814374685287, 0.0026134352665394545, 0.030886439606547356, 0.007449124474078417], "normal_n2_p1": [0.07100323587656021, 0.45305898785591125, 0.07752442359924316, 0.11065800487995148, 0.06812062859535217, 0.042907215654850006, 0.07480499893426895], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.015483304858207703, 0.015777207911014557, 0.01575442962348461, 0.884792149066925, 0.020400604233145714, 0.01666243188083172, 0.011718109250068665], "normal_n3_p1": [0.03634434565901756, 0.04349824786186218, 0.02907804772257805, 0.04845227673649788, 0.7600477337837219, 0.026368405669927597, 0.03635266795754433], "normal_n3_p2": [0.012255487963557243, 0.012923954986035824, 0.012393632903695107, 0.01853872276842594, 0.0005425024428404868, 0.9350224137306213, 0.005841023288667202], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03071197122335434, 0.06550385802984238, 0.06245550513267517, 0.03892502933740616, 0.06512795388698578, 0.0758078396320343, 0.611376941204071], "reduce_n2_p1": [0.042264942079782486, 0.009343686513602734, 0.08249516040086746, 0.09025026112794876, 0.10791948437690735, 0.1373113989830017, 0.12750230729579926], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005003783851861954, 0.017952464520931244, 0.011098499409854412, 0.02353525161743164, 0.8879849910736084, 0.01598770171403885, 0.014976052567362785], "reduce_n3_p1": [0.8623959422111511, 0.030900750309228897, 0.0162533950060606, 0.01533172931522131, 0.022228477522730827, 0.008546053431928158, 0.03211090713739395], "reduce_n3_p2": [0.38305965065956116, 0.09127429127693176, 0.21474741399288177, 0.08058957755565643, 0.047610387206077576, 0.07338406145572662, 0.019029920920729637], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08085187524557114, 0.5461488962173462, 0.19879315793514252, 0.029335297644138336, 0.008585559204220772, 0.08954673260450363, 0.022245483472943306], "normal_n2_p1": [0.11420062184333801, 0.620066225528717, 0.07624690234661102, 0.03201879560947418, 0.06596901267766953, 0.028288304805755615, 0.028169119730591774], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03325318917632103, 0.03188776597380638, 0.03403365984559059, 0.74045729637146, 0.04434957355260849, 0.033361684530973434, 0.03145156428217888], "normal_n3_p1": [0.07674300670623779, 0.12081504613161087, 0.08270692825317383, 0.09196214377880096, 0.46277910470962524, 0.058354951441287994, 0.0626394972205162], "normal_n3_p2": [0.00816042348742485, 0.00838908925652504, 0.0070112827233970165, 0.004619956947863102, 0.0005995383253321052, 0.9643236398696899, 0.0047196936793625355], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04928727075457573, 0.07717160880565643, 0.11513584852218628, 0.05405554175376892, 0.22453553974628448, 0.23766668140888214, 0.15958943963050842], "reduce_n2_p1": [0.0841669887304306, 0.023002924397587776, 0.17383962869644165, 0.143385112285614, 0.07647812366485596, 0.11969834566116333, 0.10582047700881958], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0068252235651016235, 0.01751769706606865, 0.01319542434066534, 0.028121955692768097, 0.8754059076309204, 0.017448265105485916, 0.017817672342061996], "reduce_n3_p1": [0.8084058165550232, 0.037306297570466995, 0.023339029401540756, 0.020943917334079742, 0.029634585604071617, 0.011424482800066471, 0.051139310002326965], "reduce_n3_p2": [0.03531210124492645, 0.08472508192062378, 0.29922497272491455, 0.1403113454580307, 0.10206957161426544, 0.16638058423995972, 0.027618667110800743], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08085187524557114, 0.5461488962173462, 0.19879315793514252, 0.029335297644138336, 0.008585559204220772, 0.08954673260450363, 0.022245483472943306], "normal_n2_p1": [0.11420062184333801, 0.620066225528717, 0.07624690234661102, 0.03201879560947418, 0.06596901267766953, 0.028288304805755615, 0.028169119730591774], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03325318917632103, 0.03188776597380638, 0.03403365984559059, 0.74045729637146, 0.04434957355260849, 0.033361684530973434, 0.03145156428217888], "normal_n3_p1": [0.07674300670623779, 0.12081504613161087, 0.08270692825317383, 0.09196214377880096, 0.46277910470962524, 0.058354951441287994, 0.0626394972205162], "normal_n3_p2": [0.00816042348742485, 0.00838908925652504, 0.0070112827233970165, 0.004619956947863102, 0.0005995383253321052, 0.9643236398696899, 0.0047196936793625355], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04928727075457573, 0.07717160880565643, 0.11513584852218628, 0.05405554175376892, 0.22453553974628448, 0.23766668140888214, 0.15958943963050842], "reduce_n2_p1": [0.0841669887304306, 0.023002924397587776, 0.17383962869644165, 0.143385112285614, 0.07647812366485596, 0.11969834566116333, 0.10582047700881958], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0068252235651016235, 0.01751769706606865, 0.01319542434066534, 0.028121955692768097, 0.8754059076309204, 0.017448265105485916, 0.017817672342061996], "reduce_n3_p1": [0.8084058165550232, 0.037306297570466995, 0.023339029401540756, 0.020943917334079742, 0.029634585604071617, 0.011424482800066471, 0.051139310002326965], "reduce_n3_p2": [0.03531210124492645, 0.08472508192062378, 0.29922497272491455, 0.1403113454580307, 0.10206957161426544, 0.16638058423995972, 0.027618667110800743], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1398746222257614, 0.4905247092247009, 0.126589834690094, 0.05139218270778656, 0.014692097902297974, 0.10975028574466705, 0.02811257168650627], "normal_n2_p1": [0.14618000388145447, 0.5132449269294739, 0.10357049852609634, 0.031050149351358414, 0.11059458553791046, 0.03491484746336937, 0.02372099459171295], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.10550650954246521, 0.09659340977668762, 0.0974065363407135, 0.36011621356010437, 0.07247753441333771, 0.06288397312164307, 0.08843790739774704], "normal_n3_p1": [0.14931806921958923, 0.30696675181388855, 0.14587301015853882, 0.07507925480604172, 0.05828540027141571, 0.09770316630601883, 0.11719988286495209], "normal_n3_p2": [0.010433944873511791, 0.010127699002623558, 0.008101128041744232, 0.0032183381263166666, 0.001239086501300335, 0.9578741788864136, 0.005778816528618336], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.033178042620420456, 0.04280934855341911, 0.1467597484588623, 0.04821033030748367, 0.5191106796264648, 0.052974775433540344, 0.0696474015712738], "reduce_n2_p1": [0.15808428823947906, 0.040584731847047806, 0.3771873712539673, 0.17035424709320068, 0.04176684468984604, 0.08264582604169846, 0.04672853648662567], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017901914194226265, 0.033516574651002884, 0.02875751070678234, 0.07540041953325272, 0.6992485523223877, 0.05059419199824333, 0.035796791315078735], "reduce_n3_p1": [0.8723465800285339, 0.026476411148905754, 0.018382864072918892, 0.01634751260280609, 0.017738746479153633, 0.009781121276319027, 0.024832243099808693], "reduce_n3_p2": [0.013808881863951683, 0.09881123155355453, 0.22542397677898407, 0.2093886137008667, 0.1421010047197342, 0.1819755882024765, 0.034824855625629425], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1398746222257614, 0.4905247092247009, 0.126589834690094, 0.05139218270778656, 0.014692097902297974, 0.10975028574466705, 0.02811257168650627], "normal_n2_p1": [0.14618000388145447, 0.5132449269294739, 0.10357049852609634, 0.031050149351358414, 0.11059458553791046, 0.03491484746336937, 0.02372099459171295], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.10550650954246521, 0.09659340977668762, 0.0974065363407135, 0.36011621356010437, 0.07247753441333771, 0.06288397312164307, 0.08843790739774704], "normal_n3_p1": [0.14931806921958923, 0.30696675181388855, 0.14587301015853882, 0.07507925480604172, 0.05828540027141571, 0.09770316630601883, 0.11719988286495209], "normal_n3_p2": [0.010433944873511791, 0.010127699002623558, 0.008101128041744232, 0.0032183381263166666, 0.001239086501300335, 0.9578741788864136, 0.005778816528618336], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.033178042620420456, 0.04280934855341911, 0.1467597484588623, 0.04821033030748367, 0.5191106796264648, 0.052974775433540344, 0.0696474015712738], "reduce_n2_p1": [0.15808428823947906, 0.040584731847047806, 0.3771873712539673, 0.17035424709320068, 0.04176684468984604, 0.08264582604169846, 0.04672853648662567], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017901914194226265, 0.033516574651002884, 0.02875751070678234, 0.07540041953325272, 0.6992485523223877, 0.05059419199824333, 0.035796791315078735], "reduce_n3_p1": [0.8723465800285339, 0.026476411148905754, 0.018382864072918892, 0.01634751260280609, 0.017738746479153633, 0.009781121276319027, 0.024832243099808693], "reduce_n3_p2": [0.013808881863951683, 0.09881123155355453, 0.22542397677898407, 0.2093886137008667, 0.1421010047197342, 0.1819755882024765, 0.034824855625629425], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08223035931587219, 0.32174208760261536, 0.1911238580942154, 0.0471571683883667, 0.030771443620324135, 0.21764983236789703, 0.05488862469792366], "normal_n2_p1": [0.07564448565244675, 0.4027306139469147, 0.19911739230155945, 0.05602174252271652, 0.10928881168365479, 0.050236426293849945, 0.039393629878759384], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.11749373376369476, 0.14781127870082855, 0.13350166380405426, 0.20195044577121735, 0.05517095699906349, 0.05752525478601456, 0.09212958067655563], "normal_n3_p1": [0.16503232717514038, 0.3211221694946289, 0.06777850538492203, 0.07468637079000473, 0.020878518000245094, 0.11737809330224991, 0.17981474101543427], "normal_n3_p2": [0.013455851003527641, 0.013792667537927628, 0.01074341032654047, 0.003709549317136407, 0.0029788995161652565, 0.9421008229255676, 0.007667943835258484], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03287828341126442, 0.04197394475340843, 0.17681482434272766, 0.0698433518409729, 0.41561946272850037, 0.02618366666138172, 0.04197116196155548], "reduce_n2_p1": [0.012408368289470673, 0.015756554901599884, 0.8201321959495544, 0.06524088233709335, 0.016319015994668007, 0.026752015575766563, 0.017698924988508224], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.031756412237882614, 0.045192018151283264, 0.03329796344041824, 0.08319389075040817, 0.6641817092895508, 0.03290886431932449, 0.039679933339357376], "reduce_n3_p1": [0.8277798891067505, 0.03162189945578575, 0.029052285477519035, 0.019359039142727852, 0.02033732645213604, 0.01640321873128414, 0.037066750228405], "reduce_n3_p2": [0.009558365680277348, 0.1535331755876541, 0.20916175842285156, 0.18831226229667664, 0.04771694168448448, 0.29544010758399963, 0.03733240067958832], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08223035931587219, 0.32174208760261536, 0.1911238580942154, 0.0471571683883667, 0.030771443620324135, 0.21764983236789703, 0.05488862469792366], "normal_n2_p1": [0.07564448565244675, 0.4027306139469147, 0.19911739230155945, 0.05602174252271652, 0.10928881168365479, 0.050236426293849945, 0.039393629878759384], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.11749373376369476, 0.14781127870082855, 0.13350166380405426, 0.20195044577121735, 0.05517095699906349, 0.05752525478601456, 0.09212958067655563], "normal_n3_p1": [0.16503232717514038, 0.3211221694946289, 0.06777850538492203, 0.07468637079000473, 0.020878518000245094, 0.11737809330224991, 0.17981474101543427], "normal_n3_p2": [0.013455851003527641, 0.013792667537927628, 0.01074341032654047, 0.003709549317136407, 0.0029788995161652565, 0.9421008229255676, 0.007667943835258484], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03287828341126442, 0.04197394475340843, 0.17681482434272766, 0.0698433518409729, 0.41561946272850037, 0.02618366666138172, 0.04197116196155548], "reduce_n2_p1": [0.012408368289470673, 0.015756554901599884, 0.8201321959495544, 0.06524088233709335, 0.016319015994668007, 0.026752015575766563, 0.017698924988508224], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.031756412237882614, 0.045192018151283264, 0.03329796344041824, 0.08319389075040817, 0.6641817092895508, 0.03290886431932449, 0.039679933339357376], "reduce_n3_p1": [0.8277798891067505, 0.03162189945578575, 0.029052285477519035, 0.019359039142727852, 0.02033732645213604, 0.01640321873128414, 0.037066750228405], "reduce_n3_p2": [0.009558365680277348, 0.1535331755876541, 0.20916175842285156, 0.18831226229667664, 0.04771694168448448, 0.29544010758399963, 0.03733240067958832], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06957316398620605, 0.15299682319164276, 0.10091357678174973, 0.09159300476312637, 0.03980312496423721, 0.4485306739807129, 0.038070403039455414], "normal_n2_p1": [0.11730831116437912, 0.23297370970249176, 0.12144888192415237, 0.12166991084814072, 0.10068606585264206, 0.10249511897563934, 0.05043433606624603], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.1594792902469635, 0.17649678885936737, 0.19269613921642303, 0.08857819437980652, 0.037720028311014175, 0.054863061755895615, 0.04515619948506355], "normal_n3_p1": [0.16022436320781708, 0.08013027161359787, 0.03254122659564018, 0.08069911599159241, 0.01424976997077465, 0.10760542750358582, 0.4610119163990021], "normal_n3_p2": [0.022120574489235878, 0.022261779755353928, 0.017047712579369545, 0.006158472504466772, 0.007529925554990768, 0.901147186756134, 0.012919556349515915], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02431543730199337, 0.03198312595486641, 0.11784501373767853, 0.08769446611404419, 0.6428367495536804, 0.014499638229608536, 0.031564269214868546], "reduce_n2_p1": [0.007426113355904818, 0.022172192111611366, 0.7469732165336609, 0.11390171945095062, 0.022206176072359085, 0.029067421332001686, 0.022025661543011665], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02868811972439289, 0.03262397646903992, 0.023447079584002495, 0.1190909594297409, 0.6546132564544678, 0.03482094779610634, 0.046635255217552185], "reduce_n3_p1": [0.5529549717903137, 0.066826730966568, 0.07057156413793564, 0.06440073251724243, 0.06014572083950043, 0.055791255086660385, 0.08228030055761337], "reduce_n3_p2": [0.007892617024481297, 0.2855188548564911, 0.3165181279182434, 0.06540367752313614, 0.0164751298725605, 0.2533036768436432, 0.025512121617794037], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06957316398620605, 0.15299682319164276, 0.10091357678174973, 0.09159300476312637, 0.03980312496423721, 0.4485306739807129, 0.038070403039455414], "normal_n2_p1": [0.11730831116437912, 0.23297370970249176, 0.12144888192415237, 0.12166991084814072, 0.10068606585264206, 0.10249511897563934, 0.05043433606624603], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.1594792902469635, 0.17649678885936737, 0.19269613921642303, 0.08857819437980652, 0.037720028311014175, 0.054863061755895615, 0.04515619948506355], "normal_n3_p1": [0.16022436320781708, 0.08013027161359787, 0.03254122659564018, 0.08069911599159241, 0.01424976997077465, 0.10760542750358582, 0.4610119163990021], "normal_n3_p2": [0.022120574489235878, 0.022261779755353928, 0.017047712579369545, 0.006158472504466772, 0.007529925554990768, 0.901147186756134, 0.012919556349515915], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02431543730199337, 0.03198312595486641, 0.11784501373767853, 0.08769446611404419, 0.6428367495536804, 0.014499638229608536, 0.031564269214868546], "reduce_n2_p1": [0.007426113355904818, 0.022172192111611366, 0.7469732165336609, 0.11390171945095062, 0.022206176072359085, 0.029067421332001686, 0.022025661543011665], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02868811972439289, 0.03262397646903992, 0.023447079584002495, 0.1190909594297409, 0.6546132564544678, 0.03482094779610634, 0.046635255217552185], "reduce_n3_p1": [0.5529549717903137, 0.066826730966568, 0.07057156413793564, 0.06440073251724243, 0.06014572083950043, 0.055791255086660385, 0.08228030055761337], "reduce_n3_p2": [0.007892617024481297, 0.2855188548564911, 0.3165181279182434, 0.06540367752313614, 0.0164751298725605, 0.2533036768436432, 0.025512121617794037], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0577470064163208, 0.10621390491724014, 0.06764356791973114, 0.5814103484153748, 0.036784376949071884, 0.05532563477754593, 0.036622416228055954], "normal_n2_p1": [0.10780876129865646, 0.4448287785053253, 0.14127779006958008, 0.10833971202373505, 0.032288797199726105, 0.09967847913503647, 0.0346326120197773], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.10825476050376892, 0.1021222248673439, 0.08860570937395096, 0.26528939604759216, 0.06997857242822647, 0.07724495977163315, 0.0688544288277626], "normal_n3_p1": [0.4378358721733093, 0.11043916642665863, 0.04047487676143646, 0.11857891082763672, 0.01637175679206848, 0.06650985032320023, 0.12517784535884857], "normal_n3_p2": [0.03489222377538681, 0.03404923155903816, 0.023528657853603363, 0.010316661559045315, 0.014696832746267319, 0.8470496535301208, 0.018379194661974907], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.060615528374910355, 0.07424894720315933, 0.3964945077896118, 0.23755334317684174, 0.08450525254011154, 0.024772753939032555, 0.06777769327163696], "reduce_n2_p1": [0.009172985330224037, 0.03773359954357147, 0.5861759185791016, 0.18254175782203674, 0.03576614707708359, 0.04979870095849037, 0.035805877298116684], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04050116613507271, 0.038927048444747925, 0.021792547777295113, 0.08269612491130829, 0.7022928595542908, 0.03258959576487541, 0.03737897425889969], "reduce_n3_p1": [0.22642304003238678, 0.08209815621376038, 0.10585607588291168, 0.1410292237997055, 0.11441235989332199, 0.10848485678434372, 0.14483271539211273], "reduce_n3_p2": [0.008770766668021679, 0.1225627064704895, 0.14823807775974274, 0.040560293942689896, 0.010218814946711063, 0.6249889731407166, 0.02086794190108776], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0577470064163208, 0.10621390491724014, 0.06764356791973114, 0.5814103484153748, 0.036784376949071884, 0.05532563477754593, 0.036622416228055954], "normal_n2_p1": [0.10780876129865646, 0.4448287785053253, 0.14127779006958008, 0.10833971202373505, 0.032288797199726105, 0.09967847913503647, 0.0346326120197773], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.10825476050376892, 0.1021222248673439, 0.08860570937395096, 0.26528939604759216, 0.06997857242822647, 0.07724495977163315, 0.0688544288277626], "normal_n3_p1": [0.4378358721733093, 0.11043916642665863, 0.04047487676143646, 0.11857891082763672, 0.01637175679206848, 0.06650985032320023, 0.12517784535884857], "normal_n3_p2": [0.03489222377538681, 0.03404923155903816, 0.023528657853603363, 0.010316661559045315, 0.014696832746267319, 0.8470496535301208, 0.018379194661974907], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.060615528374910355, 0.07424894720315933, 0.3964945077896118, 0.23755334317684174, 0.08450525254011154, 0.024772753939032555, 0.06777769327163696], "reduce_n2_p1": [0.009172985330224037, 0.03773359954357147, 0.5861759185791016, 0.18254175782203674, 0.03576614707708359, 0.04979870095849037, 0.035805877298116684], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.04050116613507271, 0.038927048444747925, 0.021792547777295113, 0.08269612491130829, 0.7022928595542908, 0.03258959576487541, 0.03737897425889969], "reduce_n3_p1": [0.22642304003238678, 0.08209815621376038, 0.10585607588291168, 0.1410292237997055, 0.11441235989332199, 0.10848485678434372, 0.14483271539211273], "reduce_n3_p2": [0.008770766668021679, 0.1225627064704895, 0.14823807775974274, 0.040560293942689896, 0.010218814946711063, 0.6249889731407166, 0.02086794190108776], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11008645594120026, 0.2689615488052368, 0.3108817934989929, 0.04098116606473923, 0.05362388491630554, 0.03335722163319588, 0.0584699809551239], "normal_n2_p1": [0.05044815316796303, 0.6088252663612366, 0.17080876231193542, 0.062384869903326035, 0.012477618642151356, 0.06547264009714127, 0.020292017608880997], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02494172751903534, 0.02952604740858078, 0.024911530315876007, 0.201558917760849, 0.1620345413684845, 0.08546090126037598, 0.08403230458498001], "normal_n3_p1": [0.1522541344165802, 0.1344146877527237, 0.06206671893596649, 0.2651771008968353, 0.020468533039093018, 0.07085583359003067, 0.1456260234117508], "normal_n3_p2": [0.02146105282008648, 0.023822858929634094, 0.026459382846951485, 0.016562381759285927, 0.025089019909501076, 0.8379085063934326, 0.023347927257418633], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.17364968359470367, 0.1327725350856781, 0.23734354972839355, 0.17316831648349762, 0.02521250955760479, 0.036134328693151474, 0.13038867712020874], "reduce_n2_p1": [0.008380955085158348, 0.025584865361452103, 0.7183756828308105, 0.07591107487678528, 0.043383754789829254, 0.03744124993681908, 0.05032791942358017], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.00887329038232565, 0.007729670032858849, 0.005849823821336031, 0.00699387863278389, 0.9567160606384277, 0.003707075957208872, 0.00617255037650466], "reduce_n3_p1": [0.030676305294036865, 0.04186538606882095, 0.2942289412021637, 0.1335878074169159, 0.08997179567813873, 0.2171824425458908, 0.059083834290504456], "reduce_n3_p2": [0.01477507222443819, 0.060536328703165054, 0.14532655477523804, 0.05923924595117569, 0.012934722937643528, 0.6410239934921265, 0.029562920331954956], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11008645594120026, 0.2689615488052368, 0.3108817934989929, 0.04098116606473923, 0.05362388491630554, 0.03335722163319588, 0.0584699809551239], "normal_n2_p1": [0.05044815316796303, 0.6088252663612366, 0.17080876231193542, 0.062384869903326035, 0.012477618642151356, 0.06547264009714127, 0.020292017608880997], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02494172751903534, 0.02952604740858078, 0.024911530315876007, 0.201558917760849, 0.1620345413684845, 0.08546090126037598, 0.08403230458498001], "normal_n3_p1": [0.1522541344165802, 0.1344146877527237, 0.06206671893596649, 0.2651771008968353, 0.020468533039093018, 0.07085583359003067, 0.1456260234117508], "normal_n3_p2": [0.02146105282008648, 0.023822858929634094, 0.026459382846951485, 0.016562381759285927, 0.025089019909501076, 0.8379085063934326, 0.023347927257418633], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.17364968359470367, 0.1327725350856781, 0.23734354972839355, 0.17316831648349762, 0.02521250955760479, 0.036134328693151474, 0.13038867712020874], "reduce_n2_p1": [0.008380955085158348, 0.025584865361452103, 0.7183756828308105, 0.07591107487678528, 0.043383754789829254, 0.03744124993681908, 0.05032791942358017], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.00887329038232565, 0.007729670032858849, 0.005849823821336031, 0.00699387863278389, 0.9567160606384277, 0.003707075957208872, 0.00617255037650466], "reduce_n3_p1": [0.030676305294036865, 0.04186538606882095, 0.2942289412021637, 0.1335878074169159, 0.08997179567813873, 0.2171824425458908, 0.059083834290504456], "reduce_n3_p2": [0.01477507222443819, 0.060536328703165054, 0.14532655477523804, 0.05923924595117569, 0.012934722937643528, 0.6410239934921265, 0.029562920331954956], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11992239952087402, 0.1704775094985962, 0.3342657685279846, 0.00842261966317892, 0.027509408071637154, 0.017560258507728577, 0.03397027775645256], "normal_n2_p1": [0.047586821019649506, 0.684889554977417, 0.12867790460586548, 0.03239770978689194, 0.0086973300203681, 0.07520043849945068, 0.016153845936059952], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018363595008850098, 0.021495483815670013, 0.018747670575976372, 0.13164786994457245, 0.3696146309375763, 0.08351117372512817, 0.10944543033838272], "normal_n3_p1": [0.13904604315757751, 0.19870112836360931, 0.0804087221622467, 0.0894281268119812, 0.021985841915011406, 0.07672305405139923, 0.1997370570898056], "normal_n3_p2": [0.028088830411434174, 0.031091419979929924, 0.041524630039930344, 0.03444644808769226, 0.03421423211693764, 0.7565305829048157, 0.035014111548662186], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1046096608042717, 0.10194074362516403, 0.23921643197536469, 0.15162938833236694, 0.017485961318016052, 0.039976708590984344, 0.256335586309433], "reduce_n2_p1": [0.005918480921536684, 0.013665816746652126, 0.8774276971817017, 0.022147957235574722, 0.014477556571364403, 0.018515920266509056, 0.032838910818099976], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005742861423641443, 0.004508100915700197, 0.004341051913797855, 0.0030537229031324387, 0.9744205474853516, 0.002296972554177046, 0.003557221731171012], "reduce_n3_p1": [0.011277803219854832, 0.028734736144542694, 0.431896835565567, 0.084503673017025, 0.017094993963837624, 0.2529865801334381, 0.0203079953789711], "reduce_n3_p2": [0.03465116024017334, 0.08804262429475784, 0.4227721095085144, 0.11164870858192444, 0.024026216939091682, 0.19726692140102386, 0.05162714794278145], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11992239952087402, 0.1704775094985962, 0.3342657685279846, 0.00842261966317892, 0.027509408071637154, 0.017560258507728577, 0.03397027775645256], "normal_n2_p1": [0.047586821019649506, 0.684889554977417, 0.12867790460586548, 0.03239770978689194, 0.0086973300203681, 0.07520043849945068, 0.016153845936059952], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018363595008850098, 0.021495483815670013, 0.018747670575976372, 0.13164786994457245, 0.3696146309375763, 0.08351117372512817, 0.10944543033838272], "normal_n3_p1": [0.13904604315757751, 0.19870112836360931, 0.0804087221622467, 0.0894281268119812, 0.021985841915011406, 0.07672305405139923, 0.1997370570898056], "normal_n3_p2": [0.028088830411434174, 0.031091419979929924, 0.041524630039930344, 0.03444644808769226, 0.03421423211693764, 0.7565305829048157, 0.035014111548662186], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1046096608042717, 0.10194074362516403, 0.23921643197536469, 0.15162938833236694, 0.017485961318016052, 0.039976708590984344, 0.256335586309433], "reduce_n2_p1": [0.005918480921536684, 0.013665816746652126, 0.8774276971817017, 0.022147957235574722, 0.014477556571364403, 0.018515920266509056, 0.032838910818099976], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005742861423641443, 0.004508100915700197, 0.004341051913797855, 0.0030537229031324387, 0.9744205474853516, 0.002296972554177046, 0.003557221731171012], "reduce_n3_p1": [0.011277803219854832, 0.028734736144542694, 0.431896835565567, 0.084503673017025, 0.017094993963837624, 0.2529865801334381, 0.0203079953789711], "reduce_n3_p2": [0.03465116024017334, 0.08804262429475784, 0.4227721095085144, 0.11164870858192444, 0.024026216939091682, 0.19726692140102386, 0.05162714794278145], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.07917607575654984, 0.05094156414270401, 0.8603639602661133, 0.0007149662123993039, 0.0024550179950892925, 0.0020958485547453165, 0.0023381514474749565], "normal_n2_p1": [0.08251544088125229, 0.3574208915233612, 0.32921266555786133, 0.062438901513814926, 0.012597472406923771, 0.12390880286693573, 0.02215907722711563], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03921786695718765, 0.042175062000751495, 0.035459551960229874, 0.4076634347438812, 0.07001791149377823, 0.16816215217113495, 0.1209132969379425], "normal_n3_p1": [0.21370255947113037, 0.23210589587688446, 0.10743412375450134, 0.05248386412858963, 0.026835046708583832, 0.08171658962965012, 0.1769757717847824], "normal_n3_p2": [0.03796328231692314, 0.03451967611908913, 0.047461070120334625, 0.03519876301288605, 0.026755956932902336, 0.7474408745765686, 0.037481941282749176], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.042890749871730804, 0.05133068189024925, 0.34941935539245605, 0.07875604927539825, 0.01666969805955887, 0.040003854781389236, 0.3727390468120575], "reduce_n2_p1": [0.010913076810538769, 0.02331898920238018, 0.8280845880508423, 0.023111209273338318, 0.015024226158857346, 0.022852707654237747, 0.057252801954746246], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.006267815362662077, 0.004783170763403177, 0.005349451210349798, 0.0032224988099187613, 0.9701249003410339, 0.00327676092274487, 0.00410282239317894], "reduce_n3_p1": [0.007923685945570469, 0.029087580740451813, 0.048190418630838394, 0.048335302621126175, 0.00735513586550951, 0.7375158071517944, 0.012410390190780163], "reduce_n3_p2": [0.04431011900305748, 0.049766480922698975, 0.1403665691614151, 0.11061570793390274, 0.042434483766555786, 0.44924721121788025, 0.059932105243206024], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.07917607575654984, 0.05094156414270401, 0.8603639602661133, 0.0007149662123993039, 0.0024550179950892925, 0.0020958485547453165, 0.0023381514474749565], "normal_n2_p1": [0.08251544088125229, 0.3574208915233612, 0.32921266555786133, 0.062438901513814926, 0.012597472406923771, 0.12390880286693573, 0.02215907722711563], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03921786695718765, 0.042175062000751495, 0.035459551960229874, 0.4076634347438812, 0.07001791149377823, 0.16816215217113495, 0.1209132969379425], "normal_n3_p1": [0.21370255947113037, 0.23210589587688446, 0.10743412375450134, 0.05248386412858963, 0.026835046708583832, 0.08171658962965012, 0.1769757717847824], "normal_n3_p2": [0.03796328231692314, 0.03451967611908913, 0.047461070120334625, 0.03519876301288605, 0.026755956932902336, 0.7474408745765686, 0.037481941282749176], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.042890749871730804, 0.05133068189024925, 0.34941935539245605, 0.07875604927539825, 0.01666969805955887, 0.040003854781389236, 0.3727390468120575], "reduce_n2_p1": [0.010913076810538769, 0.02331898920238018, 0.8280845880508423, 0.023111209273338318, 0.015024226158857346, 0.022852707654237747, 0.057252801954746246], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.006267815362662077, 0.004783170763403177, 0.005349451210349798, 0.0032224988099187613, 0.9701249003410339, 0.00327676092274487, 0.00410282239317894], "reduce_n3_p1": [0.007923685945570469, 0.029087580740451813, 0.048190418630838394, 0.048335302621126175, 0.00735513586550951, 0.7375158071517944, 0.012410390190780163], "reduce_n3_p2": [0.04431011900305748, 0.049766480922698975, 0.1403665691614151, 0.11061570793390274, 0.042434483766555786, 0.44924721121788025, 0.059932105243206024], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09304478019475937, 0.03836386278271675, 0.8642916083335876, 0.00043158483458682895, 0.0012719908263534307, 0.0012450653593987226, 0.0010725470492616296], "normal_n2_p1": [0.11534683406352997, 0.33825626969337463, 0.2262267768383026, 0.07555652409791946, 0.016948023810982704, 0.1834137886762619, 0.029404345899820328], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.031053844839334488, 0.020886888727545738, 0.024562250822782516, 0.5891256332397461, 0.021496254950761795, 0.17381533980369568, 0.10938860476016998], "normal_n3_p1": [0.44439369440078735, 0.2279980629682541, 0.07742571085691452, 0.028705764561891556, 0.030879247933626175, 0.0780731663107872, 0.07606879621744156], "normal_n3_p2": [0.05593280494213104, 0.040727972984313965, 0.043195974081754684, 0.04797833040356636, 0.0340881273150444, 0.706059992313385, 0.037024278193712234], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.055679962038993835, 0.06801201403141022, 0.4847429096698761, 0.05919652804732323, 0.02151026390492916, 0.045103296637535095, 0.22745639085769653], "reduce_n2_p1": [0.011892725713551044, 0.02041320502758026, 0.8826523423194885, 0.016830282285809517, 0.010326451621949673, 0.01571069471538067, 0.02886131778359413], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.015010873787105083, 0.010088623501360416, 0.010554633103311062, 0.006322333589196205, 0.9335334300994873, 0.00827054399996996, 0.008495792746543884], "reduce_n3_p1": [0.019167140126228333, 0.073963962495327, 0.046359408646821976, 0.28867319226264954, 0.01596257835626602, 0.32452693581581116, 0.030609605833888054], "reduce_n3_p2": [0.08795333653688431, 0.06299635767936707, 0.3535982072353363, 0.05167453736066818, 0.062229424715042114, 0.19266469776630402, 0.06670591980218887], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09304478019475937, 0.03836386278271675, 0.8642916083335876, 0.00043158483458682895, 0.0012719908263534307, 0.0012450653593987226, 0.0010725470492616296], "normal_n2_p1": [0.11534683406352997, 0.33825626969337463, 0.2262267768383026, 0.07555652409791946, 0.016948023810982704, 0.1834137886762619, 0.029404345899820328], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.031053844839334488, 0.020886888727545738, 0.024562250822782516, 0.5891256332397461, 0.021496254950761795, 0.17381533980369568, 0.10938860476016998], "normal_n3_p1": [0.44439369440078735, 0.2279980629682541, 0.07742571085691452, 0.028705764561891556, 0.030879247933626175, 0.0780731663107872, 0.07606879621744156], "normal_n3_p2": [0.05593280494213104, 0.040727972984313965, 0.043195974081754684, 0.04797833040356636, 0.0340881273150444, 0.706059992313385, 0.037024278193712234], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.055679962038993835, 0.06801201403141022, 0.4847429096698761, 0.05919652804732323, 0.02151026390492916, 0.045103296637535095, 0.22745639085769653], "reduce_n2_p1": [0.011892725713551044, 0.02041320502758026, 0.8826523423194885, 0.016830282285809517, 0.010326451621949673, 0.01571069471538067, 0.02886131778359413], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.015010873787105083, 0.010088623501360416, 0.010554633103311062, 0.006322333589196205, 0.9335334300994873, 0.00827054399996996, 0.008495792746543884], "reduce_n3_p1": [0.019167140126228333, 0.073963962495327, 0.046359408646821976, 0.28867319226264954, 0.01596257835626602, 0.32452693581581116, 0.030609605833888054], "reduce_n3_p2": [0.08795333653688431, 0.06299635767936707, 0.3535982072353363, 0.05167453736066818, 0.062229424715042114, 0.19266469776630402, 0.06670591980218887], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.3808390498161316, 0.0867106020450592, 0.5228129029273987, 0.0012321773683652282, 0.002800279064103961, 0.002913788193836808, 0.0023046969436109066], "normal_n2_p1": [0.15820004045963287, 0.5329362154006958, 0.1910722255706787, 0.027988137677311897, 0.016503697261214256, 0.039601851254701614, 0.019242452457547188], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01815844513475895, 0.011963881552219391, 0.014683022163808346, 0.8492308259010315, 0.009007244370877743, 0.0524505078792572, 0.035617195069789886], "normal_n3_p1": [0.3765426576137543, 0.2739911675453186, 0.08843981474637985, 0.025630110874772072, 0.04267730936408043, 0.08329343050718307, 0.07949316501617432], "normal_n3_p2": [0.02662804163992405, 0.032862063497304916, 0.0264776311814785, 0.038572847843170166, 0.027652114629745483, 0.8046846389770508, 0.019579093903303146], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08353127539157867, 0.11269687861204147, 0.2883871793746948, 0.08675108104944229, 0.03292082995176315, 0.03987223282456398, 0.31857776641845703], "reduce_n2_p1": [0.02449752762913704, 0.04231908172369003, 0.8007106781005859, 0.027771567925810814, 0.019120914861559868, 0.024286529049277306, 0.03450511768460274], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.020103277638554573, 0.015490245074033737, 0.01784655824303627, 0.010500764474272728, 0.8908390998840332, 0.015699991956353188, 0.013938942924141884], "reduce_n3_p1": [0.037288013845682144, 0.31011685729026794, 0.0365135595202446, 0.05978758633136749, 0.02786884270608425, 0.018868718296289444, 0.04966718703508377], "reduce_n3_p2": [0.11128351092338562, 0.07580762356519699, 0.4887363314628601, 0.02814369462430477, 0.060349151492118835, 0.130520299077034, 0.03738816827535629], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.3808390498161316, 0.0867106020450592, 0.5228129029273987, 0.0012321773683652282, 0.002800279064103961, 0.002913788193836808, 0.0023046969436109066], "normal_n2_p1": [0.15820004045963287, 0.5329362154006958, 0.1910722255706787, 0.027988137677311897, 0.016503697261214256, 0.039601851254701614, 0.019242452457547188], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01815844513475895, 0.011963881552219391, 0.014683022163808346, 0.8492308259010315, 0.009007244370877743, 0.0524505078792572, 0.035617195069789886], "normal_n3_p1": [0.3765426576137543, 0.2739911675453186, 0.08843981474637985, 0.025630110874772072, 0.04267730936408043, 0.08329343050718307, 0.07949316501617432], "normal_n3_p2": [0.02662804163992405, 0.032862063497304916, 0.0264776311814785, 0.038572847843170166, 0.027652114629745483, 0.8046846389770508, 0.019579093903303146], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08353127539157867, 0.11269687861204147, 0.2883871793746948, 0.08675108104944229, 0.03292082995176315, 0.03987223282456398, 0.31857776641845703], "reduce_n2_p1": [0.02449752762913704, 0.04231908172369003, 0.8007106781005859, 0.027771567925810814, 0.019120914861559868, 0.024286529049277306, 0.03450511768460274], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.020103277638554573, 0.015490245074033737, 0.01784655824303627, 0.010500764474272728, 0.8908390998840332, 0.015699991956353188, 0.013938942924141884], "reduce_n3_p1": [0.037288013845682144, 0.31011685729026794, 0.0365135595202446, 0.05978758633136749, 0.02786884270608425, 0.018868718296289444, 0.04966718703508377], "reduce_n3_p2": [0.11128351092338562, 0.07580762356519699, 0.4887363314628601, 0.02814369462430477, 0.060349151492118835, 0.130520299077034, 0.03738816827535629], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.808535099029541, 0.0902196392416954, 0.08842581510543823, 0.002062871353700757, 0.0035744679626077414, 0.003748133312910795, 0.0029509717132896185], "normal_n2_p1": [0.20698364078998566, 0.6320315003395081, 0.07041799277067184, 0.019638946279883385, 0.02061452902853489, 0.015562759712338448, 0.018037810921669006], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.026765404269099236, 0.017524417489767075, 0.022554557770490646, 0.8179789185523987, 0.011355536989867687, 0.04509177803993225, 0.046652283519506454], "normal_n3_p1": [0.18678878247737885, 0.3299208879470825, 0.13120092451572418, 0.02650374360382557, 0.06337808072566986, 0.09399367868900299, 0.13490618765354156], "normal_n3_p2": [0.011784201487898827, 0.018981926143169403, 0.015083136968314648, 0.03985301032662392, 0.014000073075294495, 0.8758883476257324, 0.010224772617220879], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.12874451279640198, 0.23991583287715912, 0.06311239302158356, 0.021735941991209984, 0.02074015513062477, 0.01869910955429077, 0.4874945878982544], "reduce_n2_p1": [0.04228641465306282, 0.07066386938095093, 0.6671353578567505, 0.044110432267189026, 0.03878483921289444, 0.03917381912469864, 0.04770417511463165], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06582170724868774, 0.04237642511725426, 0.04344780743122101, 0.0230491291731596, 0.7116637229919434, 0.04264784976840019, 0.02940250188112259], "reduce_n3_p1": [0.01666824147105217, 0.09377699345350266, 0.008795318193733692, 0.0163557231426239, 0.014239050447940826, 0.001323188073001802, 0.017132462933659554], "reduce_n3_p2": [0.18027281761169434, 0.0922192931175232, 0.4511425495147705, 0.02485126443207264, 0.06383202224969864, 0.0798066183924675, 0.041698306798934937], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.808535099029541, 0.0902196392416954, 0.08842581510543823, 0.002062871353700757, 0.0035744679626077414, 0.003748133312910795, 0.0029509717132896185], "normal_n2_p1": [0.20698364078998566, 0.6320315003395081, 0.07041799277067184, 0.019638946279883385, 0.02061452902853489, 0.015562759712338448, 0.018037810921669006], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.026765404269099236, 0.017524417489767075, 0.022554557770490646, 0.8179789185523987, 0.011355536989867687, 0.04509177803993225, 0.046652283519506454], "normal_n3_p1": [0.18678878247737885, 0.3299208879470825, 0.13120092451572418, 0.02650374360382557, 0.06337808072566986, 0.09399367868900299, 0.13490618765354156], "normal_n3_p2": [0.011784201487898827, 0.018981926143169403, 0.015083136968314648, 0.03985301032662392, 0.014000073075294495, 0.8758883476257324, 0.010224772617220879], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.12874451279640198, 0.23991583287715912, 0.06311239302158356, 0.021735941991209984, 0.02074015513062477, 0.01869910955429077, 0.4874945878982544], "reduce_n2_p1": [0.04228641465306282, 0.07066386938095093, 0.6671353578567505, 0.044110432267189026, 0.03878483921289444, 0.03917381912469864, 0.04770417511463165], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06582170724868774, 0.04237642511725426, 0.04344780743122101, 0.0230491291731596, 0.7116637229919434, 0.04264784976840019, 0.02940250188112259], "reduce_n3_p1": [0.01666824147105217, 0.09377699345350266, 0.008795318193733692, 0.0163557231426239, 0.014239050447940826, 0.001323188073001802, 0.017132462933659554], "reduce_n3_p2": [0.18027281761169434, 0.0922192931175232, 0.4511425495147705, 0.02485126443207264, 0.06383202224969864, 0.0798066183924675, 0.041698306798934937], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9120282530784607, 0.055071596056222916, 0.018677489832043648, 0.002794406609609723, 0.0036934197414666414, 0.003962127026170492, 0.0031655733473598957], "normal_n2_p1": [0.324957013130188, 0.5578911900520325, 0.030759088695049286, 0.01656743511557579, 0.021200357005000114, 0.010961604304611683, 0.01907283626496792], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05434262752532959, 0.03396362438797951, 0.04440843313932419, 0.6718589663505554, 0.019981736317276955, 0.059358034282922745, 0.08856645971536636], "normal_n3_p1": [0.30944302678108215, 0.25263407826423645, 0.08418663591146469, 0.026541125029325485, 0.07692419737577438, 0.07654513418674469, 0.14433103799819946], "normal_n3_p2": [0.013756174594163895, 0.023990148678421974, 0.01920386217534542, 0.037716999650001526, 0.012364139780402184, 0.8684405088424683, 0.010753651149570942], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.15952831506729126, 0.16374324262142181, 0.02289077267050743, 0.011333009228110313, 0.01524357683956623, 0.013197488151490688, 0.5969334840774536], "reduce_n2_p1": [0.059410274028778076, 0.09616611152887344, 0.6058325171470642, 0.048776090145111084, 0.03974781930446625, 0.04627282917499542, 0.04505082219839096], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.15036238729953766, 0.06647302210330963, 0.08783652633428574, 0.03508053719997406, 0.44120314717292786, 0.07293625921010971, 0.06765957176685333], "reduce_n3_p1": [0.061419203877449036, 0.397763192653656, 0.0237487331032753, 0.04071689024567604, 0.05241730436682701, 0.002828992437571287, 0.050058621913194656], "reduce_n3_p2": [0.3712809681892395, 0.09200799465179443, 0.16878917813301086, 0.026197748258709908, 0.08284125477075577, 0.15147905051708221, 0.04900654777884483], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9120282530784607, 0.055071596056222916, 0.018677489832043648, 0.002794406609609723, 0.0036934197414666414, 0.003962127026170492, 0.0031655733473598957], "normal_n2_p1": [0.324957013130188, 0.5578911900520325, 0.030759088695049286, 0.01656743511557579, 0.021200357005000114, 0.010961604304611683, 0.01907283626496792], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05434262752532959, 0.03396362438797951, 0.04440843313932419, 0.6718589663505554, 0.019981736317276955, 0.059358034282922745, 0.08856645971536636], "normal_n3_p1": [0.30944302678108215, 0.25263407826423645, 0.08418663591146469, 0.026541125029325485, 0.07692419737577438, 0.07654513418674469, 0.14433103799819946], "normal_n3_p2": [0.013756174594163895, 0.023990148678421974, 0.01920386217534542, 0.037716999650001526, 0.012364139780402184, 0.8684405088424683, 0.010753651149570942], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.15952831506729126, 0.16374324262142181, 0.02289077267050743, 0.011333009228110313, 0.01524357683956623, 0.013197488151490688, 0.5969334840774536], "reduce_n2_p1": [0.059410274028778076, 0.09616611152887344, 0.6058325171470642, 0.048776090145111084, 0.03974781930446625, 0.04627282917499542, 0.04505082219839096], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.15036238729953766, 0.06647302210330963, 0.08783652633428574, 0.03508053719997406, 0.44120314717292786, 0.07293625921010971, 0.06765957176685333], "reduce_n3_p1": [0.061419203877449036, 0.397763192653656, 0.0237487331032753, 0.04071689024567604, 0.05241730436682701, 0.002828992437571287, 0.050058621913194656], "reduce_n3_p2": [0.3712809681892395, 0.09200799465179443, 0.16878917813301086, 0.026197748258709908, 0.08284125477075577, 0.15147905051708221, 0.04900654777884483], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8740691542625427, 0.07652173936367035, 0.017329774796962738, 0.0072271632961928844, 0.007619705982506275, 0.00851227343082428, 0.007009140681475401], "normal_n2_p1": [0.39177221059799194, 0.4420892894268036, 0.0289243645966053, 0.02697734348475933, 0.03364796191453934, 0.014277897775173187, 0.028581945225596428], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05590308457612991, 0.041470035910606384, 0.046496372669935226, 0.6409310102462769, 0.02850114367902279, 0.05727093666791916, 0.07836660742759705], "normal_n3_p1": [0.3867400884628296, 0.08168841898441315, 0.049292899668216705, 0.028865749016404152, 0.1155330091714859, 0.055753324180841446, 0.24594905972480774], "normal_n3_p2": [0.02287660911679268, 0.035649221390485764, 0.027864623814821243, 0.06298111379146576, 0.016765771433711052, 0.796450674533844, 0.01663287915289402], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01752106472849846, 0.021040482446551323, 0.004198605660349131, 0.0031552384607493877, 0.005787021480500698, 0.004442149773240089, 0.9379611611366272], "reduce_n2_p1": [0.041417744010686874, 0.04909840226173401, 0.7124728560447693, 0.03724897652864456, 0.0189412459731102, 0.02979753352701664, 0.05963168293237686], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.24032121896743774, 0.07934385538101196, 0.10366374254226685, 0.04608873277902603, 0.13538475334644318, 0.16108226776123047, 0.07083867490291595], "reduce_n3_p1": [0.08038301020860672, 0.30855587124824524, 0.0260868351906538, 0.05222048610448837, 0.06902357935905457, 0.00459406990557909, 0.02817649208009243], "reduce_n3_p2": [0.8965008854866028, 0.017708852887153625, 0.028958531096577644, 0.006579253822565079, 0.015523233450949192, 0.0184974055737257, 0.006336451042443514], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8740691542625427, 0.07652173936367035, 0.017329774796962738, 0.0072271632961928844, 0.007619705982506275, 0.00851227343082428, 0.007009140681475401], "normal_n2_p1": [0.39177221059799194, 0.4420892894268036, 0.0289243645966053, 0.02697734348475933, 0.03364796191453934, 0.014277897775173187, 0.028581945225596428], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05590308457612991, 0.041470035910606384, 0.046496372669935226, 0.6409310102462769, 0.02850114367902279, 0.05727093666791916, 0.07836660742759705], "normal_n3_p1": [0.3867400884628296, 0.08168841898441315, 0.049292899668216705, 0.028865749016404152, 0.1155330091714859, 0.055753324180841446, 0.24594905972480774], "normal_n3_p2": [0.02287660911679268, 0.035649221390485764, 0.027864623814821243, 0.06298111379146576, 0.016765771433711052, 0.796450674533844, 0.01663287915289402], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01752106472849846, 0.021040482446551323, 0.004198605660349131, 0.0031552384607493877, 0.005787021480500698, 0.004442149773240089, 0.9379611611366272], "reduce_n2_p1": [0.041417744010686874, 0.04909840226173401, 0.7124728560447693, 0.03724897652864456, 0.0189412459731102, 0.02979753352701664, 0.05963168293237686], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.24032121896743774, 0.07934385538101196, 0.10366374254226685, 0.04608873277902603, 0.13538475334644318, 0.16108226776123047, 0.07083867490291595], "reduce_n3_p1": [0.08038301020860672, 0.30855587124824524, 0.0260868351906538, 0.05222048610448837, 0.06902357935905457, 0.00459406990557909, 0.02817649208009243], "reduce_n3_p2": [0.8965008854866028, 0.017708852887153625, 0.028958531096577644, 0.006579253822565079, 0.015523233450949192, 0.0184974055737257, 0.006336451042443514], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.655968189239502, 0.20449970662593842, 0.033885374665260315, 0.025574112311005592, 0.02428414672613144, 0.02651083469390869, 0.022135406732559204], "normal_n2_p1": [0.07313689589500427, 0.6623445153236389, 0.032778073102235794, 0.05179561674594879, 0.053229935467243195, 0.018874377012252808, 0.04739689081907272], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.024633236229419708, 0.024572210386395454, 0.024848904460668564, 0.8139235377311707, 0.019520998001098633, 0.038661789149045944, 0.03837945684790611], "normal_n3_p1": [0.7356007099151611, 0.05141402781009674, 0.04251197725534439, 0.018842684105038643, 0.0466608926653862, 0.023143701255321503, 0.060170628130435944], "normal_n3_p2": [0.061998285353183746, 0.141998291015625, 0.1194341853260994, 0.1070963442325592, 0.03498633950948715, 0.45663386583328247, 0.035743772983551025], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.014727123081684113, 0.018166154623031616, 0.0039852214977145195, 0.0037741486448794603, 0.008849040605127811, 0.0062722861766815186, 0.9355586171150208], "reduce_n2_p1": [0.02595001459121704, 0.019416872411966324, 0.8816200494766235, 0.023460255935788155, 0.008159233257174492, 0.015264052897691727, 0.01283938530832529], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.5355021357536316, 0.07064692676067352, 0.04864001274108887, 0.061117883771657944, 0.14430274069309235, 0.00575619051232934, 0.06929685920476913], "reduce_n3_p1": [0.08279451727867126, 0.8488584756851196, 0.018703091889619827, 0.012711958959698677, 0.01063140481710434, 0.004792858846485615, 0.01626572199165821], "reduce_n3_p2": [0.8375588059425354, 0.028906451538205147, 0.04927169159054756, 0.011117554269731045, 0.02524438500404358, 0.02455081231892109, 0.007989016361534595], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.655968189239502, 0.20449970662593842, 0.033885374665260315, 0.025574112311005592, 0.02428414672613144, 0.02651083469390869, 0.022135406732559204], "normal_n2_p1": [0.07313689589500427, 0.6623445153236389, 0.032778073102235794, 0.05179561674594879, 0.053229935467243195, 0.018874377012252808, 0.04739689081907272], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.024633236229419708, 0.024572210386395454, 0.024848904460668564, 0.8139235377311707, 0.019520998001098633, 0.038661789149045944, 0.03837945684790611], "normal_n3_p1": [0.7356007099151611, 0.05141402781009674, 0.04251197725534439, 0.018842684105038643, 0.0466608926653862, 0.023143701255321503, 0.060170628130435944], "normal_n3_p2": [0.061998285353183746, 0.141998291015625, 0.1194341853260994, 0.1070963442325592, 0.03498633950948715, 0.45663386583328247, 0.035743772983551025], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.014727123081684113, 0.018166154623031616, 0.0039852214977145195, 0.0037741486448794603, 0.008849040605127811, 0.0062722861766815186, 0.9355586171150208], "reduce_n2_p1": [0.02595001459121704, 0.019416872411966324, 0.8816200494766235, 0.023460255935788155, 0.008159233257174492, 0.015264052897691727, 0.01283938530832529], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.5355021357536316, 0.07064692676067352, 0.04864001274108887, 0.061117883771657944, 0.14430274069309235, 0.00575619051232934, 0.06929685920476913], "reduce_n3_p1": [0.08279451727867126, 0.8488584756851196, 0.018703091889619827, 0.012711958959698677, 0.01063140481710434, 0.004792858846485615, 0.01626572199165821], "reduce_n3_p2": [0.8375588059425354, 0.028906451538205147, 0.04927169159054756, 0.011117554269731045, 0.02524438500404358, 0.02455081231892109, 0.007989016361534595], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.33900362253189087, 0.3514140844345093, 0.050954703241586685, 0.05979881435632706, 0.06813761591911316, 0.06386458873748779, 0.04646571725606918], "normal_n2_p1": [0.022731589153409004, 0.7716588377952576, 0.024535339325666428, 0.03799469396471977, 0.04512220248579979, 0.018198257312178612, 0.029813075438141823], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.027247436344623566, 0.031152505427598953, 0.029690643772482872, 0.8003631234169006, 0.020711194723844528, 0.038474082946777344, 0.03580793738365173], "normal_n3_p1": [0.6239039301872253, 0.05404387786984444, 0.06569211184978485, 0.030867211520671844, 0.06005347520112991, 0.03253403678536415, 0.08504050225019455], "normal_n3_p2": [0.004826823715120554, 0.00189435132779181, 0.0021381224505603313, 0.13203689455986023, 0.006457698531448841, 0.8329464793205261, 0.00786994956433773], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01824166439473629, 0.021378332749009132, 0.005849912762641907, 0.006455378606915474, 0.015253907069563866, 0.010614965111017227, 0.907293975353241], "reduce_n2_p1": [0.014542795717716217, 0.009053830057382584, 0.936996340751648, 0.014113393612205982, 0.004516660235822201, 0.009194078855216503, 0.0055958982557058334], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.24048854410648346, 0.06833559274673462, 0.05309319123625755, 0.06745680421590805, 0.4422486126422882, 0.0023581236600875854, 0.08990861475467682], "reduce_n3_p1": [0.06793764978647232, 0.8905919790267944, 0.013316445983946323, 0.006427337881177664, 0.0038182500284165144, 0.005701348185539246, 0.01152036339044571], "reduce_n3_p2": [0.5309816598892212, 0.0799836590886116, 0.1410127580165863, 0.033981628715991974, 0.0823930948972702, 0.05609802156686783, 0.023653695359826088], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.33900362253189087, 0.3514140844345093, 0.050954703241586685, 0.05979881435632706, 0.06813761591911316, 0.06386458873748779, 0.04646571725606918], "normal_n2_p1": [0.022731589153409004, 0.7716588377952576, 0.024535339325666428, 0.03799469396471977, 0.04512220248579979, 0.018198257312178612, 0.029813075438141823], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.027247436344623566, 0.031152505427598953, 0.029690643772482872, 0.8003631234169006, 0.020711194723844528, 0.038474082946777344, 0.03580793738365173], "normal_n3_p1": [0.6239039301872253, 0.05404387786984444, 0.06569211184978485, 0.030867211520671844, 0.06005347520112991, 0.03253403678536415, 0.08504050225019455], "normal_n3_p2": [0.004826823715120554, 0.00189435132779181, 0.0021381224505603313, 0.13203689455986023, 0.006457698531448841, 0.8329464793205261, 0.00786994956433773], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01824166439473629, 0.021378332749009132, 0.005849912762641907, 0.006455378606915474, 0.015253907069563866, 0.010614965111017227, 0.907293975353241], "reduce_n2_p1": [0.014542795717716217, 0.009053830057382584, 0.936996340751648, 0.014113393612205982, 0.004516660235822201, 0.009194078855216503, 0.0055958982557058334], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.24048854410648346, 0.06833559274673462, 0.05309319123625755, 0.06745680421590805, 0.4422486126422882, 0.0023581236600875854, 0.08990861475467682], "reduce_n3_p1": [0.06793764978647232, 0.8905919790267944, 0.013316445983946323, 0.006427337881177664, 0.0038182500284165144, 0.005701348185539246, 0.01152036339044571], "reduce_n3_p2": [0.5309816598892212, 0.0799836590886116, 0.1410127580165863, 0.033981628715991974, 0.0823930948972702, 0.05609802156686783, 0.023653695359826088], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.3195918798446655, 0.1920507550239563, 0.05777487903833389, 0.1764519214630127, 0.07848206162452698, 0.10405836254358292, 0.04024428501725197], "normal_n2_p1": [0.01441857311874628, 0.8116893172264099, 0.02519262582063675, 0.017783021554350853, 0.029566725715994835, 0.020993128418922424, 0.032000161707401276], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06926759332418442, 0.07352049648761749, 0.06073060259222984, 0.5859556198120117, 0.0358600877225399, 0.06422391533851624, 0.0649782046675682], "normal_n3_p1": [0.3904147148132324, 0.048919375985860825, 0.08598046749830246, 0.04465217888355255, 0.08075364679098129, 0.05408580228686333, 0.1503288745880127], "normal_n3_p2": [0.0011827753623947501, 0.00021169029059819877, 0.00027387274894863367, 0.7879442572593689, 0.002239283872768283, 0.20010316371917725, 0.0028989389538764954], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04197913408279419, 0.04456602782011032, 0.012288553640246391, 0.01459760032594204, 0.028210218995809555, 0.02546672709286213, 0.8023279905319214], "reduce_n2_p1": [0.008852330036461353, 0.0056473310105502605, 0.9575468301773071, 0.009213671088218689, 0.0035825208760797977, 0.0065126619301736355, 0.003945347853004932], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.2839547097682953, 0.05665776506066322, 0.034668903797864914, 0.03000035136938095, 0.5197983384132385, 0.0019549878779798746, 0.05846525356173515], "reduce_n3_p1": [0.08568910509347916, 0.8494477272033691, 0.021109269931912422, 0.009335551410913467, 0.004482990596443415, 0.012766990810632706, 0.016445618122816086], "reduce_n3_p2": [0.1119297593832016, 0.0832478255033493, 0.23553943634033203, 0.06380587816238403, 0.2740214467048645, 0.06777723133563995, 0.05401242524385452], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.3195918798446655, 0.1920507550239563, 0.05777487903833389, 0.1764519214630127, 0.07848206162452698, 0.10405836254358292, 0.04024428501725197], "normal_n2_p1": [0.01441857311874628, 0.8116893172264099, 0.02519262582063675, 0.017783021554350853, 0.029566725715994835, 0.020993128418922424, 0.032000161707401276], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06926759332418442, 0.07352049648761749, 0.06073060259222984, 0.5859556198120117, 0.0358600877225399, 0.06422391533851624, 0.0649782046675682], "normal_n3_p1": [0.3904147148132324, 0.048919375985860825, 0.08598046749830246, 0.04465217888355255, 0.08075364679098129, 0.05408580228686333, 0.1503288745880127], "normal_n3_p2": [0.0011827753623947501, 0.00021169029059819877, 0.00027387274894863367, 0.7879442572593689, 0.002239283872768283, 0.20010316371917725, 0.0028989389538764954], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04197913408279419, 0.04456602782011032, 0.012288553640246391, 0.01459760032594204, 0.028210218995809555, 0.02546672709286213, 0.8023279905319214], "reduce_n2_p1": [0.008852330036461353, 0.0056473310105502605, 0.9575468301773071, 0.009213671088218689, 0.0035825208760797977, 0.0065126619301736355, 0.003945347853004932], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.2839547097682953, 0.05665776506066322, 0.034668903797864914, 0.03000035136938095, 0.5197983384132385, 0.0019549878779798746, 0.05846525356173515], "reduce_n3_p1": [0.08568910509347916, 0.8494477272033691, 0.021109269931912422, 0.009335551410913467, 0.004482990596443415, 0.012766990810632706, 0.016445618122816086], "reduce_n3_p2": [0.1119297593832016, 0.0832478255033493, 0.23553943634033203, 0.06380587816238403, 0.2740214467048645, 0.06777723133563995, 0.05401242524385452], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2375442385673523, 0.08036121726036072, 0.03922933712601662, 0.4292346239089966, 0.06757303327322006, 0.08946909010410309, 0.02598690614104271], "normal_n2_p1": [0.012583982199430466, 0.8348565697669983, 0.026263659819960594, 0.012545171193778515, 0.024233657866716385, 0.02119927667081356, 0.03198963776230812], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.14330874383449554, 0.09943529963493347, 0.08903439342975616, 0.46206992864608765, 0.032883740961551666, 0.08689649403095245, 0.04736074060201645], "normal_n3_p1": [0.6064019799232483, 0.027068521827459335, 0.027521874755620956, 0.04011274874210358, 0.04383232817053795, 0.0430450402200222, 0.14013710618019104], "normal_n3_p2": [0.0027772393077611923, 0.00042763439705595374, 0.0005741220084019005, 0.20644862949848175, 0.0049823010340332985, 0.7672768831253052, 0.0062081413343548775], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05144438147544861, 0.05314530059695244, 0.01688627526164055, 0.01998942345380783, 0.030235473066568375, 0.033696070313453674, 0.7641750574111938], "reduce_n2_p1": [0.011953476816415787, 0.007985520176589489, 0.9368042349815369, 0.012636814266443253, 0.006089361384510994, 0.009458211250603199, 0.00633838027715683], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.07227481156587601, 0.03744859620928764, 0.0319804884493351, 0.021001819521188736, 0.7896312475204468, 0.003120856126770377, 0.033205222338438034], "reduce_n3_p1": [0.10760565847158432, 0.7521677613258362, 0.04152141883969307, 0.02048363722860813, 0.008884123526513577, 0.03399337828159332, 0.03334894776344299], "reduce_n3_p2": [0.038228508085012436, 0.07053621113300323, 0.44997116923332214, 0.055803850293159485, 0.1732853353023529, 0.051689907908439636, 0.05519362539052963], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2375442385673523, 0.08036121726036072, 0.03922933712601662, 0.4292346239089966, 0.06757303327322006, 0.08946909010410309, 0.02598690614104271], "normal_n2_p1": [0.012583982199430466, 0.8348565697669983, 0.026263659819960594, 0.012545171193778515, 0.024233657866716385, 0.02119927667081356, 0.03198963776230812], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.14330874383449554, 0.09943529963493347, 0.08903439342975616, 0.46206992864608765, 0.032883740961551666, 0.08689649403095245, 0.04736074060201645], "normal_n3_p1": [0.6064019799232483, 0.027068521827459335, 0.027521874755620956, 0.04011274874210358, 0.04383232817053795, 0.0430450402200222, 0.14013710618019104], "normal_n3_p2": [0.0027772393077611923, 0.00042763439705595374, 0.0005741220084019005, 0.20644862949848175, 0.0049823010340332985, 0.7672768831253052, 0.0062081413343548775], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05144438147544861, 0.05314530059695244, 0.01688627526164055, 0.01998942345380783, 0.030235473066568375, 0.033696070313453674, 0.7641750574111938], "reduce_n2_p1": [0.011953476816415787, 0.007985520176589489, 0.9368042349815369, 0.012636814266443253, 0.006089361384510994, 0.009458211250603199, 0.00633838027715683], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.07227481156587601, 0.03744859620928764, 0.0319804884493351, 0.021001819521188736, 0.7896312475204468, 0.003120856126770377, 0.033205222338438034], "reduce_n3_p1": [0.10760565847158432, 0.7521677613258362, 0.04152141883969307, 0.02048363722860813, 0.008884123526513577, 0.03399337828159332, 0.03334894776344299], "reduce_n3_p2": [0.038228508085012436, 0.07053621113300323, 0.44997116923332214, 0.055803850293159485, 0.1732853353023529, 0.051689907908439636, 0.05519362539052963], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.898115873336792, 0.02559618279337883, 0.013824710622429848, 0.005217819008976221, 0.019321128726005554, 0.019495753571391106, 0.008135289885103703], "normal_n2_p1": [0.015484783798456192, 0.8066546320915222, 0.03276747837662697, 0.013130797073245049, 0.024264125153422356, 0.025060387328267097, 0.045191440731287], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.021881118416786194, 0.023875553160905838, 0.024980289861559868, 0.8624165058135986, 0.015528670512139797, 0.02718951925635338, 0.010702339000999928], "normal_n3_p1": [0.7168749570846558, 0.02408965863287449, 0.018699880689382553, 0.040595393627882004, 0.04942650347948074, 0.031262777745723724, 0.08074311167001724], "normal_n3_p2": [0.00581880658864975, 0.0010883311042562127, 0.0014361909125000238, 0.148577019572258, 0.008084239438176155, 0.8066772818565369, 0.010271557606756687], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08035875111818314, 0.08650084584951401, 0.028139183297753334, 0.03745957091450691, 0.039182666689157486, 0.08065352588891983, 0.6024455428123474], "reduce_n2_p1": [0.017859725281596184, 0.013288426212966442, 0.8892759084701538, 0.02082039602100849, 0.011979474686086178, 0.016273580491542816, 0.011782716028392315], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022147441282868385, 0.027038097381591797, 0.029349863529205322, 0.01763973757624626, 0.8512614369392395, 0.006031012628227472, 0.03330789878964424], "reduce_n3_p1": [0.15232500433921814, 0.5363953709602356, 0.08584480732679367, 0.039225175976753235, 0.022817974910140038, 0.06653231382369995, 0.08949169516563416], "reduce_n3_p2": [0.022567003965377808, 0.06447911262512207, 0.5702565312385559, 0.03469027206301689, 0.13768471777439117, 0.03525373339653015, 0.04785604774951935], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.898115873336792, 0.02559618279337883, 0.013824710622429848, 0.005217819008976221, 0.019321128726005554, 0.019495753571391106, 0.008135289885103703], "normal_n2_p1": [0.015484783798456192, 0.8066546320915222, 0.03276747837662697, 0.013130797073245049, 0.024264125153422356, 0.025060387328267097, 0.045191440731287], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.021881118416786194, 0.023875553160905838, 0.024980289861559868, 0.8624165058135986, 0.015528670512139797, 0.02718951925635338, 0.010702339000999928], "normal_n3_p1": [0.7168749570846558, 0.02408965863287449, 0.018699880689382553, 0.040595393627882004, 0.04942650347948074, 0.031262777745723724, 0.08074311167001724], "normal_n3_p2": [0.00581880658864975, 0.0010883311042562127, 0.0014361909125000238, 0.148577019572258, 0.008084239438176155, 0.8066772818565369, 0.010271557606756687], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08035875111818314, 0.08650084584951401, 0.028139183297753334, 0.03745957091450691, 0.039182666689157486, 0.08065352588891983, 0.6024455428123474], "reduce_n2_p1": [0.017859725281596184, 0.013288426212966442, 0.8892759084701538, 0.02082039602100849, 0.011979474686086178, 0.016273580491542816, 0.011782716028392315], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022147441282868385, 0.027038097381591797, 0.029349863529205322, 0.01763973757624626, 0.8512614369392395, 0.006031012628227472, 0.03330789878964424], "reduce_n3_p1": [0.15232500433921814, 0.5363953709602356, 0.08584480732679367, 0.039225175976753235, 0.022817974910140038, 0.06653231382369995, 0.08949169516563416], "reduce_n3_p2": [0.022567003965377808, 0.06447911262512207, 0.5702565312385559, 0.03469027206301689, 0.13768471777439117, 0.03525373339653015, 0.04785604774951935], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9357199668884277, 0.016365837305784225, 0.00979789812117815, 0.0007656255038455129, 0.012032557278871536, 0.011739036999642849, 0.006087382789701223], "normal_n2_p1": [0.0174177847802639, 0.8139697909355164, 0.033092375844717026, 0.013423318043351173, 0.02063767798244953, 0.025162294507026672, 0.044142551720142365], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011091246269643307, 0.013652020134031773, 0.015567241236567497, 0.9095134139060974, 0.01417426485568285, 0.017688199877738953, 0.006570437457412481], "normal_n3_p1": [0.6787049174308777, 0.031196821480989456, 0.023804040625691414, 0.049559105187654495, 0.08196942508220673, 0.035868339240550995, 0.06088552251458168], "normal_n3_p2": [0.01369713619351387, 0.003618861548602581, 0.004578881897032261, 0.4546825587749481, 0.015087234787642956, 0.45850321650505066, 0.018763497471809387], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13899675011634827, 0.16729125380516052, 0.04066711664199829, 0.05942455306649208, 0.04652829468250275, 0.06512676924467087, 0.42983895540237427], "reduce_n2_p1": [0.01656057871878147, 0.013646663166582584, 0.867608368396759, 0.027082720771431923, 0.014398312196135521, 0.017400749027729034, 0.017378900200128555], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017724143341183662, 0.032017264515161514, 0.033005502074956894, 0.01600247621536255, 0.8373419642448425, 0.012276915833353996, 0.033162616193294525], "reduce_n3_p1": [0.09218456596136093, 0.11357682198286057, 0.1670544296503067, 0.13102947175502777, 0.04440971091389656, 0.10021913051605225, 0.3321216106414795], "reduce_n3_p2": [0.013596080243587494, 0.04134481027722359, 0.7475102543830872, 0.0207605492323637, 0.10208429396152496, 0.018085673451423645, 0.020522091537714005], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9357199668884277, 0.016365837305784225, 0.00979789812117815, 0.0007656255038455129, 0.012032557278871536, 0.011739036999642849, 0.006087382789701223], "normal_n2_p1": [0.0174177847802639, 0.8139697909355164, 0.033092375844717026, 0.013423318043351173, 0.02063767798244953, 0.025162294507026672, 0.044142551720142365], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011091246269643307, 0.013652020134031773, 0.015567241236567497, 0.9095134139060974, 0.01417426485568285, 0.017688199877738953, 0.006570437457412481], "normal_n3_p1": [0.6787049174308777, 0.031196821480989456, 0.023804040625691414, 0.049559105187654495, 0.08196942508220673, 0.035868339240550995, 0.06088552251458168], "normal_n3_p2": [0.01369713619351387, 0.003618861548602581, 0.004578881897032261, 0.4546825587749481, 0.015087234787642956, 0.45850321650505066, 0.018763497471809387], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13899675011634827, 0.16729125380516052, 0.04066711664199829, 0.05942455306649208, 0.04652829468250275, 0.06512676924467087, 0.42983895540237427], "reduce_n2_p1": [0.01656057871878147, 0.013646663166582584, 0.867608368396759, 0.027082720771431923, 0.014398312196135521, 0.017400749027729034, 0.017378900200128555], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017724143341183662, 0.032017264515161514, 0.033005502074956894, 0.01600247621536255, 0.8373419642448425, 0.012276915833353996, 0.033162616193294525], "reduce_n3_p1": [0.09218456596136093, 0.11357682198286057, 0.1670544296503067, 0.13102947175502777, 0.04440971091389656, 0.10021913051605225, 0.3321216106414795], "reduce_n3_p2": [0.013596080243587494, 0.04134481027722359, 0.7475102543830872, 0.0207605492323637, 0.10208429396152496, 0.018085673451423645, 0.020522091537714005], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9197020530700684, 0.018647681921720505, 0.012548706494271755, 0.0005905707366764545, 0.014414850622415543, 0.014112678356468678, 0.008871234953403473], "normal_n2_p1": [0.022585581988096237, 0.7954192161560059, 0.0406830869615078, 0.017668047919869423, 0.020727790892124176, 0.030405746772885323, 0.04057696834206581], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.013336681760847569, 0.016174588352441788, 0.019745266065001488, 0.8691415190696716, 0.023999366909265518, 0.025206949561834335, 0.009594817645847797], "normal_n3_p1": [0.6786064505577087, 0.03579133003950119, 0.026421314105391502, 0.045632727444171906, 0.10626492649316788, 0.032390907406806946, 0.047679729759693146], "normal_n3_p2": [0.005431664176285267, 0.001585407298989594, 0.0019200332462787628, 0.9599027037620544, 0.00439640786498785, 0.01053325179964304, 0.006371114403009415], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.160106360912323, 0.1696382313966751, 0.035653237253427505, 0.05075116455554962, 0.050124652683734894, 0.05199525132775307, 0.4436745047569275], "reduce_n2_p1": [0.016523076221346855, 0.014724189415574074, 0.8688216805458069, 0.030893512070178986, 0.015439273789525032, 0.014185830019414425, 0.01836545392870903], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.050443243235349655, 0.09255753457546234, 0.11269687116146088, 0.03646772727370262, 0.5205023288726807, 0.04308304190635681, 0.07385026663541794], "reduce_n3_p1": [0.029548080638051033, 0.018173811957240105, 0.11248242110013962, 0.2344103753566742, 0.06366299837827682, 0.06018386036157608, 0.45935526490211487], "reduce_n3_p2": [0.010838516987860203, 0.025751851499080658, 0.8541788458824158, 0.013736710883677006, 0.056762903928756714, 0.011015200056135654, 0.010604500770568848], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9197020530700684, 0.018647681921720505, 0.012548706494271755, 0.0005905707366764545, 0.014414850622415543, 0.014112678356468678, 0.008871234953403473], "normal_n2_p1": [0.022585581988096237, 0.7954192161560059, 0.0406830869615078, 0.017668047919869423, 0.020727790892124176, 0.030405746772885323, 0.04057696834206581], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.013336681760847569, 0.016174588352441788, 0.019745266065001488, 0.8691415190696716, 0.023999366909265518, 0.025206949561834335, 0.009594817645847797], "normal_n3_p1": [0.6786064505577087, 0.03579133003950119, 0.026421314105391502, 0.045632727444171906, 0.10626492649316788, 0.032390907406806946, 0.047679729759693146], "normal_n3_p2": [0.005431664176285267, 0.001585407298989594, 0.0019200332462787628, 0.9599027037620544, 0.00439640786498785, 0.01053325179964304, 0.006371114403009415], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.160106360912323, 0.1696382313966751, 0.035653237253427505, 0.05075116455554962, 0.050124652683734894, 0.05199525132775307, 0.4436745047569275], "reduce_n2_p1": [0.016523076221346855, 0.014724189415574074, 0.8688216805458069, 0.030893512070178986, 0.015439273789525032, 0.014185830019414425, 0.01836545392870903], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.050443243235349655, 0.09255753457546234, 0.11269687116146088, 0.03646772727370262, 0.5205023288726807, 0.04308304190635681, 0.07385026663541794], "reduce_n3_p1": [0.029548080638051033, 0.018173811957240105, 0.11248242110013962, 0.2344103753566742, 0.06366299837827682, 0.06018386036157608, 0.45935526490211487], "reduce_n3_p2": [0.010838516987860203, 0.025751851499080658, 0.8541788458824158, 0.013736710883677006, 0.056762903928756714, 0.011015200056135654, 0.010604500770568848], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7920600771903992, 0.04375571012496948, 0.03268931061029434, 0.0015184023650363088, 0.0402529239654541, 0.037577997893095016, 0.02294270135462284], "normal_n2_p1": [0.020179765298962593, 0.8352598547935486, 0.037669215351343155, 0.015884391963481903, 0.015979569405317307, 0.02422695979475975, 0.029044343158602715], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.021308448165655136, 0.024699635803699493, 0.02959921769797802, 0.8004447221755981, 0.03688984736800194, 0.034405648708343506, 0.016682151705026627], "normal_n3_p1": [0.7482026815414429, 0.03592049703001976, 0.029821740463376045, 0.04050499573349953, 0.06758031994104385, 0.029685240238904953, 0.02604004181921482], "normal_n3_p2": [0.0058083669282495975, 0.002130192704498768, 0.002489454811438918, 0.9683830142021179, 0.004012611228972673, 0.002717608353123069, 0.005952848587185144], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.15050451457500458, 0.3699733316898346, 0.05246725678443909, 0.0838049054145813, 0.03876558691263199, 0.06910493969917297, 0.18434658646583557], "reduce_n2_p1": [0.03554337099194527, 0.0376262366771698, 0.7068526148796082, 0.06728147715330124, 0.03964374586939812, 0.03154923394322395, 0.03771933540701866], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005845044273883104, 0.005086679942905903, 0.04222359135746956, 0.006988375447690487, 0.8903505802154541, 0.023361975327134132, 0.018824439495801926], "reduce_n3_p1": [0.04239572957158089, 0.015567466616630554, 0.09950710088014603, 0.4312256872653961, 0.14673471450805664, 0.18764249980449677, 0.028435567393898964], "reduce_n3_p2": [0.020495690405368805, 0.041236188262701035, 0.777118444442749, 0.022895682603120804, 0.07920242100954056, 0.01689191162586212, 0.016817864030599594], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7920600771903992, 0.04375571012496948, 0.03268931061029434, 0.0015184023650363088, 0.0402529239654541, 0.037577997893095016, 0.02294270135462284], "normal_n2_p1": [0.020179765298962593, 0.8352598547935486, 0.037669215351343155, 0.015884391963481903, 0.015979569405317307, 0.02422695979475975, 0.029044343158602715], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.021308448165655136, 0.024699635803699493, 0.02959921769797802, 0.8004447221755981, 0.03688984736800194, 0.034405648708343506, 0.016682151705026627], "normal_n3_p1": [0.7482026815414429, 0.03592049703001976, 0.029821740463376045, 0.04050499573349953, 0.06758031994104385, 0.029685240238904953, 0.02604004181921482], "normal_n3_p2": [0.0058083669282495975, 0.002130192704498768, 0.002489454811438918, 0.9683830142021179, 0.004012611228972673, 0.002717608353123069, 0.005952848587185144], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.15050451457500458, 0.3699733316898346, 0.05246725678443909, 0.0838049054145813, 0.03876558691263199, 0.06910493969917297, 0.18434658646583557], "reduce_n2_p1": [0.03554337099194527, 0.0376262366771698, 0.7068526148796082, 0.06728147715330124, 0.03964374586939812, 0.03154923394322395, 0.03771933540701866], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005845044273883104, 0.005086679942905903, 0.04222359135746956, 0.006988375447690487, 0.8903505802154541, 0.023361975327134132, 0.018824439495801926], "reduce_n3_p1": [0.04239572957158089, 0.015567466616630554, 0.09950710088014603, 0.4312256872653961, 0.14673471450805664, 0.18764249980449677, 0.028435567393898964], "reduce_n3_p2": [0.020495690405368805, 0.041236188262701035, 0.777118444442749, 0.022895682603120804, 0.07920242100954056, 0.01689191162586212, 0.016817864030599594], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.4471132457256317, 0.10425069183111191, 0.09538064897060394, 0.005055526737123728, 0.09689168632030487, 0.11035148054361343, 0.06431777030229568], "normal_n2_p1": [0.02195490151643753, 0.8454245924949646, 0.03775171563029289, 0.016624368727207184, 0.015709232538938522, 0.023126836866140366, 0.021170511841773987], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.051749248057603836, 0.061314936727285385, 0.0773887112736702, 0.5790089964866638, 0.06562645733356476, 0.060807615518569946, 0.033162157982587814], "normal_n3_p1": [0.6461646556854248, 0.05320564657449722, 0.048728059977293015, 0.07555288821458817, 0.07721981406211853, 0.03900369256734848, 0.030859630554914474], "normal_n3_p2": [0.008340099826455116, 0.00415813410654664, 0.004656611476093531, 0.9582822322845459, 0.005316275637596846, 0.0021856706589460373, 0.007293112110346556], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13339872658252716, 0.26065024733543396, 0.08525311946868896, 0.0934348776936531, 0.048753757029771805, 0.0923774242401123, 0.22357942163944244], "reduce_n2_p1": [0.06934163719415665, 0.07960005104541779, 0.3564286530017853, 0.16301016509532928, 0.09510034322738647, 0.08136455714702606, 0.055195000022649765], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0019173654727637768, 0.0010923343943431973, 0.01826057769358158, 0.0029747982043772936, 0.957470715045929, 0.009972084313631058, 0.005991475656628609], "reduce_n3_p1": [0.042135171592235565, 0.014649217948317528, 0.15355214476585388, 0.0767393484711647, 0.4548996686935425, 0.1635793298482895, 0.007958597503602505], "reduce_n3_p2": [0.051341358572244644, 0.07147305458784103, 0.16837023198604584, 0.07068189978599548, 0.45438578724861145, 0.04825684055685997, 0.0518217533826828], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.4471132457256317, 0.10425069183111191, 0.09538064897060394, 0.005055526737123728, 0.09689168632030487, 0.11035148054361343, 0.06431777030229568], "normal_n2_p1": [0.02195490151643753, 0.8454245924949646, 0.03775171563029289, 0.016624368727207184, 0.015709232538938522, 0.023126836866140366, 0.021170511841773987], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.051749248057603836, 0.061314936727285385, 0.0773887112736702, 0.5790089964866638, 0.06562645733356476, 0.060807615518569946, 0.033162157982587814], "normal_n3_p1": [0.6461646556854248, 0.05320564657449722, 0.048728059977293015, 0.07555288821458817, 0.07721981406211853, 0.03900369256734848, 0.030859630554914474], "normal_n3_p2": [0.008340099826455116, 0.00415813410654664, 0.004656611476093531, 0.9582822322845459, 0.005316275637596846, 0.0021856706589460373, 0.007293112110346556], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13339872658252716, 0.26065024733543396, 0.08525311946868896, 0.0934348776936531, 0.048753757029771805, 0.0923774242401123, 0.22357942163944244], "reduce_n2_p1": [0.06934163719415665, 0.07960005104541779, 0.3564286530017853, 0.16301016509532928, 0.09510034322738647, 0.08136455714702606, 0.055195000022649765], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0019173654727637768, 0.0010923343943431973, 0.01826057769358158, 0.0029747982043772936, 0.957470715045929, 0.009972084313631058, 0.005991475656628609], "reduce_n3_p1": [0.042135171592235565, 0.014649217948317528, 0.15355214476585388, 0.0767393484711647, 0.4548996686935425, 0.1635793298482895, 0.007958597503602505], "reduce_n3_p2": [0.051341358572244644, 0.07147305458784103, 0.16837023198604584, 0.07068189978599548, 0.45438578724861145, 0.04825684055685997, 0.0518217533826828], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.6604686975479126, 0.07924894988536835, 0.08907327055931091, 0.005079498048871756, 0.021998805925250053, 0.06993480026721954, 0.02877129428088665], "normal_n2_p1": [0.01915758289396763, 0.8910300731658936, 0.029994437471032143, 0.013498940505087376, 0.011874616146087646, 0.012620847672224045, 0.010793248191475868], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06893712282180786, 0.05643206089735031, 0.06344866752624512, 0.5765323042869568, 0.05254066735506058, 0.10335785150527954, 0.043341029435396194], "normal_n3_p1": [0.26582100987434387, 0.06234566494822502, 0.0545562207698822, 0.25691401958465576, 0.20216180384159088, 0.07090272009372711, 0.04450150579214096], "normal_n3_p2": [0.015106979757547379, 0.009966770187020302, 0.010671228170394897, 0.9223353862762451, 0.009611064568161964, 0.0035159129183739424, 0.01337520033121109], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.11200764030218124, 0.10856971889734268, 0.09909669309854507, 0.06914372742176056, 0.050923705101013184, 0.16661624610424042, 0.32886096835136414], "reduce_n2_p1": [0.11055519431829453, 0.08565167337656021, 0.024889981374144554, 0.5022349953651428, 0.140588641166687, 0.045546066015958786, 0.0396500825881958], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0018941913731396198, 0.000875405443366617, 0.013733835890889168, 0.00312350713647902, 0.9646442532539368, 0.008281851187348366, 0.005046479869633913], "reduce_n3_p1": [0.07351432740688324, 0.017878051847219467, 0.5743628144264221, 0.06319009512662888, 0.03936580941081047, 0.06223813816905022, 0.005694144405424595], "reduce_n3_p2": [0.08173320442438126, 0.1322893500328064, 0.07013005018234253, 0.06674142181873322, 0.3916258215904236, 0.07450568675994873, 0.05205704644322395], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.6604686975479126, 0.07924894988536835, 0.08907327055931091, 0.005079498048871756, 0.021998805925250053, 0.06993480026721954, 0.02877129428088665], "normal_n2_p1": [0.01915758289396763, 0.8910300731658936, 0.029994437471032143, 0.013498940505087376, 0.011874616146087646, 0.012620847672224045, 0.010793248191475868], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.06893712282180786, 0.05643206089735031, 0.06344866752624512, 0.5765323042869568, 0.05254066735506058, 0.10335785150527954, 0.043341029435396194], "normal_n3_p1": [0.26582100987434387, 0.06234566494822502, 0.0545562207698822, 0.25691401958465576, 0.20216180384159088, 0.07090272009372711, 0.04450150579214096], "normal_n3_p2": [0.015106979757547379, 0.009966770187020302, 0.010671228170394897, 0.9223353862762451, 0.009611064568161964, 0.0035159129183739424, 0.01337520033121109], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.11200764030218124, 0.10856971889734268, 0.09909669309854507, 0.06914372742176056, 0.050923705101013184, 0.16661624610424042, 0.32886096835136414], "reduce_n2_p1": [0.11055519431829453, 0.08565167337656021, 0.024889981374144554, 0.5022349953651428, 0.140588641166687, 0.045546066015958786, 0.0396500825881958], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0018941913731396198, 0.000875405443366617, 0.013733835890889168, 0.00312350713647902, 0.9646442532539368, 0.008281851187348366, 0.005046479869633913], "reduce_n3_p1": [0.07351432740688324, 0.017878051847219467, 0.5743628144264221, 0.06319009512662888, 0.03936580941081047, 0.06223813816905022, 0.005694144405424595], "reduce_n3_p2": [0.08173320442438126, 0.1322893500328064, 0.07013005018234253, 0.06674142181873322, 0.3916258215904236, 0.07450568675994873, 0.05205704644322395], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8412019610404968, 0.04886076971888542, 0.04807843267917633, 0.0037866828497499228, 0.006463400553911924, 0.02335137501358986, 0.010090842843055725], "normal_n2_p1": [0.017772607505321503, 0.9196459054946899, 0.022260509431362152, 0.009780117310583591, 0.008921834640204906, 0.007391919381916523, 0.006746713072061539], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01203539501875639, 0.008500472642481327, 0.010021531954407692, 0.8352814316749573, 0.02704770117998123, 0.08267297595739365, 0.01756132021546364], "normal_n3_p1": [0.050537388771772385, 0.048569031059741974, 0.043054819107055664, 0.2040833681821823, 0.5593618750572205, 0.05055447667837143, 0.02570803463459015], "normal_n3_p2": [0.04723266139626503, 0.03880197927355766, 0.0420074537396431, 0.7489224076271057, 0.03046186827123165, 0.010435949079692364, 0.0400518961250782], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13631372153759003, 0.08038923889398575, 0.1393822878599167, 0.07627015560865402, 0.09214064478874207, 0.2754441201686859, 0.0981094017624855], "reduce_n2_p1": [0.26620545983314514, 0.14435799419879913, 0.008036457002162933, 0.1648676097393036, 0.27381381392478943, 0.060015641152858734, 0.03562171012163162], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0033588348887860775, 0.0014672138495370746, 0.017095454037189484, 0.0052183750085532665, 0.9506880640983582, 0.010457229800522327, 0.007099662907421589], "reduce_n3_p1": [0.13351601362228394, 0.01876811496913433, 0.7202582955360413, 0.022165868431329727, 0.009175698272883892, 0.015365109778940678, 0.005068903788924217], "reduce_n3_p2": [0.1387253701686859, 0.37404271960258484, 0.045332830399274826, 0.048076048493385315, 0.10236972570419312, 0.13315449655056, 0.04681733623147011], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8412019610404968, 0.04886076971888542, 0.04807843267917633, 0.0037866828497499228, 0.006463400553911924, 0.02335137501358986, 0.010090842843055725], "normal_n2_p1": [0.017772607505321503, 0.9196459054946899, 0.022260509431362152, 0.009780117310583591, 0.008921834640204906, 0.007391919381916523, 0.006746713072061539], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01203539501875639, 0.008500472642481327, 0.010021531954407692, 0.8352814316749573, 0.02704770117998123, 0.08267297595739365, 0.01756132021546364], "normal_n3_p1": [0.050537388771772385, 0.048569031059741974, 0.043054819107055664, 0.2040833681821823, 0.5593618750572205, 0.05055447667837143, 0.02570803463459015], "normal_n3_p2": [0.04723266139626503, 0.03880197927355766, 0.0420074537396431, 0.7489224076271057, 0.03046186827123165, 0.010435949079692364, 0.0400518961250782], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13631372153759003, 0.08038923889398575, 0.1393822878599167, 0.07627015560865402, 0.09214064478874207, 0.2754441201686859, 0.0981094017624855], "reduce_n2_p1": [0.26620545983314514, 0.14435799419879913, 0.008036457002162933, 0.1648676097393036, 0.27381381392478943, 0.060015641152858734, 0.03562171012163162], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0033588348887860775, 0.0014672138495370746, 0.017095454037189484, 0.0052183750085532665, 0.9506880640983582, 0.010457229800522327, 0.007099662907421589], "reduce_n3_p1": [0.13351601362228394, 0.01876811496913433, 0.7202582955360413, 0.022165868431329727, 0.009175698272883892, 0.015365109778940678, 0.005068903788924217], "reduce_n3_p2": [0.1387253701686859, 0.37404271960258484, 0.045332830399274826, 0.048076048493385315, 0.10236972570419312, 0.13315449655056, 0.04681733623147011], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8201512098312378, 0.06202644482254982, 0.06173356622457504, 0.005557228811085224, 0.0057725063525140285, 0.020088056102395058, 0.008684292435646057], "normal_n2_p1": [0.020855175331234932, 0.9053024053573608, 0.025765331462025642, 0.011791877448558807, 0.010796895250678062, 0.00835070013999939, 0.007985844276845455], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011788172647356987, 0.008154521696269512, 0.009546330198645592, 0.6680541038513184, 0.03514998033642769, 0.23437519371509552, 0.024407463148236275], "normal_n3_p1": [0.03379691392183304, 0.06342219561338425, 0.07165184617042542, 0.15139654278755188, 0.5491633415222168, 0.07794150710105896, 0.03279604762792587], "normal_n3_p2": [0.018093038350343704, 0.016186868771910667, 0.01934126950800419, 0.9044740796089172, 0.010566323064267635, 0.006557541899383068, 0.01093131024390459], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.2665131092071533, 0.0881606936454773, 0.0643015205860138, 0.09762157499790192, 0.15648895502090454, 0.059154752641916275, 0.07048610597848892], "reduce_n2_p1": [0.46100887656211853, 0.29557210206985474, 0.0030528635252267122, 0.10818462073802948, 0.00457577221095562, 0.09747947007417679, 0.015106696635484695], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.004942278377711773, 0.0023654066026210785, 0.015436888672411442, 0.006931026466190815, 0.9475207924842834, 0.008460701443254948, 0.007547448854893446], "reduce_n3_p1": [0.4688389003276825, 0.04518817737698555, 0.16713067889213562, 0.055946964770555496, 0.012383261695504189, 0.0230915118008852, 0.014478948898613453], "reduce_n3_p2": [0.13687030971050262, 0.00940523762255907, 0.0276796817779541, 0.05095834285020828, 0.055643871426582336, 0.26204484701156616, 0.08775652199983597], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8201512098312378, 0.06202644482254982, 0.06173356622457504, 0.005557228811085224, 0.0057725063525140285, 0.020088056102395058, 0.008684292435646057], "normal_n2_p1": [0.020855175331234932, 0.9053024053573608, 0.025765331462025642, 0.011791877448558807, 0.010796895250678062, 0.00835070013999939, 0.007985844276845455], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011788172647356987, 0.008154521696269512, 0.009546330198645592, 0.6680541038513184, 0.03514998033642769, 0.23437519371509552, 0.024407463148236275], "normal_n3_p1": [0.03379691392183304, 0.06342219561338425, 0.07165184617042542, 0.15139654278755188, 0.5491633415222168, 0.07794150710105896, 0.03279604762792587], "normal_n3_p2": [0.018093038350343704, 0.016186868771910667, 0.01934126950800419, 0.9044740796089172, 0.010566323064267635, 0.006557541899383068, 0.01093131024390459], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.2665131092071533, 0.0881606936454773, 0.0643015205860138, 0.09762157499790192, 0.15648895502090454, 0.059154752641916275, 0.07048610597848892], "reduce_n2_p1": [0.46100887656211853, 0.29557210206985474, 0.0030528635252267122, 0.10818462073802948, 0.00457577221095562, 0.09747947007417679, 0.015106696635484695], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.004942278377711773, 0.0023654066026210785, 0.015436888672411442, 0.006931026466190815, 0.9475207924842834, 0.008460701443254948, 0.007547448854893446], "reduce_n3_p1": [0.4688389003276825, 0.04518817737698555, 0.16713067889213562, 0.055946964770555496, 0.012383261695504189, 0.0230915118008852, 0.014478948898613453], "reduce_n3_p2": [0.13687030971050262, 0.00940523762255907, 0.0276796817779541, 0.05095834285020828, 0.055643871426582336, 0.26204484701156616, 0.08775652199983597], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7720962762832642, 0.09560789167881012, 0.06901216506958008, 0.008824100717902184, 0.007475163787603378, 0.02064235880970955, 0.01004753727465868], "normal_n2_p1": [0.025016222149133682, 0.882568895816803, 0.02788742631673813, 0.01516762562096119, 0.01408786978572607, 0.010807509534060955, 0.011805537156760693], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.014189999550580978, 0.010415286757051945, 0.011319976300001144, 0.7009385228157043, 0.03773115947842598, 0.18446741998195648, 0.02805473282933235], "normal_n3_p1": [0.044343672692775726, 0.14009785652160645, 0.16922326385974884, 0.27429160475730896, 0.18456773459911346, 0.1099967360496521, 0.04584449529647827], "normal_n3_p2": [0.028638707473874092, 0.024065274745225906, 0.03130814805626869, 0.8677449226379395, 0.012972904369235039, 0.01046052947640419, 0.010095535777509212], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.10556327551603317, 0.08569471538066864, 0.030214322730898857, 0.06620516628026962, 0.4351644814014435, 0.012633268721401691, 0.03486349806189537], "reduce_n2_p1": [0.07229006290435791, 0.5922430753707886, 0.002082433085888624, 0.1044643223285675, 0.0006781612173654139, 0.20701681077480316, 0.011089008301496506], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.007962801493704319, 0.004189617931842804, 0.013640088960528374, 0.008943794295191765, 0.9373624324798584, 0.008334311656653881, 0.009242024272680283], "reduce_n3_p1": [0.7900088429450989, 0.03590880706906319, 0.015368953347206116, 0.05094093456864357, 0.008032244630157948, 0.01497618481516838, 0.01542581431567669], "reduce_n3_p2": [0.1743081510066986, 0.0011556432582437992, 0.01604447141289711, 0.04720005393028259, 0.027264494448900223, 0.024304034188389778, 0.13391752541065216], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7720962762832642, 0.09560789167881012, 0.06901216506958008, 0.008824100717902184, 0.007475163787603378, 0.02064235880970955, 0.01004753727465868], "normal_n2_p1": [0.025016222149133682, 0.882568895816803, 0.02788742631673813, 0.01516762562096119, 0.01408786978572607, 0.010807509534060955, 0.011805537156760693], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.014189999550580978, 0.010415286757051945, 0.011319976300001144, 0.7009385228157043, 0.03773115947842598, 0.18446741998195648, 0.02805473282933235], "normal_n3_p1": [0.044343672692775726, 0.14009785652160645, 0.16922326385974884, 0.27429160475730896, 0.18456773459911346, 0.1099967360496521, 0.04584449529647827], "normal_n3_p2": [0.028638707473874092, 0.024065274745225906, 0.03130814805626869, 0.8677449226379395, 0.012972904369235039, 0.01046052947640419, 0.010095535777509212], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.10556327551603317, 0.08569471538066864, 0.030214322730898857, 0.06620516628026962, 0.4351644814014435, 0.012633268721401691, 0.03486349806189537], "reduce_n2_p1": [0.07229006290435791, 0.5922430753707886, 0.002082433085888624, 0.1044643223285675, 0.0006781612173654139, 0.20701681077480316, 0.011089008301496506], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.007962801493704319, 0.004189617931842804, 0.013640088960528374, 0.008943794295191765, 0.9373624324798584, 0.008334311656653881, 0.009242024272680283], "reduce_n3_p1": [0.7900088429450989, 0.03590880706906319, 0.015368953347206116, 0.05094093456864357, 0.008032244630157948, 0.01497618481516838, 0.01542581431567669], "reduce_n3_p2": [0.1743081510066986, 0.0011556432582437992, 0.01604447141289711, 0.04720005393028259, 0.027264494448900223, 0.024304034188389778, 0.13391752541065216], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.46219733357429504, 0.24354800581932068, 0.16032357513904572, 0.022711733356118202, 0.01757548563182354, 0.039860326796770096, 0.02210972271859646], "normal_n2_p1": [0.02455751970410347, 0.8874204754829407, 0.022911932319402695, 0.014658867381513119, 0.014285306446254253, 0.01018428523093462, 0.012887058779597282], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011347833089530468, 0.010069398209452629, 0.010049376636743546, 0.8548232316970825, 0.02216493710875511, 0.061269503086805344, 0.01840299926698208], "normal_n3_p1": [0.029671017080545425, 0.05784977972507477, 0.03832867741584778, 0.6747604012489319, 0.06868696957826614, 0.07117659598588943, 0.033020492643117905], "normal_n3_p2": [0.03623589873313904, 0.03478677570819855, 0.04677288234233856, 0.8106581568717957, 0.02054845541715622, 0.017721431329846382, 0.013176827691495419], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.26242607831954956, 0.2094893455505371, 0.04043647646903992, 0.08172149956226349, 0.17487482726573944, 0.012675369158387184, 0.04807547479867935], "reduce_n2_p1": [0.024532858282327652, 0.061142828315496445, 0.00193196686450392, 0.11385391652584076, 0.0003692957980092615, 0.7764790654182434, 0.01065881922841072], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.012775473296642303, 0.007500028237700462, 0.014284809119999409, 0.012456894852221012, 0.9164074659347534, 0.010258632712066174, 0.012029611505568027], "reduce_n3_p1": [0.8451400995254517, 0.03100651502609253, 0.004577451851218939, 0.05359300971031189, 0.007654923014342785, 0.011544293724000454, 0.0162612646818161], "reduce_n3_p2": [0.17117032408714294, 0.0006594528094865382, 0.015400172211229801, 0.04627399891614914, 0.02375972457230091, 0.008777054026722908, 0.14007793366909027], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.46219733357429504, 0.24354800581932068, 0.16032357513904572, 0.022711733356118202, 0.01757548563182354, 0.039860326796770096, 0.02210972271859646], "normal_n2_p1": [0.02455751970410347, 0.8874204754829407, 0.022911932319402695, 0.014658867381513119, 0.014285306446254253, 0.01018428523093462, 0.012887058779597282], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011347833089530468, 0.010069398209452629, 0.010049376636743546, 0.8548232316970825, 0.02216493710875511, 0.061269503086805344, 0.01840299926698208], "normal_n3_p1": [0.029671017080545425, 0.05784977972507477, 0.03832867741584778, 0.6747604012489319, 0.06868696957826614, 0.07117659598588943, 0.033020492643117905], "normal_n3_p2": [0.03623589873313904, 0.03478677570819855, 0.04677288234233856, 0.8106581568717957, 0.02054845541715622, 0.017721431329846382, 0.013176827691495419], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.26242607831954956, 0.2094893455505371, 0.04043647646903992, 0.08172149956226349, 0.17487482726573944, 0.012675369158387184, 0.04807547479867935], "reduce_n2_p1": [0.024532858282327652, 0.061142828315496445, 0.00193196686450392, 0.11385391652584076, 0.0003692957980092615, 0.7764790654182434, 0.01065881922841072], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.012775473296642303, 0.007500028237700462, 0.014284809119999409, 0.012456894852221012, 0.9164074659347534, 0.010258632712066174, 0.012029611505568027], "reduce_n3_p1": [0.8451400995254517, 0.03100651502609253, 0.004577451851218939, 0.05359300971031189, 0.007654923014342785, 0.011544293724000454, 0.0162612646818161], "reduce_n3_p2": [0.17117032408714294, 0.0006594528094865382, 0.015400172211229801, 0.04627399891614914, 0.02375972457230091, 0.008777054026722908, 0.14007793366909027], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.39294135570526123, 0.24050362408161163, 0.12353778630495071, 0.046514563262462616, 0.03162315487861633, 0.06619542837142944, 0.04173958674073219], "normal_n2_p1": [0.03732845559716225, 0.8183630704879761, 0.03308308869600296, 0.02328578010201454, 0.024399779736995697, 0.01744404062628746, 0.023378806188702583], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011186625808477402, 0.01141814049333334, 0.011310013942420483, 0.893086314201355, 0.019916050136089325, 0.022799372673034668, 0.015565380454063416], "normal_n3_p1": [0.010121542029082775, 0.007609987631440163, 0.005908571649342775, 0.8938536047935486, 0.02288990654051304, 0.029720915481448174, 0.015199322253465652], "normal_n3_p2": [0.012523261830210686, 0.014241929166018963, 0.011783329769968987, 0.9087741374969482, 0.016685552895069122, 0.012617337517440319, 0.008790727704763412], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4245970547199249, 0.27245816588401794, 0.03931079059839249, 0.06958089023828506, 0.06525968015193939, 0.014331571757793427, 0.04374266788363457], "reduce_n2_p1": [0.03150113672018051, 0.044441964477300644, 0.004070282448083162, 0.29354673624038696, 0.0007899253396317363, 0.5826236605644226, 0.02050088718533516], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01899818144738674, 0.012277062982320786, 0.014533402398228645, 0.015587039291858673, 0.8928849697113037, 0.012915844097733498, 0.014795963652431965], "reduce_n3_p1": [0.780166506767273, 0.03753209114074707, 0.0053866226226091385, 0.07886215299367905, 0.014217423275113106, 0.018725920468568802, 0.02694028802216053], "reduce_n3_p2": [0.19327287375926971, 0.001079171895980835, 0.023281443864107132, 0.05768534913659096, 0.03181668370962143, 0.008077254518866539, 0.2811105251312256], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.39294135570526123, 0.24050362408161163, 0.12353778630495071, 0.046514563262462616, 0.03162315487861633, 0.06619542837142944, 0.04173958674073219], "normal_n2_p1": [0.03732845559716225, 0.8183630704879761, 0.03308308869600296, 0.02328578010201454, 0.024399779736995697, 0.01744404062628746, 0.023378806188702583], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011186625808477402, 0.01141814049333334, 0.011310013942420483, 0.893086314201355, 0.019916050136089325, 0.022799372673034668, 0.015565380454063416], "normal_n3_p1": [0.010121542029082775, 0.007609987631440163, 0.005908571649342775, 0.8938536047935486, 0.02288990654051304, 0.029720915481448174, 0.015199322253465652], "normal_n3_p2": [0.012523261830210686, 0.014241929166018963, 0.011783329769968987, 0.9087741374969482, 0.016685552895069122, 0.012617337517440319, 0.008790727704763412], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4245970547199249, 0.27245816588401794, 0.03931079059839249, 0.06958089023828506, 0.06525968015193939, 0.014331571757793427, 0.04374266788363457], "reduce_n2_p1": [0.03150113672018051, 0.044441964477300644, 0.004070282448083162, 0.29354673624038696, 0.0007899253396317363, 0.5826236605644226, 0.02050088718533516], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01899818144738674, 0.012277062982320786, 0.014533402398228645, 0.015587039291858673, 0.8928849697113037, 0.012915844097733498, 0.014795963652431965], "reduce_n3_p1": [0.780166506767273, 0.03753209114074707, 0.0053866226226091385, 0.07886215299367905, 0.014217423275113106, 0.018725920468568802, 0.02694028802216053], "reduce_n3_p2": [0.19327287375926971, 0.001079171895980835, 0.023281443864107132, 0.05768534913659096, 0.03181668370962143, 0.008077254518866539, 0.2811105251312256], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.25205540657043457, 0.2853780686855316, 0.11638369411230087, 0.053760793060064316, 0.05193140730261803, 0.10597706586122513, 0.060809168964624405], "normal_n2_p1": [0.03191746398806572, 0.8226807117462158, 0.03169235587120056, 0.020605208352208138, 0.025886302813887596, 0.0202829297631979, 0.022761346772313118], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.019294781610369682, 0.02061406522989273, 0.021050453186035156, 0.8421173691749573, 0.02730010636150837, 0.018947649747133255, 0.02247037924826145], "normal_n3_p1": [0.010183749720454216, 0.005275234580039978, 0.004994637332856655, 0.8885505199432373, 0.019447458907961845, 0.03208558261394501, 0.01839461550116539], "normal_n3_p2": [0.010504714213311672, 0.011239392682909966, 0.007309013977646828, 0.9194863438606262, 0.01692596636712551, 0.012731335125863552, 0.007636248599737883], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.2595422565937042, 0.46511682868003845, 0.0467623732984066, 0.0519702211022377, 0.03711086884140968, 0.020882178097963333, 0.05990707129240036], "reduce_n2_p1": [0.04951974004507065, 0.058066170662641525, 0.008524604141712189, 0.3544560968875885, 0.002167078899219632, 0.44904759526252747, 0.03085433878004551], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.019948551431298256, 0.014209493063390255, 0.013576091267168522, 0.01597239263355732, 0.8892710208892822, 0.01524623204022646, 0.014849208295345306], "reduce_n3_p1": [0.7042142152786255, 0.03612399473786354, 0.007515863515436649, 0.13419435918331146, 0.020727816969156265, 0.030864650383591652, 0.02155316062271595], "reduce_n3_p2": [0.258670836687088, 0.0026252635288983583, 0.0379662811756134, 0.1065886989235878, 0.04757346212863922, 0.011180263943970203, 0.20762158930301666], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.25205540657043457, 0.2853780686855316, 0.11638369411230087, 0.053760793060064316, 0.05193140730261803, 0.10597706586122513, 0.060809168964624405], "normal_n2_p1": [0.03191746398806572, 0.8226807117462158, 0.03169235587120056, 0.020605208352208138, 0.025886302813887596, 0.0202829297631979, 0.022761346772313118], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.019294781610369682, 0.02061406522989273, 0.021050453186035156, 0.8421173691749573, 0.02730010636150837, 0.018947649747133255, 0.02247037924826145], "normal_n3_p1": [0.010183749720454216, 0.005275234580039978, 0.004994637332856655, 0.8885505199432373, 0.019447458907961845, 0.03208558261394501, 0.01839461550116539], "normal_n3_p2": [0.010504714213311672, 0.011239392682909966, 0.007309013977646828, 0.9194863438606262, 0.01692596636712551, 0.012731335125863552, 0.007636248599737883], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.2595422565937042, 0.46511682868003845, 0.0467623732984066, 0.0519702211022377, 0.03711086884140968, 0.020882178097963333, 0.05990707129240036], "reduce_n2_p1": [0.04951974004507065, 0.058066170662641525, 0.008524604141712189, 0.3544560968875885, 0.002167078899219632, 0.44904759526252747, 0.03085433878004551], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.019948551431298256, 0.014209493063390255, 0.013576091267168522, 0.01597239263355732, 0.8892710208892822, 0.01524623204022646, 0.014849208295345306], "reduce_n3_p1": [0.7042142152786255, 0.03612399473786354, 0.007515863515436649, 0.13419435918331146, 0.020727816969156265, 0.030864650383591652, 0.02155316062271595], "reduce_n3_p2": [0.258670836687088, 0.0026252635288983583, 0.0379662811756134, 0.1065886989235878, 0.04757346212863922, 0.011180263943970203, 0.20762158930301666], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09840013831853867, 0.177428737282753, 0.11897089332342148, 0.06968078762292862, 0.07411262392997742, 0.18135683238506317, 0.12888960540294647], "normal_n2_p1": [0.05611210688948631, 0.5442589521408081, 0.07793517410755157, 0.059981781989336014, 0.06681052595376968, 0.05892610549926758, 0.059451766312122345], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.022205233573913574, 0.025243420153856277, 0.02581552043557167, 0.8360002636909485, 0.028497900813817978, 0.015082506462931633, 0.0184000413864851], "normal_n3_p1": [0.02035476826131344, 0.010460413992404938, 0.011934791691601276, 0.7479850053787231, 0.034084390848875046, 0.07606546580791473, 0.04032091423869133], "normal_n3_p2": [0.020331716164946556, 0.018609309569001198, 0.012066242285072803, 0.8570943474769592, 0.03166802227497101, 0.02110295556485653, 0.013548499904572964], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13336141407489777, 0.3826606869697571, 0.08439121395349503, 0.06564407795667648, 0.04381825029850006, 0.052068814635276794, 0.12080007046461105], "reduce_n2_p1": [0.029494844377040863, 0.029186464846134186, 0.007075090426951647, 0.060738395899534225, 0.0026495575439184904, 0.8225891590118408, 0.01646163873374462], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.019795354455709457, 0.01731717959046364, 0.021911581978201866, 0.0257487203925848, 0.8468319177627563, 0.022447243332862854, 0.022157011553645134], "reduce_n3_p1": [0.9394715428352356, 0.01275542564690113, 0.003794414224103093, 0.00682571018114686, 0.00880478322505951, 0.010483920574188232, 0.008401141501963139], "reduce_n3_p2": [0.14419810473918915, 0.004426191095262766, 0.039734847843647, 0.09771198779344559, 0.045312292873859406, 0.01279713399708271, 0.06081032752990723], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09840013831853867, 0.177428737282753, 0.11897089332342148, 0.06968078762292862, 0.07411262392997742, 0.18135683238506317, 0.12888960540294647], "normal_n2_p1": [0.05611210688948631, 0.5442589521408081, 0.07793517410755157, 0.059981781989336014, 0.06681052595376968, 0.05892610549926758, 0.059451766312122345], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.022205233573913574, 0.025243420153856277, 0.02581552043557167, 0.8360002636909485, 0.028497900813817978, 0.015082506462931633, 0.0184000413864851], "normal_n3_p1": [0.02035476826131344, 0.010460413992404938, 0.011934791691601276, 0.7479850053787231, 0.034084390848875046, 0.07606546580791473, 0.04032091423869133], "normal_n3_p2": [0.020331716164946556, 0.018609309569001198, 0.012066242285072803, 0.8570943474769592, 0.03166802227497101, 0.02110295556485653, 0.013548499904572964], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13336141407489777, 0.3826606869697571, 0.08439121395349503, 0.06564407795667648, 0.04381825029850006, 0.052068814635276794, 0.12080007046461105], "reduce_n2_p1": [0.029494844377040863, 0.029186464846134186, 0.007075090426951647, 0.060738395899534225, 0.0026495575439184904, 0.8225891590118408, 0.01646163873374462], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.019795354455709457, 0.01731717959046364, 0.021911581978201866, 0.0257487203925848, 0.8468319177627563, 0.022447243332862854, 0.022157011553645134], "reduce_n3_p1": [0.9394715428352356, 0.01275542564690113, 0.003794414224103093, 0.00682571018114686, 0.00880478322505951, 0.010483920574188232, 0.008401141501963139], "reduce_n3_p2": [0.14419810473918915, 0.004426191095262766, 0.039734847843647, 0.09771198779344559, 0.045312292873859406, 0.01279713399708271, 0.06081032752990723], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08146700263023376, 0.08393668383359909, 0.08562272787094116, 0.13876236975193024, 0.029437346383929253, 0.15942369401454926, 0.26434361934661865], "normal_n2_p1": [0.07004641741514206, 0.12675853073596954, 0.10188285261392593, 0.18122810125350952, 0.12021007388830185, 0.14030426740646362, 0.14457488059997559], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0230985376983881, 0.024566566571593285, 0.023886194452643394, 0.8437978029251099, 0.030536556616425514, 0.01470708567649126, 0.014620904810726643], "normal_n3_p1": [0.02240382879972458, 0.013846606947481632, 0.017025450244545937, 0.7993239164352417, 0.03886405751109123, 0.04266662895679474, 0.032095979899168015], "normal_n3_p2": [0.11551995575428009, 0.09207414835691452, 0.055457282811403275, 0.3897230327129364, 0.12552949786186218, 0.06416328996419907, 0.05483220890164375], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.10191157460212708, 0.43299415707588196, 0.047281019389629364, 0.041174449026584625, 0.039947595447301865, 0.06135240197181702, 0.12057965248823166], "reduce_n2_p1": [0.029369862750172615, 0.025754233822226524, 0.008387270383536816, 0.02912491373717785, 0.004736077040433884, 0.8552234768867493, 0.016933884471654892], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.032436128705739975, 0.028373178094625473, 0.03321010246872902, 0.03945423662662506, 0.7760103344917297, 0.030735209584236145, 0.026834705844521523], "reduce_n3_p1": [0.9461492896080017, 0.011357203125953674, 0.005065475590527058, 0.0027830773033201694, 0.009365534409880638, 0.009032086469233036, 0.009254810400307178], "reduce_n3_p2": [0.06362123787403107, 0.008972474373877048, 0.05221231281757355, 0.1198200210928917, 0.05657504126429558, 0.01944785751402378, 0.060803305357694626], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08146700263023376, 0.08393668383359909, 0.08562272787094116, 0.13876236975193024, 0.029437346383929253, 0.15942369401454926, 0.26434361934661865], "normal_n2_p1": [0.07004641741514206, 0.12675853073596954, 0.10188285261392593, 0.18122810125350952, 0.12021007388830185, 0.14030426740646362, 0.14457488059997559], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0230985376983881, 0.024566566571593285, 0.023886194452643394, 0.8437978029251099, 0.030536556616425514, 0.01470708567649126, 0.014620904810726643], "normal_n3_p1": [0.02240382879972458, 0.013846606947481632, 0.017025450244545937, 0.7993239164352417, 0.03886405751109123, 0.04266662895679474, 0.032095979899168015], "normal_n3_p2": [0.11551995575428009, 0.09207414835691452, 0.055457282811403275, 0.3897230327129364, 0.12552949786186218, 0.06416328996419907, 0.05483220890164375], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.10191157460212708, 0.43299415707588196, 0.047281019389629364, 0.041174449026584625, 0.039947595447301865, 0.06135240197181702, 0.12057965248823166], "reduce_n2_p1": [0.029369862750172615, 0.025754233822226524, 0.008387270383536816, 0.02912491373717785, 0.004736077040433884, 0.8552234768867493, 0.016933884471654892], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.032436128705739975, 0.028373178094625473, 0.03321010246872902, 0.03945423662662506, 0.7760103344917297, 0.030735209584236145, 0.026834705844521523], "reduce_n3_p1": [0.9461492896080017, 0.011357203125953674, 0.005065475590527058, 0.0027830773033201694, 0.009365534409880638, 0.009032086469233036, 0.009254810400307178], "reduce_n3_p2": [0.06362123787403107, 0.008972474373877048, 0.05221231281757355, 0.1198200210928917, 0.05657504126429558, 0.01944785751402378, 0.060803305357694626], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.17081180214881897, 0.1489078253507614, 0.29904747009277344, 0.05119248852133751, 0.01915564388036728, 0.21476086974143982, 0.011429348029196262], "normal_n2_p1": [0.13991643488407135, 0.11492562294006348, 0.3188419044017792, 0.019206345081329346, 0.23359055817127228, 0.04887508228421211, 0.06645821779966354], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.012618240900337696, 0.01136564277112484, 0.01092670951038599, 0.9231404066085815, 0.017494501546025276, 0.009407369419932365, 0.006824853830039501], "normal_n3_p1": [0.034040044993162155, 0.025973504409193993, 0.03390173241496086, 0.7454500794410706, 0.05110873281955719, 0.04254981130361557, 0.03395351767539978], "normal_n3_p2": [0.2284567654132843, 0.15711888670921326, 0.08095528185367584, 0.21128492057323456, 0.07969513535499573, 0.12384193390607834, 0.03294338285923004], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05936947092413902, 0.3184182047843933, 0.03943130001425743, 0.04345973581075668, 0.05965075641870499, 0.09889079630374908, 0.20667017996311188], "reduce_n2_p1": [0.07987234741449356, 0.06705280393362045, 0.02484140917658806, 0.0546184703707695, 0.019285479560494423, 0.5923399925231934, 0.056702110916376114], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0303048063069582, 0.030188798904418945, 0.0373946875333786, 0.03883243352174759, 0.7684881687164307, 0.040687356144189835, 0.022338412702083588], "reduce_n3_p1": [0.9236865639686584, 0.015156368725001812, 0.008996552787721157, 0.003323465585708618, 0.013790471479296684, 0.011985501274466515, 0.013893285766243935], "reduce_n3_p2": [0.10738955438137054, 0.02783968485891819, 0.12634412944316864, 0.3135957419872284, 0.09474478662014008, 0.05223013088107109, 0.08090976625680923], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.17081180214881897, 0.1489078253507614, 0.29904747009277344, 0.05119248852133751, 0.01915564388036728, 0.21476086974143982, 0.011429348029196262], "normal_n2_p1": [0.13991643488407135, 0.11492562294006348, 0.3188419044017792, 0.019206345081329346, 0.23359055817127228, 0.04887508228421211, 0.06645821779966354], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.012618240900337696, 0.01136564277112484, 0.01092670951038599, 0.9231404066085815, 0.017494501546025276, 0.009407369419932365, 0.006824853830039501], "normal_n3_p1": [0.034040044993162155, 0.025973504409193993, 0.03390173241496086, 0.7454500794410706, 0.05110873281955719, 0.04254981130361557, 0.03395351767539978], "normal_n3_p2": [0.2284567654132843, 0.15711888670921326, 0.08095528185367584, 0.21128492057323456, 0.07969513535499573, 0.12384193390607834, 0.03294338285923004], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05936947092413902, 0.3184182047843933, 0.03943130001425743, 0.04345973581075668, 0.05965075641870499, 0.09889079630374908, 0.20667017996311188], "reduce_n2_p1": [0.07987234741449356, 0.06705280393362045, 0.02484140917658806, 0.0546184703707695, 0.019285479560494423, 0.5923399925231934, 0.056702110916376114], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0303048063069582, 0.030188798904418945, 0.0373946875333786, 0.03883243352174759, 0.7684881687164307, 0.040687356144189835, 0.022338412702083588], "reduce_n3_p1": [0.9236865639686584, 0.015156368725001812, 0.008996552787721157, 0.003323465585708618, 0.013790471479296684, 0.011985501274466515, 0.013893285766243935], "reduce_n3_p2": [0.10738955438137054, 0.02783968485891819, 0.12634412944316864, 0.3135957419872284, 0.09474478662014008, 0.05223013088107109, 0.08090976625680923], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.21147918701171875, 0.1966438591480255, 0.3366799056529999, 0.028340090066194534, 0.013393834233283997, 0.1821378469467163, 0.002152559580281377], "normal_n2_p1": [0.07592275738716125, 0.06620366871356964, 0.15606534481048584, 0.005929114297032356, 0.5608494877815247, 0.026939110830426216, 0.06184229627251625], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009355411864817142, 0.008127568289637566, 0.007730808109045029, 0.9425942301750183, 0.013501354493200779, 0.007867621257901192, 0.005141969304531813], "normal_n3_p1": [0.04054175317287445, 0.03214496001601219, 0.0392838753759861, 0.7089685201644897, 0.05667877942323685, 0.04343053698539734, 0.03657509759068489], "normal_n3_p2": [0.02329990267753601, 0.045630451291799545, 0.041840482503175735, 0.6217126846313477, 0.05470715090632439, 0.1320253163576126, 0.017730599269270897], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04891776666045189, 0.24235904216766357, 0.03808986023068428, 0.03982948139309883, 0.043595995754003525, 0.10396842658519745, 0.3998787999153137], "reduce_n2_p1": [0.20235668122768402, 0.17506125569343567, 0.03169659897685051, 0.04962903633713722, 0.032583292573690414, 0.023089731112122536, 0.10269054025411606], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03946574777364731, 0.040457338094711304, 0.04329843446612358, 0.050344884395599365, 0.6970016360282898, 0.0546049065887928, 0.027377460151910782], "reduce_n3_p1": [0.8759317398071289, 0.02258894592523575, 0.01851806417107582, 0.006452084518969059, 0.02169090136885643, 0.019497480243444443, 0.020755160599946976], "reduce_n3_p2": [0.01614966429769993, 0.010812933556735516, 0.02377469465136528, 0.8578087687492371, 0.021374652162194252, 0.019131768494844437, 0.03202462196350098], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.21147918701171875, 0.1966438591480255, 0.3366799056529999, 0.028340090066194534, 0.013393834233283997, 0.1821378469467163, 0.002152559580281377], "normal_n2_p1": [0.07592275738716125, 0.06620366871356964, 0.15606534481048584, 0.005929114297032356, 0.5608494877815247, 0.026939110830426216, 0.06184229627251625], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009355411864817142, 0.008127568289637566, 0.007730808109045029, 0.9425942301750183, 0.013501354493200779, 0.007867621257901192, 0.005141969304531813], "normal_n3_p1": [0.04054175317287445, 0.03214496001601219, 0.0392838753759861, 0.7089685201644897, 0.05667877942323685, 0.04343053698539734, 0.03657509759068489], "normal_n3_p2": [0.02329990267753601, 0.045630451291799545, 0.041840482503175735, 0.6217126846313477, 0.05470715090632439, 0.1320253163576126, 0.017730599269270897], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04891776666045189, 0.24235904216766357, 0.03808986023068428, 0.03982948139309883, 0.043595995754003525, 0.10396842658519745, 0.3998787999153137], "reduce_n2_p1": [0.20235668122768402, 0.17506125569343567, 0.03169659897685051, 0.04962903633713722, 0.032583292573690414, 0.023089731112122536, 0.10269054025411606], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03946574777364731, 0.040457338094711304, 0.04329843446612358, 0.050344884395599365, 0.6970016360282898, 0.0546049065887928, 0.027377460151910782], "reduce_n3_p1": [0.8759317398071289, 0.02258894592523575, 0.01851806417107582, 0.006452084518969059, 0.02169090136885643, 0.019497480243444443, 0.020755160599946976], "reduce_n3_p2": [0.01614966429769993, 0.010812933556735516, 0.02377469465136528, 0.8578087687492371, 0.021374652162194252, 0.019131768494844437, 0.03202462196350098], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.18155857920646667, 0.17881041765213013, 0.4705542325973511, 0.02097272500395775, 0.011610516346991062, 0.11839035153388977, 0.0011261679464951158], "normal_n2_p1": [0.15973851084709167, 0.09995313733816147, 0.265503466129303, 0.007231372874230146, 0.23745524883270264, 0.0478268601000309, 0.1079540029168129], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009082026779651642, 0.007515325676649809, 0.007222952786833048, 0.9436026811599731, 0.0122455395758152, 0.008287658914923668, 0.005557426251471043], "normal_n3_p1": [0.050829388201236725, 0.04587377980351448, 0.04591503366827965, 0.655428946018219, 0.0719757005572319, 0.049386780709028244, 0.042951714247465134], "normal_n3_p2": [0.023849835619330406, 0.08293645828962326, 0.09552472084760666, 0.20403869450092316, 0.14725762605667114, 0.23930609226226807, 0.03178943321108818], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04424437880516052, 0.09098339080810547, 0.03786522522568703, 0.03270213305950165, 0.09262479096651077, 0.5235183835029602, 0.12264999002218246], "reduce_n2_p1": [0.44932258129119873, 0.07158505916595459, 0.023438075557351112, 0.04337198659777641, 0.01844879612326622, 0.003779531456530094, 0.3835430145263672], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.05006713792681694, 0.04869621992111206, 0.029284436255693436, 0.0288433488458395, 0.7382858991622925, 0.0314771868288517, 0.03746170550584793], "reduce_n3_p1": [0.7363417744636536, 0.039966944605112076, 0.042615003883838654, 0.01661139540374279, 0.04865246266126633, 0.03256765380501747, 0.05257692188024521], "reduce_n3_p2": [0.018863089382648468, 0.01809239387512207, 0.028059545904397964, 0.8201619386672974, 0.026270627975463867, 0.030772244557738304, 0.04167041555047035], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.18155857920646667, 0.17881041765213013, 0.4705542325973511, 0.02097272500395775, 0.011610516346991062, 0.11839035153388977, 0.0011261679464951158], "normal_n2_p1": [0.15973851084709167, 0.09995313733816147, 0.265503466129303, 0.007231372874230146, 0.23745524883270264, 0.0478268601000309, 0.1079540029168129], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009082026779651642, 0.007515325676649809, 0.007222952786833048, 0.9436026811599731, 0.0122455395758152, 0.008287658914923668, 0.005557426251471043], "normal_n3_p1": [0.050829388201236725, 0.04587377980351448, 0.04591503366827965, 0.655428946018219, 0.0719757005572319, 0.049386780709028244, 0.042951714247465134], "normal_n3_p2": [0.023849835619330406, 0.08293645828962326, 0.09552472084760666, 0.20403869450092316, 0.14725762605667114, 0.23930609226226807, 0.03178943321108818], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04424437880516052, 0.09098339080810547, 0.03786522522568703, 0.03270213305950165, 0.09262479096651077, 0.5235183835029602, 0.12264999002218246], "reduce_n2_p1": [0.44932258129119873, 0.07158505916595459, 0.023438075557351112, 0.04337198659777641, 0.01844879612326622, 0.003779531456530094, 0.3835430145263672], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.05006713792681694, 0.04869621992111206, 0.029284436255693436, 0.0288433488458395, 0.7382858991622925, 0.0314771868288517, 0.03746170550584793], "reduce_n3_p1": [0.7363417744636536, 0.039966944605112076, 0.042615003883838654, 0.01661139540374279, 0.04865246266126633, 0.03256765380501747, 0.05257692188024521], "reduce_n3_p2": [0.018863089382648468, 0.01809239387512207, 0.028059545904397964, 0.8201619386672974, 0.026270627975463867, 0.030772244557738304, 0.04167041555047035], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1925508975982666, 0.2438471019268036, 0.3647831678390503, 0.03152100741863251, 0.016546715050935745, 0.12880195677280426, 0.001531279063783586], "normal_n2_p1": [0.14641304314136505, 0.11025285720825195, 0.38106846809387207, 0.008527255617082119, 0.07420872896909714, 0.07011145353317261, 0.13301123678684235], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009467448107898235, 0.008183409459888935, 0.007924461737275124, 0.9352867007255554, 0.012805224396288395, 0.010376054793596268, 0.007072323467582464], "normal_n3_p1": [0.06674071401357651, 0.0647851899266243, 0.04380433261394501, 0.6115013360977173, 0.08909597992897034, 0.04934556037187576, 0.03925642743706703], "normal_n3_p2": [0.02160429023206234, 0.05458667501807213, 0.05091512203216553, 0.05896008014678955, 0.16096366941928864, 0.48143470287323, 0.03268821910023689], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07368355244398117, 0.10047265887260437, 0.05665815621614456, 0.04153551533818245, 0.20044001936912537, 0.38230255246162415, 0.05286652594804764], "reduce_n2_p1": [0.8041276931762695, 0.044075485318899155, 0.01837463490664959, 0.041078004986047745, 0.013527565635740757, 0.0015850213821977377, 0.07626724243164062], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022485952824354172, 0.0344158411026001, 0.017200138419866562, 0.01592727191746235, 0.8580505847930908, 0.010828986763954163, 0.0254824236035347], "reduce_n3_p1": [0.5639327764511108, 0.06386125087738037, 0.05770296975970268, 0.048800740391016006, 0.079323410987854, 0.06110181286931038, 0.07335144281387329], "reduce_n3_p2": [0.04008375108242035, 0.05118316411972046, 0.06834515184164047, 0.5303134322166443, 0.055912043899297714, 0.07531999796628952, 0.14500948786735535], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1925508975982666, 0.2438471019268036, 0.3647831678390503, 0.03152100741863251, 0.016546715050935745, 0.12880195677280426, 0.001531279063783586], "normal_n2_p1": [0.14641304314136505, 0.11025285720825195, 0.38106846809387207, 0.008527255617082119, 0.07420872896909714, 0.07011145353317261, 0.13301123678684235], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009467448107898235, 0.008183409459888935, 0.007924461737275124, 0.9352867007255554, 0.012805224396288395, 0.010376054793596268, 0.007072323467582464], "normal_n3_p1": [0.06674071401357651, 0.0647851899266243, 0.04380433261394501, 0.6115013360977173, 0.08909597992897034, 0.04934556037187576, 0.03925642743706703], "normal_n3_p2": [0.02160429023206234, 0.05458667501807213, 0.05091512203216553, 0.05896008014678955, 0.16096366941928864, 0.48143470287323, 0.03268821910023689], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.07368355244398117, 0.10047265887260437, 0.05665815621614456, 0.04153551533818245, 0.20044001936912537, 0.38230255246162415, 0.05286652594804764], "reduce_n2_p1": [0.8041276931762695, 0.044075485318899155, 0.01837463490664959, 0.041078004986047745, 0.013527565635740757, 0.0015850213821977377, 0.07626724243164062], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022485952824354172, 0.0344158411026001, 0.017200138419866562, 0.01592727191746235, 0.8580505847930908, 0.010828986763954163, 0.0254824236035347], "reduce_n3_p1": [0.5639327764511108, 0.06386125087738037, 0.05770296975970268, 0.048800740391016006, 0.079323410987854, 0.06110181286931038, 0.07335144281387329], "reduce_n3_p2": [0.04008375108242035, 0.05118316411972046, 0.06834515184164047, 0.5303134322166443, 0.055912043899297714, 0.07531999796628952, 0.14500948786735535], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.07352393120527267, 0.23745565116405487, 0.5832672119140625, 0.026746762916445732, 0.01762721687555313, 0.0431688129901886, 0.0016952187288552523], "normal_n2_p1": [0.02088264189660549, 0.028596222400665283, 0.02776646427810192, 0.0058974637649953365, 0.024196963757276535, 0.05460749939084053, 0.7616823315620422], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.015249008312821388, 0.014801173470914364, 0.014479079283773899, 0.8875772356987, 0.01934834197163582, 0.017732856795191765, 0.012660319916903973], "normal_n3_p1": [0.033715326339006424, 0.022506559267640114, 0.020040754228830338, 0.7868123650550842, 0.05264357477426529, 0.027672071009874344, 0.02726525440812111], "normal_n3_p2": [0.01551620289683342, 0.03437115624547005, 0.03101758100092411, 0.02221168391406536, 0.5858829021453857, 0.09203272312879562, 0.023949654772877693], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06767904758453369, 0.06120186299085617, 0.0694584995508194, 0.036389268934726715, 0.2974887192249298, 0.28627049922943115, 0.03678641468286514], "reduce_n2_p1": [0.9583852291107178, 0.012997407466173172, 0.006523339543491602, 0.012064852751791477, 0.004711309913545847, 0.0005465894937515259, 0.004483632743358612], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03263929486274719, 0.06831706315279007, 0.019492540508508682, 0.0179256871342659, 0.7987959980964661, 0.01200446579605341, 0.03060593456029892], "reduce_n3_p1": [0.4500736594200134, 0.07931234687566757, 0.07054293155670166, 0.09769971668720245, 0.08797343820333481, 0.05630036070942879, 0.0791507437825203], "reduce_n3_p2": [0.04099545627832413, 0.06100071594119072, 0.08288838714361191, 0.37931951880455017, 0.06808099895715714, 0.06688500940799713, 0.2564270794391632], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.07352393120527267, 0.23745565116405487, 0.5832672119140625, 0.026746762916445732, 0.01762721687555313, 0.0431688129901886, 0.0016952187288552523], "normal_n2_p1": [0.02088264189660549, 0.028596222400665283, 0.02776646427810192, 0.0058974637649953365, 0.024196963757276535, 0.05460749939084053, 0.7616823315620422], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.015249008312821388, 0.014801173470914364, 0.014479079283773899, 0.8875772356987, 0.01934834197163582, 0.017732856795191765, 0.012660319916903973], "normal_n3_p1": [0.033715326339006424, 0.022506559267640114, 0.020040754228830338, 0.7868123650550842, 0.05264357477426529, 0.027672071009874344, 0.02726525440812111], "normal_n3_p2": [0.01551620289683342, 0.03437115624547005, 0.03101758100092411, 0.02221168391406536, 0.5858829021453857, 0.09203272312879562, 0.023949654772877693], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06767904758453369, 0.06120186299085617, 0.0694584995508194, 0.036389268934726715, 0.2974887192249298, 0.28627049922943115, 0.03678641468286514], "reduce_n2_p1": [0.9583852291107178, 0.012997407466173172, 0.006523339543491602, 0.012064852751791477, 0.004711309913545847, 0.0005465894937515259, 0.004483632743358612], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03263929486274719, 0.06831706315279007, 0.019492540508508682, 0.0179256871342659, 0.7987959980964661, 0.01200446579605341, 0.03060593456029892], "reduce_n3_p1": [0.4500736594200134, 0.07931234687566757, 0.07054293155670166, 0.09769971668720245, 0.08797343820333481, 0.05630036070942879, 0.0791507437825203], "reduce_n3_p2": [0.04099545627832413, 0.06100071594119072, 0.08288838714361191, 0.37931951880455017, 0.06808099895715714, 0.06688500940799713, 0.2564270794391632], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08262353390455246, 0.6242982149124146, 0.1752251386642456, 0.027953047305345535, 0.024413304403424263, 0.04295092448592186, 0.0032401911448687315], "normal_n2_p1": [0.030841248109936714, 0.04960018768906593, 0.04059060290455818, 0.01418395433574915, 0.04603666812181473, 0.20760087668895721, 0.2051517814397812], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.008540485054254532, 0.008166168816387653, 0.00778881786391139, 0.9352208375930786, 0.01071080006659031, 0.011945251375436783, 0.009578317403793335], "normal_n3_p1": [0.07074707001447678, 0.04040404036641121, 0.04122651740908623, 0.6035590767860413, 0.10322795808315277, 0.042260099202394485, 0.048269495368003845], "normal_n3_p2": [0.03040783293545246, 0.05952836573123932, 0.05223112925887108, 0.02554183080792427, 0.04970138520002365, 0.10089391469955444, 0.041171785444021225], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08764420449733734, 0.062380556017160416, 0.14753422141075134, 0.0633481815457344, 0.1980743557214737, 0.24591419100761414, 0.05213969200849533], "reduce_n2_p1": [0.9576541781425476, 0.012737530283629894, 0.007518946658819914, 0.012635971419513226, 0.005682468414306641, 0.0007918357150629163, 0.002395464340224862], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.003239138750359416, 0.0041083646938204765, 0.003132757032290101, 0.0037099153269082308, 0.9770779609680176, 0.0028982858639210463, 0.0028702719137072563], "reduce_n3_p1": [0.009623302146792412, 0.02885008417069912, 0.0383186861872673, 0.5872514843940735, 0.18207718431949615, 0.03937853127717972, 0.032796576619148254], "reduce_n3_p2": [0.009381157346069813, 0.012311185710132122, 0.012722967192530632, 0.2732422649860382, 0.032487187534570694, 0.013195297680795193, 0.6213827133178711], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08262353390455246, 0.6242982149124146, 0.1752251386642456, 0.027953047305345535, 0.024413304403424263, 0.04295092448592186, 0.0032401911448687315], "normal_n2_p1": [0.030841248109936714, 0.04960018768906593, 0.04059060290455818, 0.01418395433574915, 0.04603666812181473, 0.20760087668895721, 0.2051517814397812], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.008540485054254532, 0.008166168816387653, 0.00778881786391139, 0.9352208375930786, 0.01071080006659031, 0.011945251375436783, 0.009578317403793335], "normal_n3_p1": [0.07074707001447678, 0.04040404036641121, 0.04122651740908623, 0.6035590767860413, 0.10322795808315277, 0.042260099202394485, 0.048269495368003845], "normal_n3_p2": [0.03040783293545246, 0.05952836573123932, 0.05223112925887108, 0.02554183080792427, 0.04970138520002365, 0.10089391469955444, 0.041171785444021225], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08764420449733734, 0.062380556017160416, 0.14753422141075134, 0.0633481815457344, 0.1980743557214737, 0.24591419100761414, 0.05213969200849533], "reduce_n2_p1": [0.9576541781425476, 0.012737530283629894, 0.007518946658819914, 0.012635971419513226, 0.005682468414306641, 0.0007918357150629163, 0.002395464340224862], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.003239138750359416, 0.0041083646938204765, 0.003132757032290101, 0.0037099153269082308, 0.9770779609680176, 0.0028982858639210463, 0.0028702719137072563], "reduce_n3_p1": [0.009623302146792412, 0.02885008417069912, 0.0383186861872673, 0.5872514843940735, 0.18207718431949615, 0.03937853127717972, 0.032796576619148254], "reduce_n3_p2": [0.009381157346069813, 0.012311185710132122, 0.012722967192530632, 0.2732422649860382, 0.032487187534570694, 0.013195297680795193, 0.6213827133178711], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0696304515004158, 0.7677201628684998, 0.06392206996679306, 0.02391645684838295, 0.022960953414440155, 0.030930154025554657, 0.00435232650488615], "normal_n2_p1": [0.03584662452340126, 0.06352748721837997, 0.059012558311223984, 0.022720104083418846, 0.07043382525444031, 0.25737112760543823, 0.0741974487900734], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.007940060459077358, 0.0074255215004086494, 0.0068741450086236, 0.9398244619369507, 0.009788605384528637, 0.010412941686809063, 0.010926197282969952], "normal_n3_p1": [0.12958183884620667, 0.08443067222833633, 0.10817985981702805, 0.3261429965496063, 0.23866359889507294, 0.027826553210616112, 0.03184894844889641], "normal_n3_p2": [0.04560638964176178, 0.06550825387239456, 0.056423548609018326, 0.02771970070898533, 0.020927974954247475, 0.12979285418987274, 0.08650301396846771], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13057586550712585, 0.06004585698246956, 0.10748839378356934, 0.06842317432165146, 0.22842468321323395, 0.2630865275859833, 0.05254184827208519], "reduce_n2_p1": [0.9184801578521729, 0.021275976672768593, 0.015373287722468376, 0.023670999333262444, 0.012523654848337173, 0.0022243461571633816, 0.0038433587178587914], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0013993827160447836, 0.001262576668523252, 0.001671013655140996, 0.002218423178419471, 0.9886404275894165, 0.0018982706824317575, 0.0012395326048135757], "reduce_n3_p1": [0.004449150059372187, 0.07268951833248138, 0.07930144667625427, 0.23840798437595367, 0.1086207702755928, 0.09611169993877411, 0.11388327926397324], "reduce_n3_p2": [0.012497460469603539, 0.016335830092430115, 0.0142056280747056, 0.8020411729812622, 0.0434848852455616, 0.010701690800487995, 0.061598312109708786], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0696304515004158, 0.7677201628684998, 0.06392206996679306, 0.02391645684838295, 0.022960953414440155, 0.030930154025554657, 0.00435232650488615], "normal_n2_p1": [0.03584662452340126, 0.06352748721837997, 0.059012558311223984, 0.022720104083418846, 0.07043382525444031, 0.25737112760543823, 0.0741974487900734], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.007940060459077358, 0.0074255215004086494, 0.0068741450086236, 0.9398244619369507, 0.009788605384528637, 0.010412941686809063, 0.010926197282969952], "normal_n3_p1": [0.12958183884620667, 0.08443067222833633, 0.10817985981702805, 0.3261429965496063, 0.23866359889507294, 0.027826553210616112, 0.03184894844889641], "normal_n3_p2": [0.04560638964176178, 0.06550825387239456, 0.056423548609018326, 0.02771970070898533, 0.020927974954247475, 0.12979285418987274, 0.08650301396846771], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13057586550712585, 0.06004585698246956, 0.10748839378356934, 0.06842317432165146, 0.22842468321323395, 0.2630865275859833, 0.05254184827208519], "reduce_n2_p1": [0.9184801578521729, 0.021275976672768593, 0.015373287722468376, 0.023670999333262444, 0.012523654848337173, 0.0022243461571633816, 0.0038433587178587914], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0013993827160447836, 0.001262576668523252, 0.001671013655140996, 0.002218423178419471, 0.9886404275894165, 0.0018982706824317575, 0.0012395326048135757], "reduce_n3_p1": [0.004449150059372187, 0.07268951833248138, 0.07930144667625427, 0.23840798437595367, 0.1086207702755928, 0.09611169993877411, 0.11388327926397324], "reduce_n3_p2": [0.012497460469603539, 0.016335830092430115, 0.0142056280747056, 0.8020411729812622, 0.0434848852455616, 0.010701690800487995, 0.061598312109708786], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.07943715155124664, 0.771099865436554, 0.04055951163172722, 0.02362458035349846, 0.02736404910683632, 0.0323612205684185, 0.006832913961261511], "normal_n2_p1": [0.06318921595811844, 0.11219915002584457, 0.11969388276338577, 0.03609435632824898, 0.10862092673778534, 0.11440160125494003, 0.03454131633043289], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011983959935605526, 0.010745016857981682, 0.009910381399095058, 0.9137127995491028, 0.013367212377488613, 0.013638094067573547, 0.015955375507473946], "normal_n3_p1": [0.12815681099891663, 0.06134595721960068, 0.0464676134288311, 0.5374056696891785, 0.1672065705060959, 0.016491640359163284, 0.018581712618470192], "normal_n3_p2": [0.09055975824594498, 0.08120892941951752, 0.0811251550912857, 0.041453585028648376, 0.023528866469860077, 0.23539143800735474, 0.182509645819664], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.21511858701705933, 0.06607159972190857, 0.10868633538484573, 0.08663304150104523, 0.10376203060150146, 0.286327064037323, 0.07552071660757065], "reduce_n2_p1": [0.7703916430473328, 0.04866857826709747, 0.04436659812927246, 0.0644504725933075, 0.038252487778663635, 0.008481346070766449, 0.010923502035439014], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0016813937108963728, 0.0012113339034840465, 0.0020524270366877317, 0.0027890014462172985, 0.9857382774353027, 0.0026099877431988716, 0.001516220043413341], "reduce_n3_p1": [0.0020633370149880648, 0.20879267156124115, 0.059918250888586044, 0.0023396159522235394, 0.03722288832068443, 0.038365017622709274, 0.4014919698238373], "reduce_n3_p2": [0.03844565525650978, 0.052394215017557144, 0.03892431780695915, 0.626838743686676, 0.09779909253120422, 0.0178975909948349, 0.045468106865882874], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.07943715155124664, 0.771099865436554, 0.04055951163172722, 0.02362458035349846, 0.02736404910683632, 0.0323612205684185, 0.006832913961261511], "normal_n2_p1": [0.06318921595811844, 0.11219915002584457, 0.11969388276338577, 0.03609435632824898, 0.10862092673778534, 0.11440160125494003, 0.03454131633043289], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011983959935605526, 0.010745016857981682, 0.009910381399095058, 0.9137127995491028, 0.013367212377488613, 0.013638094067573547, 0.015955375507473946], "normal_n3_p1": [0.12815681099891663, 0.06134595721960068, 0.0464676134288311, 0.5374056696891785, 0.1672065705060959, 0.016491640359163284, 0.018581712618470192], "normal_n3_p2": [0.09055975824594498, 0.08120892941951752, 0.0811251550912857, 0.041453585028648376, 0.023528866469860077, 0.23539143800735474, 0.182509645819664], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.21511858701705933, 0.06607159972190857, 0.10868633538484573, 0.08663304150104523, 0.10376203060150146, 0.286327064037323, 0.07552071660757065], "reduce_n2_p1": [0.7703916430473328, 0.04866857826709747, 0.04436659812927246, 0.0644504725933075, 0.038252487778663635, 0.008481346070766449, 0.010923502035439014], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0016813937108963728, 0.0012113339034840465, 0.0020524270366877317, 0.0027890014462172985, 0.9857382774353027, 0.0026099877431988716, 0.001516220043413341], "reduce_n3_p1": [0.0020633370149880648, 0.20879267156124115, 0.059918250888586044, 0.0023396159522235394, 0.03722288832068443, 0.038365017622709274, 0.4014919698238373], "reduce_n3_p2": [0.03844565525650978, 0.052394215017557144, 0.03892431780695915, 0.626838743686676, 0.09779909253120422, 0.0178975909948349, 0.045468106865882874], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11917493492364883, 0.6391671895980835, 0.05047669634222984, 0.03733662888407707, 0.05173036828637123, 0.054929375648498535, 0.014081249944865704], "normal_n2_p1": [0.07194643467664719, 0.1004912257194519, 0.12112481892108917, 0.04334314167499542, 0.12580037117004395, 0.08552829176187515, 0.022512411698698997], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.019798319786787033, 0.016679706051945686, 0.015930065885186195, 0.85865318775177, 0.021122653037309647, 0.02059193328022957, 0.02535204216837883], "normal_n3_p1": [0.02762243151664734, 0.008018852211534977, 0.00804860144853592, 0.8920276761054993, 0.0391789972782135, 0.00718205701559782, 0.00678621418774128], "normal_n3_p2": [0.011991458013653755, 0.008789216168224812, 0.009931338019669056, 0.021410485729575157, 0.011270325630903244, 0.1136799231171608, 0.6745620369911194], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01885843090713024, 0.012876388616859913, 0.0393390953540802, 0.03359119966626167, 0.012044470757246017, 0.8463090062141418, 0.023850271478295326], "reduce_n2_p1": [0.8166369199752808, 0.033119987696409225, 0.03302788734436035, 0.03264528885483742, 0.03752148151397705, 0.011015859432518482, 0.012458152137696743], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0028786263428628445, 0.0018575938884168863, 0.0033678631298244, 0.004433823749423027, 0.9758870601654053, 0.004343219567090273, 0.0027477163821458817], "reduce_n3_p1": [0.0008518203976564109, 0.17343376576900482, 0.01665033958852291, 0.00016079592751339078, 0.014512361027300358, 0.01389368250966072, 0.016984151676297188], "reduce_n3_p2": [0.06395592540502548, 0.07071324437856674, 0.05812432989478111, 0.384884774684906, 0.21402665972709656, 0.023896019905805588, 0.06168230623006821], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11917493492364883, 0.6391671895980835, 0.05047669634222984, 0.03733662888407707, 0.05173036828637123, 0.054929375648498535, 0.014081249944865704], "normal_n2_p1": [0.07194643467664719, 0.1004912257194519, 0.12112481892108917, 0.04334314167499542, 0.12580037117004395, 0.08552829176187515, 0.022512411698698997], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.019798319786787033, 0.016679706051945686, 0.015930065885186195, 0.85865318775177, 0.021122653037309647, 0.02059193328022957, 0.02535204216837883], "normal_n3_p1": [0.02762243151664734, 0.008018852211534977, 0.00804860144853592, 0.8920276761054993, 0.0391789972782135, 0.00718205701559782, 0.00678621418774128], "normal_n3_p2": [0.011991458013653755, 0.008789216168224812, 0.009931338019669056, 0.021410485729575157, 0.011270325630903244, 0.1136799231171608, 0.6745620369911194], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01885843090713024, 0.012876388616859913, 0.0393390953540802, 0.03359119966626167, 0.012044470757246017, 0.8463090062141418, 0.023850271478295326], "reduce_n2_p1": [0.8166369199752808, 0.033119987696409225, 0.03302788734436035, 0.03264528885483742, 0.03752148151397705, 0.011015859432518482, 0.012458152137696743], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0028786263428628445, 0.0018575938884168863, 0.0033678631298244, 0.004433823749423027, 0.9758870601654053, 0.004343219567090273, 0.0027477163821458817], "reduce_n3_p1": [0.0008518203976564109, 0.17343376576900482, 0.01665033958852291, 0.00016079592751339078, 0.014512361027300358, 0.01389368250966072, 0.016984151676297188], "reduce_n3_p2": [0.06395592540502548, 0.07071324437856674, 0.05812432989478111, 0.384884774684906, 0.21402665972709656, 0.023896019905805588, 0.06168230623006821], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.16570410132408142, 0.5352656841278076, 0.05764606222510338, 0.04821716248989105, 0.058464232832193375, 0.06925250589847565, 0.023274360224604607], "normal_n2_p1": [0.09050464630126953, 0.1283230185508728, 0.1942913830280304, 0.048497524112463, 0.2311888039112091, 0.12311968952417374, 0.02618124894797802], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02002943679690361, 0.017288342118263245, 0.016125250607728958, 0.870617151260376, 0.017837848514318466, 0.01772153750061989, 0.02271309308707714], "normal_n3_p1": [0.01153840683400631, 0.0031570610590279102, 0.003785006469115615, 0.9511204957962036, 0.014085044153034687, 0.0046971081756055355, 0.0042962017469108105], "normal_n3_p2": [0.013851072639226913, 0.00860522035509348, 0.010451414622366428, 0.041360676288604736, 0.01992376334965229, 0.35780030488967896, 0.03521169722080231], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.020493611693382263, 0.01926289312541485, 0.08362123370170593, 0.0676349326968193, 0.015714874491095543, 0.7231845259666443, 0.04536549001932144], "reduce_n2_p1": [0.5699373483657837, 0.05372513458132744, 0.06564179807901382, 0.06318559497594833, 0.11190357804298401, 0.03237954527139664, 0.030797550454735756], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005503213033080101, 0.0034130963031202555, 0.005935344845056534, 0.007451992016285658, 0.9562553763389587, 0.007613244000822306, 0.005488132126629353], "reduce_n3_p1": [0.0014640679582953453, 0.758246898651123, 0.017965026199817657, 0.00016164395492523909, 0.016917500644922256, 0.013917829841375351, 0.0075494288466870785], "reduce_n3_p2": [0.09121693670749664, 0.10267685353755951, 0.07467014342546463, 0.40424853563308716, 0.12347274273633957, 0.023957887664437294, 0.06838294118642807], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.16570410132408142, 0.5352656841278076, 0.05764606222510338, 0.04821716248989105, 0.058464232832193375, 0.06925250589847565, 0.023274360224604607], "normal_n2_p1": [0.09050464630126953, 0.1283230185508728, 0.1942913830280304, 0.048497524112463, 0.2311888039112091, 0.12311968952417374, 0.02618124894797802], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02002943679690361, 0.017288342118263245, 0.016125250607728958, 0.870617151260376, 0.017837848514318466, 0.01772153750061989, 0.02271309308707714], "normal_n3_p1": [0.01153840683400631, 0.0031570610590279102, 0.003785006469115615, 0.9511204957962036, 0.014085044153034687, 0.0046971081756055355, 0.0042962017469108105], "normal_n3_p2": [0.013851072639226913, 0.00860522035509348, 0.010451414622366428, 0.041360676288604736, 0.01992376334965229, 0.35780030488967896, 0.03521169722080231], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.020493611693382263, 0.01926289312541485, 0.08362123370170593, 0.0676349326968193, 0.015714874491095543, 0.7231845259666443, 0.04536549001932144], "reduce_n2_p1": [0.5699373483657837, 0.05372513458132744, 0.06564179807901382, 0.06318559497594833, 0.11190357804298401, 0.03237954527139664, 0.030797550454735756], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005503213033080101, 0.0034130963031202555, 0.005935344845056534, 0.007451992016285658, 0.9562553763389587, 0.007613244000822306, 0.005488132126629353], "reduce_n3_p1": [0.0014640679582953453, 0.758246898651123, 0.017965026199817657, 0.00016164395492523909, 0.016917500644922256, 0.013917829841375351, 0.0075494288466870785], "reduce_n3_p2": [0.09121693670749664, 0.10267685353755951, 0.07467014342546463, 0.40424853563308716, 0.12347274273633957, 0.023957887664437294, 0.06838294118642807], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.26989567279815674, 0.15200303494930267, 0.06615105271339417, 0.15821924805641174, 0.09788879752159119, 0.1279061734676361, 0.032587114721536636], "normal_n2_p1": [0.13892413675785065, 0.12740878760814667, 0.1913260817527771, 0.04436581954360008, 0.11134162545204163, 0.29158690571784973, 0.0324503555893898], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02843298949301243, 0.02382594533264637, 0.0235945712774992, 0.8102928996086121, 0.029742268845438957, 0.024507876485586166, 0.029385622590780258], "normal_n3_p1": [0.01385505311191082, 0.0044311401434242725, 0.006103247869759798, 0.9311402440071106, 0.016744356602430344, 0.007754186633974314, 0.00684472918510437], "normal_n3_p2": [0.001514169736765325, 0.0009009543573483825, 0.0010872010607272387, 0.005189801566302776, 0.00224943645298481, 0.012675303965806961, 0.0009608911350369453], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.010411362163722515, 0.011692159809172153, 0.031226390972733498, 0.037038348615169525, 0.00892267469316721, 0.8642760515213013, 0.022417940199375153], "reduce_n2_p1": [0.8320979475975037, 0.02833768166601658, 0.024368606507778168, 0.027488524094223976, 0.018368428573012352, 0.022111063823103905, 0.017663197591900826], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01264246366918087, 0.007467017509043217, 0.01116333156824112, 0.014031254686415195, 0.9094244241714478, 0.015984030440449715, 0.012769950553774834], "reduce_n3_p1": [0.0022494264412671328, 0.2045370191335678, 0.020689701661467552, 0.00029160158010199666, 0.019918397068977356, 0.018592888489365578, 0.005188080947846174], "reduce_n3_p2": [0.16134417057037354, 0.11812248080968857, 0.09963224083185196, 0.31820186972618103, 0.11651913076639175, 0.029752880334854126, 0.07670318335294724], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.26989567279815674, 0.15200303494930267, 0.06615105271339417, 0.15821924805641174, 0.09788879752159119, 0.1279061734676361, 0.032587114721536636], "normal_n2_p1": [0.13892413675785065, 0.12740878760814667, 0.1913260817527771, 0.04436581954360008, 0.11134162545204163, 0.29158690571784973, 0.0324503555893898], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.02843298949301243, 0.02382594533264637, 0.0235945712774992, 0.8102928996086121, 0.029742268845438957, 0.024507876485586166, 0.029385622590780258], "normal_n3_p1": [0.01385505311191082, 0.0044311401434242725, 0.006103247869759798, 0.9311402440071106, 0.016744356602430344, 0.007754186633974314, 0.00684472918510437], "normal_n3_p2": [0.001514169736765325, 0.0009009543573483825, 0.0010872010607272387, 0.005189801566302776, 0.00224943645298481, 0.012675303965806961, 0.0009608911350369453], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.010411362163722515, 0.011692159809172153, 0.031226390972733498, 0.037038348615169525, 0.00892267469316721, 0.8642760515213013, 0.022417940199375153], "reduce_n2_p1": [0.8320979475975037, 0.02833768166601658, 0.024368606507778168, 0.027488524094223976, 0.018368428573012352, 0.022111063823103905, 0.017663197591900826], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01264246366918087, 0.007467017509043217, 0.01116333156824112, 0.014031254686415195, 0.9094244241714478, 0.015984030440449715, 0.012769950553774834], "reduce_n3_p1": [0.0022494264412671328, 0.2045370191335678, 0.020689701661467552, 0.00029160158010199666, 0.019918397068977356, 0.018592888489365578, 0.005188080947846174], "reduce_n3_p2": [0.16134417057037354, 0.11812248080968857, 0.09963224083185196, 0.31820186972618103, 0.11651913076639175, 0.029752880334854126, 0.07670318335294724], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1401151865720749, 0.04342755302786827, 0.04375700280070305, 0.31079214811325073, 0.20407235622406006, 0.11133530735969543, 0.03901093825697899], "normal_n2_p1": [0.1811855137348175, 0.13234856724739075, 0.37363895773887634, 0.031684406101703644, 0.05248744785785675, 0.17230994999408722, 0.031167002394795418], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.017393724992871284, 0.017246872186660767, 0.01608620397746563, 0.8677079081535339, 0.027985580265522003, 0.020095646381378174, 0.018454236909747124], "normal_n3_p1": [0.01838233321905136, 0.007747997064143419, 0.011214442551136017, 0.8972722291946411, 0.023179031908512115, 0.0124736949801445, 0.010636050254106522], "normal_n3_p2": [0.0014693265547975898, 0.0009154601139016449, 0.001070451340638101, 0.00424636946991086, 0.0019450465915724635, 0.005817062687128782, 0.00042987833148799837], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.013790165074169636, 0.016368065029382706, 0.02488306723535061, 0.041026171296834946, 0.012639014050364494, 0.850006103515625, 0.023720482364296913], "reduce_n2_p1": [0.7070282101631165, 0.046803392469882965, 0.03946985676884651, 0.051928337663412094, 0.020705722272396088, 0.04592768847942352, 0.03537231311202049], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02698044292628765, 0.015416556969285011, 0.019824879243969917, 0.022850606590509415, 0.8385111689567566, 0.025561967864632607, 0.02379564195871353], "reduce_n3_p1": [0.0033553948160260916, 0.09028439968824387, 0.02368507906794548, 0.0006880720029585063, 0.01771603710949421, 0.018530933186411858, 0.005125896073877811], "reduce_n3_p2": [0.42561501264572144, 0.1885514259338379, 0.14089469611644745, 0.05381617322564125, 0.07873298972845078, 0.026799805462360382, 0.043089624494314194], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.1401151865720749, 0.04342755302786827, 0.04375700280070305, 0.31079214811325073, 0.20407235622406006, 0.11133530735969543, 0.03901093825697899], "normal_n2_p1": [0.1811855137348175, 0.13234856724739075, 0.37363895773887634, 0.031684406101703644, 0.05248744785785675, 0.17230994999408722, 0.031167002394795418], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.017393724992871284, 0.017246872186660767, 0.01608620397746563, 0.8677079081535339, 0.027985580265522003, 0.020095646381378174, 0.018454236909747124], "normal_n3_p1": [0.01838233321905136, 0.007747997064143419, 0.011214442551136017, 0.8972722291946411, 0.023179031908512115, 0.0124736949801445, 0.010636050254106522], "normal_n3_p2": [0.0014693265547975898, 0.0009154601139016449, 0.001070451340638101, 0.00424636946991086, 0.0019450465915724635, 0.005817062687128782, 0.00042987833148799837], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.013790165074169636, 0.016368065029382706, 0.02488306723535061, 0.041026171296834946, 0.012639014050364494, 0.850006103515625, 0.023720482364296913], "reduce_n2_p1": [0.7070282101631165, 0.046803392469882965, 0.03946985676884651, 0.051928337663412094, 0.020705722272396088, 0.04592768847942352, 0.03537231311202049], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02698044292628765, 0.015416556969285011, 0.019824879243969917, 0.022850606590509415, 0.8385111689567566, 0.025561967864632607, 0.02379564195871353], "reduce_n3_p1": [0.0033553948160260916, 0.09028439968824387, 0.02368507906794548, 0.0006880720029585063, 0.01771603710949421, 0.018530933186411858, 0.005125896073877811], "reduce_n3_p2": [0.42561501264572144, 0.1885514259338379, 0.14089469611644745, 0.05381617322564125, 0.07873298972845078, 0.026799805462360382, 0.043089624494314194], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2812792658805847, 0.02325352653861046, 0.04047509282827377, 0.3290095031261444, 0.018240779638290405, 0.21287231147289276, 0.025898214429616928], "normal_n2_p1": [0.3153124153614044, 0.11784109473228455, 0.07085318863391876, 0.044315192848443985, 0.0870785340666771, 0.2729131579399109, 0.06166959926486015], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011116457171738148, 0.012754516676068306, 0.011881472542881966, 0.9035755395889282, 0.020106730982661247, 0.017474837601184845, 0.014334606006741524], "normal_n3_p1": [0.029640700668096542, 0.016681140288710594, 0.023928014561533928, 0.8215188384056091, 0.03893106058239937, 0.021982556208968163, 0.018292494118213654], "normal_n3_p2": [0.004194681998342276, 0.0028481646440923214, 0.0031897476874291897, 0.009199632331728935, 0.004745782352983952, 0.009561489336192608, 0.0008627661736682057], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0509154386818409, 0.0631350427865982, 0.07127369195222855, 0.1388765573501587, 0.05492287129163742, 0.45585647225379944, 0.09083759039640427], "reduce_n2_p1": [0.6252540946006775, 0.05937923863530159, 0.047839611768722534, 0.06927966326475143, 0.020243767648935318, 0.075340136885643, 0.04964592680335045], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01507179532200098, 0.013934061862528324, 0.015383210964500904, 0.014496421441435814, 0.8941759467124939, 0.017971057444810867, 0.016182556748390198], "reduce_n3_p1": [0.007681028451770544, 0.07387961447238922, 0.04841648042201996, 0.00273178075440228, 0.029446972534060478, 0.030276162549853325, 0.009944487363100052], "reduce_n3_p2": [0.2258066087961197, 0.19592683017253876, 0.19422361254692078, 0.05162062123417854, 0.1273677498102188, 0.046319380402565, 0.07883459329605103], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2812792658805847, 0.02325352653861046, 0.04047509282827377, 0.3290095031261444, 0.018240779638290405, 0.21287231147289276, 0.025898214429616928], "normal_n2_p1": [0.3153124153614044, 0.11784109473228455, 0.07085318863391876, 0.044315192848443985, 0.0870785340666771, 0.2729131579399109, 0.06166959926486015], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011116457171738148, 0.012754516676068306, 0.011881472542881966, 0.9035755395889282, 0.020106730982661247, 0.017474837601184845, 0.014334606006741524], "normal_n3_p1": [0.029640700668096542, 0.016681140288710594, 0.023928014561533928, 0.8215188384056091, 0.03893106058239937, 0.021982556208968163, 0.018292494118213654], "normal_n3_p2": [0.004194681998342276, 0.0028481646440923214, 0.0031897476874291897, 0.009199632331728935, 0.004745782352983952, 0.009561489336192608, 0.0008627661736682057], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0509154386818409, 0.0631350427865982, 0.07127369195222855, 0.1388765573501587, 0.05492287129163742, 0.45585647225379944, 0.09083759039640427], "reduce_n2_p1": [0.6252540946006775, 0.05937923863530159, 0.047839611768722534, 0.06927966326475143, 0.020243767648935318, 0.075340136885643, 0.04964592680335045], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01507179532200098, 0.013934061862528324, 0.015383210964500904, 0.014496421441435814, 0.8941759467124939, 0.017971057444810867, 0.016182556748390198], "reduce_n3_p1": [0.007681028451770544, 0.07387961447238922, 0.04841648042201996, 0.00273178075440228, 0.029446972534060478, 0.030276162549853325, 0.009944487363100052], "reduce_n3_p2": [0.2258066087961197, 0.19592683017253876, 0.19422361254692078, 0.05162062123417854, 0.1273677498102188, 0.046319380402565, 0.07883459329605103], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2329232096672058, 0.015287183225154877, 0.03200663626194, 0.3984687924385071, 0.005239821504801512, 0.2606423795223236, 0.020974647253751755], "normal_n2_p1": [0.5099425911903381, 0.09496111422777176, 0.026201797649264336, 0.03579007461667061, 0.19044309854507446, 0.06663043797016144, 0.048037149012088776], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009342258796095848, 0.01129708718508482, 0.010701381601393223, 0.9165908098220825, 0.014971154741942883, 0.016214128583669662, 0.012923209927976131], "normal_n3_p1": [0.053856588900089264, 0.038624055683612823, 0.058131735771894455, 0.641997754573822, 0.07565469294786453, 0.045044559985399246, 0.03527112305164337], "normal_n3_p2": [0.016567764803767204, 0.012485177256166935, 0.013482918031513691, 0.028492577373981476, 0.016530195251107216, 0.02630641497671604, 0.003198743797838688], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13945502042770386, 0.15829738974571228, 0.08726879209280014, 0.1592627316713333, 0.07327228784561157, 0.09222344309091568, 0.14860904216766357], "reduce_n2_p1": [0.7045842409133911, 0.04652391001582146, 0.036766618490219116, 0.05316288396716118, 0.017038991674780846, 0.06073710322380066, 0.04120314121246338], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017577296122908592, 0.02001483552157879, 0.02076050639152527, 0.018489815294742584, 0.8626818656921387, 0.022956162691116333, 0.022695578634738922], "reduce_n3_p1": [0.017483152449131012, 0.08549030870199203, 0.07807180285453796, 0.009988296777009964, 0.04381834715604782, 0.04419826343655586, 0.020431630313396454], "reduce_n3_p2": [0.25024229288101196, 0.2031867653131485, 0.13025560975074768, 0.05092766135931015, 0.1450059860944748, 0.046897053718566895, 0.10183104872703552], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2329232096672058, 0.015287183225154877, 0.03200663626194, 0.3984687924385071, 0.005239821504801512, 0.2606423795223236, 0.020974647253751755], "normal_n2_p1": [0.5099425911903381, 0.09496111422777176, 0.026201797649264336, 0.03579007461667061, 0.19044309854507446, 0.06663043797016144, 0.048037149012088776], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009342258796095848, 0.01129708718508482, 0.010701381601393223, 0.9165908098220825, 0.014971154741942883, 0.016214128583669662, 0.012923209927976131], "normal_n3_p1": [0.053856588900089264, 0.038624055683612823, 0.058131735771894455, 0.641997754573822, 0.07565469294786453, 0.045044559985399246, 0.03527112305164337], "normal_n3_p2": [0.016567764803767204, 0.012485177256166935, 0.013482918031513691, 0.028492577373981476, 0.016530195251107216, 0.02630641497671604, 0.003198743797838688], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.13945502042770386, 0.15829738974571228, 0.08726879209280014, 0.1592627316713333, 0.07327228784561157, 0.09222344309091568, 0.14860904216766357], "reduce_n2_p1": [0.7045842409133911, 0.04652391001582146, 0.036766618490219116, 0.05316288396716118, 0.017038991674780846, 0.06073710322380066, 0.04120314121246338], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.017577296122908592, 0.02001483552157879, 0.02076050639152527, 0.018489815294742584, 0.8626818656921387, 0.022956162691116333, 0.022695578634738922], "reduce_n3_p1": [0.017483152449131012, 0.08549030870199203, 0.07807180285453796, 0.009988296777009964, 0.04381834715604782, 0.04419826343655586, 0.020431630313396454], "reduce_n3_p2": [0.25024229288101196, 0.2031867653131485, 0.13025560975074768, 0.05092766135931015, 0.1450059860944748, 0.046897053718566895, 0.10183104872703552], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2845609486103058, 0.015209751203656197, 0.041278574615716934, 0.06880970299243927, 0.0036364053376019, 0.5371139049530029, 0.024384910240769386], "normal_n2_p1": [0.14975741505622864, 0.0764092281460762, 0.015579639934003353, 0.027535153552889824, 0.635683000087738, 0.027446482330560684, 0.04178076982498169], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01482521090656519, 0.02046428807079792, 0.018573561683297157, 0.8713842630386353, 0.021143406629562378, 0.0216353889554739, 0.017337944358587265], "normal_n3_p1": [0.02866736426949501, 0.019719712436199188, 0.021847443655133247, 0.8128690719604492, 0.03166339918971062, 0.02576601691544056, 0.028014812618494034], "normal_n3_p2": [0.03513048216700554, 0.029927797615528107, 0.03209904581308365, 0.06072187051177025, 0.042776674032211304, 0.054378144443035126, 0.008965090848505497], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.3434549868106842, 0.3188254237174988, 0.03797074034810066, 0.04187386482954025, 0.02737635187804699, 0.015495454892516136, 0.04562562331557274], "reduce_n2_p1": [0.36140939593315125, 0.07010463625192642, 0.08198334276676178, 0.07199173420667648, 0.03517620638012886, 0.21636363863945007, 0.08106216788291931], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.032751381397247314, 0.03936239704489708, 0.034947820007801056, 0.02849235013127327, 0.7622183561325073, 0.027556557208299637, 0.04690176621079445], "reduce_n3_p1": [0.05196615308523178, 0.2434408962726593, 0.056067414581775665, 0.032635077834129333, 0.08224685490131378, 0.07140406221151352, 0.04382304474711418], "reduce_n3_p2": [0.3495120406150818, 0.3467864394187927, 0.07917435467243195, 0.04900670424103737, 0.026810161769390106, 0.020054064691066742, 0.11041862517595291], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2845609486103058, 0.015209751203656197, 0.041278574615716934, 0.06880970299243927, 0.0036364053376019, 0.5371139049530029, 0.024384910240769386], "normal_n2_p1": [0.14975741505622864, 0.0764092281460762, 0.015579639934003353, 0.027535153552889824, 0.635683000087738, 0.027446482330560684, 0.04178076982498169], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01482521090656519, 0.02046428807079792, 0.018573561683297157, 0.8713842630386353, 0.021143406629562378, 0.0216353889554739, 0.017337944358587265], "normal_n3_p1": [0.02866736426949501, 0.019719712436199188, 0.021847443655133247, 0.8128690719604492, 0.03166339918971062, 0.02576601691544056, 0.028014812618494034], "normal_n3_p2": [0.03513048216700554, 0.029927797615528107, 0.03209904581308365, 0.06072187051177025, 0.042776674032211304, 0.054378144443035126, 0.008965090848505497], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.3434549868106842, 0.3188254237174988, 0.03797074034810066, 0.04187386482954025, 0.02737635187804699, 0.015495454892516136, 0.04562562331557274], "reduce_n2_p1": [0.36140939593315125, 0.07010463625192642, 0.08198334276676178, 0.07199173420667648, 0.03517620638012886, 0.21636363863945007, 0.08106216788291931], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.032751381397247314, 0.03936239704489708, 0.034947820007801056, 0.02849235013127327, 0.7622183561325073, 0.027556557208299637, 0.04690176621079445], "reduce_n3_p1": [0.05196615308523178, 0.2434408962726593, 0.056067414581775665, 0.032635077834129333, 0.08224685490131378, 0.07140406221151352, 0.04382304474711418], "reduce_n3_p2": [0.3495120406150818, 0.3467864394187927, 0.07917435467243195, 0.04900670424103737, 0.026810161769390106, 0.020054064691066742, 0.11041862517595291], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.33001628518104553, 0.016521316021680832, 0.0469202883541584, 0.032506149262189865, 0.0036887286696583033, 0.5189613103866577, 0.02862999401986599], "normal_n2_p1": [0.06337111443281174, 0.053344860672950745, 0.011988899670541286, 0.02456534095108509, 0.7673565745353699, 0.015004834160208702, 0.04051891714334488], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011587025597691536, 0.014918550848960876, 0.013086741790175438, 0.9081834554672241, 0.015597878023982048, 0.0147369634360075, 0.010510704480111599], "normal_n3_p1": [0.03815793618559837, 0.028209172189235687, 0.02983604371547699, 0.7402881979942322, 0.04227256402373314, 0.03341524675488472, 0.043038878589868546], "normal_n3_p2": [0.06650625169277191, 0.05060293897986412, 0.049185868352651596, 0.0899779424071312, 0.07369373738765717, 0.09501464664936066, 0.01902659237384796], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01222994364798069, 0.021417662501335144, 0.013895655982196331, 0.01314267423003912, 0.008354227058589458, 0.002483294578269124, 0.008459248580038548], "reduce_n2_p1": [0.923894464969635, 0.019422532990574837, 0.012926898896694183, 0.009437897242605686, 0.00427657924592495, 0.014589427970349789, 0.010877549648284912], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0032433466985821724, 0.004383570980280638, 0.009654932655394077, 0.007243198808282614, 0.9480695128440857, 0.01071760430932045, 0.00938715972006321], "reduce_n3_p1": [0.08334355801343918, 0.6487371325492859, 0.014177554287016392, 0.040344398468732834, 0.0849151536822319, 0.06806591898202896, 0.03239942342042923], "reduce_n3_p2": [0.25642669200897217, 0.1770237684249878, 0.13798874616622925, 0.14726296067237854, 0.03353603184223175, 0.03862888365983963, 0.18333092331886292], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.33001628518104553, 0.016521316021680832, 0.0469202883541584, 0.032506149262189865, 0.0036887286696583033, 0.5189613103866577, 0.02862999401986599], "normal_n2_p1": [0.06337111443281174, 0.053344860672950745, 0.011988899670541286, 0.02456534095108509, 0.7673565745353699, 0.015004834160208702, 0.04051891714334488], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011587025597691536, 0.014918550848960876, 0.013086741790175438, 0.9081834554672241, 0.015597878023982048, 0.0147369634360075, 0.010510704480111599], "normal_n3_p1": [0.03815793618559837, 0.028209172189235687, 0.02983604371547699, 0.7402881979942322, 0.04227256402373314, 0.03341524675488472, 0.043038878589868546], "normal_n3_p2": [0.06650625169277191, 0.05060293897986412, 0.049185868352651596, 0.0899779424071312, 0.07369373738765717, 0.09501464664936066, 0.01902659237384796], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01222994364798069, 0.021417662501335144, 0.013895655982196331, 0.01314267423003912, 0.008354227058589458, 0.002483294578269124, 0.008459248580038548], "reduce_n2_p1": [0.923894464969635, 0.019422532990574837, 0.012926898896694183, 0.009437897242605686, 0.00427657924592495, 0.014589427970349789, 0.010877549648284912], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0032433466985821724, 0.004383570980280638, 0.009654932655394077, 0.007243198808282614, 0.9480695128440857, 0.01071760430932045, 0.00938715972006321], "reduce_n3_p1": [0.08334355801343918, 0.6487371325492859, 0.014177554287016392, 0.040344398468732834, 0.0849151536822319, 0.06806591898202896, 0.03239942342042923], "reduce_n3_p2": [0.25642669200897217, 0.1770237684249878, 0.13798874616622925, 0.14726296067237854, 0.03353603184223175, 0.03862888365983963, 0.18333092331886292], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9838672876358032, 0.0019048850517719984, 0.006347930524498224, 0.0008821949013508856, 0.0003945667704101652, 0.0030532022938132286, 0.0021364097483456135], "normal_n2_p1": [0.5329981446266174, 0.21173672378063202, 0.034473590552806854, 0.0425899401307106, 0.016983361914753914, 0.023782925680279732, 0.08272203058004379], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011029796674847603, 0.013074607588350773, 0.01072745118290186, 0.9218900799751282, 0.01224761176854372, 0.012337352149188519, 0.008992128074169159], "normal_n3_p1": [0.0747791975736618, 0.0588393397629261, 0.06758836656808853, 0.37080442905426025, 0.08373402804136276, 0.07625365257263184, 0.12584617733955383], "normal_n3_p2": [0.1195029765367508, 0.09547507017850876, 0.08026764541864395, 0.26049330830574036, 0.15904001891613007, 0.18302716314792633, 0.032762184739112854], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.003311716951429844, 0.007852421142160892, 0.011827383190393448, 0.010419915430247784, 0.006602628156542778, 0.0016596592031419277, 0.00523188803344965], "reduce_n2_p1": [0.9685271978378296, 0.010327266529202461, 0.005220382008701563, 0.003770669922232628, 0.001897648093290627, 0.004354299046099186, 0.00444565387442708], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0014258201699703932, 0.0018202938372269273, 0.005362973548471928, 0.0040671564638614655, 0.971563994884491, 0.006684641353785992, 0.004636426921933889], "reduce_n3_p1": [0.08604772388935089, 0.6405322551727295, 0.00892107654362917, 0.04578661173582077, 0.10220379382371902, 0.08028130978345871, 0.027709515765309334], "reduce_n3_p2": [0.03993500769138336, 0.04970064386725426, 0.10306397825479507, 0.31706613302230835, 0.030081186443567276, 0.04649779200553894, 0.38434359431266785], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9838672876358032, 0.0019048850517719984, 0.006347930524498224, 0.0008821949013508856, 0.0003945667704101652, 0.0030532022938132286, 0.0021364097483456135], "normal_n2_p1": [0.5329981446266174, 0.21173672378063202, 0.034473590552806854, 0.0425899401307106, 0.016983361914753914, 0.023782925680279732, 0.08272203058004379], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011029796674847603, 0.013074607588350773, 0.01072745118290186, 0.9218900799751282, 0.01224761176854372, 0.012337352149188519, 0.008992128074169159], "normal_n3_p1": [0.0747791975736618, 0.0588393397629261, 0.06758836656808853, 0.37080442905426025, 0.08373402804136276, 0.07625365257263184, 0.12584617733955383], "normal_n3_p2": [0.1195029765367508, 0.09547507017850876, 0.08026764541864395, 0.26049330830574036, 0.15904001891613007, 0.18302716314792633, 0.032762184739112854], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.003311716951429844, 0.007852421142160892, 0.011827383190393448, 0.010419915430247784, 0.006602628156542778, 0.0016596592031419277, 0.00523188803344965], "reduce_n2_p1": [0.9685271978378296, 0.010327266529202461, 0.005220382008701563, 0.003770669922232628, 0.001897648093290627, 0.004354299046099186, 0.00444565387442708], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0014258201699703932, 0.0018202938372269273, 0.005362973548471928, 0.0040671564638614655, 0.971563994884491, 0.006684641353785992, 0.004636426921933889], "reduce_n3_p1": [0.08604772388935089, 0.6405322551727295, 0.00892107654362917, 0.04578661173582077, 0.10220379382371902, 0.08028130978345871, 0.027709515765309334], "reduce_n3_p2": [0.03993500769138336, 0.04970064386725426, 0.10306397825479507, 0.31706613302230835, 0.030081186443567276, 0.04649779200553894, 0.38434359431266785], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9952208399772644, 0.000708339735865593, 0.0024080988951027393, 0.00017603927699383348, 0.0001620194670977071, 0.0002589738287497312, 0.0006507562357001007], "normal_n2_p1": [0.1735146939754486, 0.34435683488845825, 0.05723200738430023, 0.07318869233131409, 0.0026855580508708954, 0.033037248998880386, 0.2136458158493042], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.016163088381290436, 0.019192731007933617, 0.016353709623217583, 0.8772870302200317, 0.018135663121938705, 0.018467038869857788, 0.015452484600245953], "normal_n3_p1": [0.05765845254063606, 0.04952995106577873, 0.06522734463214874, 0.23920783400535583, 0.08080971986055374, 0.06353940069675446, 0.14258691668510437], "normal_n3_p2": [0.04384768381714821, 0.029130779206752777, 0.00914519652724266, 0.022788111120462418, 0.7862903475761414, 0.07541802525520325, 0.020125513896346092], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0034671728499233723, 0.008670507930219173, 0.021108150482177734, 0.01637350767850876, 0.010653958655893803, 0.003116835840046406, 0.008220584131777287], "reduce_n2_p1": [0.963948130607605, 0.011872230097651482, 0.005898992996662855, 0.0043191141448915005, 0.0025095846503973007, 0.004245434422045946, 0.005241174716502428], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0012603324139490724, 0.00138947949744761, 0.00372215430252254, 0.003221763065084815, 0.9785299897193909, 0.004863817244768143, 0.0034146460238844156], "reduce_n3_p1": [0.06929131597280502, 0.8271313309669495, 0.006127269007265568, 0.04425963759422302, 0.008998243138194084, 0.026776814833283424, 0.013497095555067062], "reduce_n3_p2": [0.03274242579936981, 0.048909589648246765, 0.2507140040397644, 0.3644568920135498, 0.06404052674770355, 0.11366509646177292, 0.0621904656291008], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9952208399772644, 0.000708339735865593, 0.0024080988951027393, 0.00017603927699383348, 0.0001620194670977071, 0.0002589738287497312, 0.0006507562357001007], "normal_n2_p1": [0.1735146939754486, 0.34435683488845825, 0.05723200738430023, 0.07318869233131409, 0.0026855580508708954, 0.033037248998880386, 0.2136458158493042], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.016163088381290436, 0.019192731007933617, 0.016353709623217583, 0.8772870302200317, 0.018135663121938705, 0.018467038869857788, 0.015452484600245953], "normal_n3_p1": [0.05765845254063606, 0.04952995106577873, 0.06522734463214874, 0.23920783400535583, 0.08080971986055374, 0.06353940069675446, 0.14258691668510437], "normal_n3_p2": [0.04384768381714821, 0.029130779206752777, 0.00914519652724266, 0.022788111120462418, 0.7862903475761414, 0.07541802525520325, 0.020125513896346092], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0034671728499233723, 0.008670507930219173, 0.021108150482177734, 0.01637350767850876, 0.010653958655893803, 0.003116835840046406, 0.008220584131777287], "reduce_n2_p1": [0.963948130607605, 0.011872230097651482, 0.005898992996662855, 0.0043191141448915005, 0.0025095846503973007, 0.004245434422045946, 0.005241174716502428], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0012603324139490724, 0.00138947949744761, 0.00372215430252254, 0.003221763065084815, 0.9785299897193909, 0.004863817244768143, 0.0034146460238844156], "reduce_n3_p1": [0.06929131597280502, 0.8271313309669495, 0.006127269007265568, 0.04425963759422302, 0.008998243138194084, 0.026776814833283424, 0.013497095555067062], "reduce_n3_p2": [0.03274242579936981, 0.048909589648246765, 0.2507140040397644, 0.3644568920135498, 0.06404052674770355, 0.11366509646177292, 0.0621904656291008], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9953209757804871, 0.0007660629926249385, 0.00231350539252162, 0.00016290236089844257, 0.00020912967738695443, 0.000144866673508659, 0.0006503026816062629], "normal_n2_p1": [0.11840799450874329, 0.5109831690788269, 0.0664544329047203, 0.05970674380660057, 0.0010712244547903538, 0.03379036486148834, 0.06701142340898514], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011048458516597748, 0.011628210544586182, 0.011306080967187881, 0.9087257385253906, 0.01483833882957697, 0.015050743706524372, 0.013918234966695309], "normal_n3_p1": [0.04768729582428932, 0.04312640428543091, 0.06682124733924866, 0.1362680345773697, 0.0863947719335556, 0.05563900247216225, 0.13038524985313416], "normal_n3_p2": [0.017385203391313553, 0.015055474825203419, 0.0040864706970751286, 0.0078095379285514355, 0.871887743473053, 0.0553242452442646, 0.0211623664945364], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01048658974468708, 0.024850333109498024, 0.06810073554515839, 0.0536838062107563, 0.03437406197190285, 0.01310034655034542, 0.02657955512404442], "reduce_n2_p1": [0.9302929639816284, 0.021031051874160767, 0.01120146457105875, 0.008363822475075722, 0.005729177035391331, 0.007800881750881672, 0.010260569863021374], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.002035693498328328, 0.0019004977075383067, 0.0041792988777160645, 0.003998820204287767, 0.9737933278083801, 0.005294871050864458, 0.004146771505475044], "reduce_n3_p1": [0.0655999407172203, 0.8483145236968994, 0.006427905522286892, 0.04889358580112457, 0.0031728048343211412, 0.013013896532356739, 0.010704153217375278], "reduce_n3_p2": [0.026664214208722115, 0.042647428810596466, 0.4245527982711792, 0.1609860509634018, 0.06765527278184891, 0.17757821083068848, 0.020267177373170853], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9953209757804871, 0.0007660629926249385, 0.00231350539252162, 0.00016290236089844257, 0.00020912967738695443, 0.000144866673508659, 0.0006503026816062629], "normal_n2_p1": [0.11840799450874329, 0.5109831690788269, 0.0664544329047203, 0.05970674380660057, 0.0010712244547903538, 0.03379036486148834, 0.06701142340898514], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011048458516597748, 0.011628210544586182, 0.011306080967187881, 0.9087257385253906, 0.01483833882957697, 0.015050743706524372, 0.013918234966695309], "normal_n3_p1": [0.04768729582428932, 0.04312640428543091, 0.06682124733924866, 0.1362680345773697, 0.0863947719335556, 0.05563900247216225, 0.13038524985313416], "normal_n3_p2": [0.017385203391313553, 0.015055474825203419, 0.0040864706970751286, 0.0078095379285514355, 0.871887743473053, 0.0553242452442646, 0.0211623664945364], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.01048658974468708, 0.024850333109498024, 0.06810073554515839, 0.0536838062107563, 0.03437406197190285, 0.01310034655034542, 0.02657955512404442], "reduce_n2_p1": [0.9302929639816284, 0.021031051874160767, 0.01120146457105875, 0.008363822475075722, 0.005729177035391331, 0.007800881750881672, 0.010260569863021374], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.002035693498328328, 0.0019004977075383067, 0.0041792988777160645, 0.003998820204287767, 0.9737933278083801, 0.005294871050864458, 0.004146771505475044], "reduce_n3_p1": [0.0655999407172203, 0.8483145236968994, 0.006427905522286892, 0.04889358580112457, 0.0031728048343211412, 0.013013896532356739, 0.010704153217375278], "reduce_n3_p2": [0.026664214208722115, 0.042647428810596466, 0.4245527982711792, 0.1609860509634018, 0.06765527278184891, 0.17757821083068848, 0.020267177373170853], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9918573498725891, 0.0014248392544686794, 0.003634435124695301, 0.000331855786498636, 0.00047619297401979566, 0.00022075414017308503, 0.0011966211022809148], "normal_n2_p1": [0.11918886750936508, 0.6395211815834045, 0.08364052325487137, 0.02542891912162304, 0.0007918294286355376, 0.029946299269795418, 0.03347377851605415], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.016315920278429985, 0.017176823690533638, 0.017396055161952972, 0.8654656410217285, 0.020329460501670837, 0.019739190116524696, 0.021777207031846046], "normal_n3_p1": [0.08481304347515106, 0.08204421401023865, 0.12047000229358673, 0.360002726316452, 0.19566114246845245, 0.06137872114777565, 0.0662263035774231], "normal_n3_p2": [0.044677700847387314, 0.04493468627333641, 0.013039510697126389, 0.01639728434383869, 0.598760724067688, 0.18243739008903503, 0.07950066030025482], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03289627656340599, 0.06728155165910721, 0.27039775252342224, 0.2004627287387848, 0.10591629147529602, 0.04581554979085922, 0.07103730738162994], "reduce_n2_p1": [0.8620349764823914, 0.03521840646862984, 0.022007526829838753, 0.016627689823508263, 0.012916590087115765, 0.013869993388652802, 0.02253115549683571], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.004338809754699469, 0.003548868466168642, 0.006429389119148254, 0.006765726953744888, 0.9557168483734131, 0.008364956825971603, 0.006912323646247387], "reduce_n3_p1": [0.10676277428865433, 0.7588340044021606, 0.012849381193518639, 0.07462409883737564, 0.0038653849624097347, 0.0177614763379097, 0.017327014356851578], "reduce_n3_p2": [0.02437717281281948, 0.03493484482169151, 0.6119465231895447, 0.09664784371852875, 0.05713942274451256, 0.09558765590190887, 0.008881396614015102], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9918573498725891, 0.0014248392544686794, 0.003634435124695301, 0.000331855786498636, 0.00047619297401979566, 0.00022075414017308503, 0.0011966211022809148], "normal_n2_p1": [0.11918886750936508, 0.6395211815834045, 0.08364052325487137, 0.02542891912162304, 0.0007918294286355376, 0.029946299269795418, 0.03347377851605415], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.016315920278429985, 0.017176823690533638, 0.017396055161952972, 0.8654656410217285, 0.020329460501670837, 0.019739190116524696, 0.021777207031846046], "normal_n3_p1": [0.08481304347515106, 0.08204421401023865, 0.12047000229358673, 0.360002726316452, 0.19566114246845245, 0.06137872114777565, 0.0662263035774231], "normal_n3_p2": [0.044677700847387314, 0.04493468627333641, 0.013039510697126389, 0.01639728434383869, 0.598760724067688, 0.18243739008903503, 0.07950066030025482], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03289627656340599, 0.06728155165910721, 0.27039775252342224, 0.2004627287387848, 0.10591629147529602, 0.04581554979085922, 0.07103730738162994], "reduce_n2_p1": [0.8620349764823914, 0.03521840646862984, 0.022007526829838753, 0.016627689823508263, 0.012916590087115765, 0.013869993388652802, 0.02253115549683571], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.004338809754699469, 0.003548868466168642, 0.006429389119148254, 0.006765726953744888, 0.9557168483734131, 0.008364956825971603, 0.006912323646247387], "reduce_n3_p1": [0.10676277428865433, 0.7588340044021606, 0.012849381193518639, 0.07462409883737564, 0.0038653849624097347, 0.0177614763379097, 0.017327014356851578], "reduce_n3_p2": [0.02437717281281948, 0.03493484482169151, 0.6119465231895447, 0.09664784371852875, 0.05713942274451256, 0.09558765590190887, 0.008881396614015102], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9814298748970032, 0.00335220480337739, 0.007196551654487848, 0.000958793330937624, 0.0013659102842211723, 0.0005437840009108186, 0.002896923338994384], "normal_n2_p1": [0.09297981858253479, 0.6984495520591736, 0.09277036041021347, 0.017070086672902107, 0.0009267222485505044, 0.0291360542178154, 0.02947217784821987], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028956381604075432, 0.028505707159638405, 0.03220147266983986, 0.7471646666526794, 0.038241274654865265, 0.030333366245031357, 0.042571913450956345], "normal_n3_p1": [0.05424591526389122, 0.04071751609444618, 0.04791589453816414, 0.47254976630210876, 0.3396635055541992, 0.02155500091612339, 0.019043264910578728], "normal_n3_p2": [0.08338014036417007, 0.0798993706703186, 0.029888104647397995, 0.029989298433065414, 0.22388191521167755, 0.33754029870033264, 0.17477260529994965], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0478019155561924, 0.08209135383367538, 0.30744436383247375, 0.19363828003406525, 0.14695630967617035, 0.08452455699443817, 0.0681300014257431], "reduce_n2_p1": [0.7847832441329956, 0.043031319975852966, 0.03279963508248329, 0.026115233078598976, 0.02277933806180954, 0.021340416744351387, 0.039323799312114716], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008358259685337543, 0.00628306157886982, 0.009063857607543468, 0.010162613354623318, 0.9312400221824646, 0.012077049352228642, 0.01071971282362938], "reduce_n3_p1": [0.18417395651340485, 0.3546587824821472, 0.03434966132044792, 0.3173537254333496, 0.008596029132604599, 0.041434165090322495, 0.03769635781645775], "reduce_n3_p2": [0.04677429422736168, 0.053614456206560135, 0.30324673652648926, 0.17943869531154633, 0.09613404422998428, 0.16438181698322296, 0.012885088101029396], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9814298748970032, 0.00335220480337739, 0.007196551654487848, 0.000958793330937624, 0.0013659102842211723, 0.0005437840009108186, 0.002896923338994384], "normal_n2_p1": [0.09297981858253479, 0.6984495520591736, 0.09277036041021347, 0.017070086672902107, 0.0009267222485505044, 0.0291360542178154, 0.02947217784821987], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.028956381604075432, 0.028505707159638405, 0.03220147266983986, 0.7471646666526794, 0.038241274654865265, 0.030333366245031357, 0.042571913450956345], "normal_n3_p1": [0.05424591526389122, 0.04071751609444618, 0.04791589453816414, 0.47254976630210876, 0.3396635055541992, 0.02155500091612339, 0.019043264910578728], "normal_n3_p2": [0.08338014036417007, 0.0798993706703186, 0.029888104647397995, 0.029989298433065414, 0.22388191521167755, 0.33754029870033264, 0.17477260529994965], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0478019155561924, 0.08209135383367538, 0.30744436383247375, 0.19363828003406525, 0.14695630967617035, 0.08452455699443817, 0.0681300014257431], "reduce_n2_p1": [0.7847832441329956, 0.043031319975852966, 0.03279963508248329, 0.026115233078598976, 0.02277933806180954, 0.021340416744351387, 0.039323799312114716], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008358259685337543, 0.00628306157886982, 0.009063857607543468, 0.010162613354623318, 0.9312400221824646, 0.012077049352228642, 0.01071971282362938], "reduce_n3_p1": [0.18417395651340485, 0.3546587824821472, 0.03434966132044792, 0.3173537254333496, 0.008596029132604599, 0.041434165090322495, 0.03769635781645775], "reduce_n3_p2": [0.04677429422736168, 0.053614456206560135, 0.30324673652648926, 0.17943869531154633, 0.09613404422998428, 0.16438181698322296, 0.012885088101029396], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9579010605812073, 0.00770092336460948, 0.013812894001603127, 0.002791781211271882, 0.0037833224050700665, 0.0014722944470122457, 0.006805788725614548], "normal_n2_p1": [0.08952180296182632, 0.5929405689239502, 0.16067767143249512, 0.02022584341466427, 0.0017236113781109452, 0.041512083262205124, 0.04049954563379288], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03952905163168907, 0.033657122403383255, 0.040838055312633514, 0.5190738439559937, 0.07821092754602432, 0.04553197696805, 0.07886318117380142], "normal_n3_p1": [0.018865913152694702, 0.011584792286157608, 0.011198274791240692, 0.8358817100524902, 0.10457919538021088, 0.00853942334651947, 0.007805784232914448], "normal_n3_p2": [0.024337036535143852, 0.028953855857253075, 0.02211383916437626, 0.03443581983447075, 0.17514915764331818, 0.35803622007369995, 0.29778045415878296], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08828282356262207, 0.13727271556854248, 0.08514068275690079, 0.2532692849636078, 0.15520329773426056, 0.15756161510944366, 0.07397707551717758], "reduce_n2_p1": [0.7199174165725708, 0.051229726523160934, 0.05068082734942436, 0.03434646874666214, 0.027969466522336006, 0.03358547016978264, 0.038839537650346756], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.016957778483629227, 0.011730841360986233, 0.013535933569073677, 0.016570627689361572, 0.888495922088623, 0.017290858551859856, 0.016328269615769386], "reduce_n3_p1": [0.2685868740081787, 0.23089756071567535, 0.06353656202554703, 0.25792160630226135, 0.015641817823052406, 0.06006293743848801, 0.06061329320073128], "reduce_n3_p2": [0.05414407327771187, 0.05257692188024521, 0.11643540859222412, 0.31611859798431396, 0.10071150213479996, 0.1842258721590042, 0.01790628768503666], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.9579010605812073, 0.00770092336460948, 0.013812894001603127, 0.002791781211271882, 0.0037833224050700665, 0.0014722944470122457, 0.006805788725614548], "normal_n2_p1": [0.08952180296182632, 0.5929405689239502, 0.16067767143249512, 0.02022584341466427, 0.0017236113781109452, 0.041512083262205124, 0.04049954563379288], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03952905163168907, 0.033657122403383255, 0.040838055312633514, 0.5190738439559937, 0.07821092754602432, 0.04553197696805, 0.07886318117380142], "normal_n3_p1": [0.018865913152694702, 0.011584792286157608, 0.011198274791240692, 0.8358817100524902, 0.10457919538021088, 0.00853942334651947, 0.007805784232914448], "normal_n3_p2": [0.024337036535143852, 0.028953855857253075, 0.02211383916437626, 0.03443581983447075, 0.17514915764331818, 0.35803622007369995, 0.29778045415878296], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08828282356262207, 0.13727271556854248, 0.08514068275690079, 0.2532692849636078, 0.15520329773426056, 0.15756161510944366, 0.07397707551717758], "reduce_n2_p1": [0.7199174165725708, 0.051229726523160934, 0.05068082734942436, 0.03434646874666214, 0.027969466522336006, 0.03358547016978264, 0.038839537650346756], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.016957778483629227, 0.011730841360986233, 0.013535933569073677, 0.016570627689361572, 0.888495922088623, 0.017290858551859856, 0.016328269615769386], "reduce_n3_p1": [0.2685868740081787, 0.23089756071567535, 0.06353656202554703, 0.25792160630226135, 0.015641817823052406, 0.06006293743848801, 0.06061329320073128], "reduce_n3_p2": [0.05414407327771187, 0.05257692188024521, 0.11643540859222412, 0.31611859798431396, 0.10071150213479996, 0.1842258721590042, 0.01790628768503666], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8913256525993347, 0.018895311281085014, 0.03170294314622879, 0.008740420453250408, 0.010863146744668484, 0.0044905091635882854, 0.018072471022605896], "normal_n2_p1": [0.07577943801879883, 0.35249271988868713, 0.3416430950164795, 0.030236857011914253, 0.0032092502806335688, 0.04631079360842705, 0.05834982171654701], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01225627213716507, 0.009890679270029068, 0.01280969101935625, 0.8326253294944763, 0.035190045833587646, 0.018688080832362175, 0.02724030613899231], "normal_n3_p1": [0.011063284240663052, 0.00708585511893034, 0.006489147897809744, 0.8812146186828613, 0.07968523353338242, 0.00649162707850337, 0.006300720851868391], "normal_n3_p2": [0.005302006378769875, 0.006751141510903835, 0.007843525148928165, 0.01478450745344162, 0.09609386324882507, 0.052627820521593094, 0.7704110741615295], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05602925270795822, 0.0803934633731842, 0.02245955914258957, 0.41386643052101135, 0.058247871696949005, 0.30972912907600403, 0.030941367149353027], "reduce_n2_p1": [0.5993053913116455, 0.06243839114904404, 0.07547929883003235, 0.05286732316017151, 0.03774210438132286, 0.0346609428524971, 0.06618422269821167], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.021059803664684296, 0.015769844874739647, 0.016448095440864563, 0.020523536950349808, 0.8568482995033264, 0.02274191379547119, 0.022555001080036163], "reduce_n3_p1": [0.5137006044387817, 0.281703919172287, 0.030439861118793488, 0.011497440747916698, 0.016681194305419922, 0.06468627601861954, 0.035325441509485245], "reduce_n3_p2": [0.04306841269135475, 0.048400264233350754, 0.09768588840961456, 0.19783054292201996, 0.05892280861735344, 0.44300997257232666, 0.022730093449354172], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8913256525993347, 0.018895311281085014, 0.03170294314622879, 0.008740420453250408, 0.010863146744668484, 0.0044905091635882854, 0.018072471022605896], "normal_n2_p1": [0.07577943801879883, 0.35249271988868713, 0.3416430950164795, 0.030236857011914253, 0.0032092502806335688, 0.04631079360842705, 0.05834982171654701], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01225627213716507, 0.009890679270029068, 0.01280969101935625, 0.8326253294944763, 0.035190045833587646, 0.018688080832362175, 0.02724030613899231], "normal_n3_p1": [0.011063284240663052, 0.00708585511893034, 0.006489147897809744, 0.8812146186828613, 0.07968523353338242, 0.00649162707850337, 0.006300720851868391], "normal_n3_p2": [0.005302006378769875, 0.006751141510903835, 0.007843525148928165, 0.01478450745344162, 0.09609386324882507, 0.052627820521593094, 0.7704110741615295], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05602925270795822, 0.0803934633731842, 0.02245955914258957, 0.41386643052101135, 0.058247871696949005, 0.30972912907600403, 0.030941367149353027], "reduce_n2_p1": [0.5993053913116455, 0.06243839114904404, 0.07547929883003235, 0.05286732316017151, 0.03774210438132286, 0.0346609428524971, 0.06618422269821167], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.021059803664684296, 0.015769844874739647, 0.016448095440864563, 0.020523536950349808, 0.8568482995033264, 0.02274191379547119, 0.022555001080036163], "reduce_n3_p1": [0.5137006044387817, 0.281703919172287, 0.030439861118793488, 0.011497440747916698, 0.016681194305419922, 0.06468627601861954, 0.035325441509485245], "reduce_n3_p2": [0.04306841269135475, 0.048400264233350754, 0.09768588840961456, 0.19783054292201996, 0.05892280861735344, 0.44300997257232666, 0.022730093449354172], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.735152006149292, 0.04127879440784454, 0.07648418098688126, 0.023831676691770554, 0.0289588775485754, 0.012767212465405464, 0.04127730056643486], "normal_n2_p1": [0.04008237272500992, 0.08670730888843536, 0.3703645169734955, 0.06061278656125069, 0.005225935485213995, 0.05940293148159981, 0.15060804784297943], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.007692056242376566, 0.006936017889529467, 0.008886818774044514, 0.8964505791664124, 0.022451164200901985, 0.01431468315422535, 0.020479610189795494], "normal_n3_p1": [0.010687092319130898, 0.008220341056585312, 0.00791062880307436, 0.89524906873703, 0.060215409845113754, 0.0072506386786699295, 0.007362860254943371], "normal_n3_p2": [0.006591517478227615, 0.00831916369497776, 0.01144352089613676, 0.01876683533191681, 0.7250369787216187, 0.03546369820833206, 0.09819301217794418], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06704028695821762, 0.09152808785438538, 0.012940728105604649, 0.42101138830184937, 0.08647969365119934, 0.27013686299324036, 0.021382499486207962], "reduce_n2_p1": [0.2585158944129944, 0.08743581920862198, 0.1533987671136856, 0.07745008170604706, 0.0718497484922409, 0.059355102479457855, 0.1340840756893158], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02443677932024002, 0.017708072438836098, 0.014911802485585213, 0.016796940937638283, 0.86859130859375, 0.016003582626581192, 0.02113712951540947], "reduce_n3_p1": [0.793054461479187, 0.06452763080596924, 0.012425923720002174, 0.002044817665591836, 0.011877350509166718, 0.06637898087501526, 0.017904626205563545], "reduce_n3_p2": [0.05749047175049782, 0.05264965817332268, 0.09945114701986313, 0.3328893482685089, 0.038953378796577454, 0.2974139451980591, 0.04406197741627693], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.735152006149292, 0.04127879440784454, 0.07648418098688126, 0.023831676691770554, 0.0289588775485754, 0.012767212465405464, 0.04127730056643486], "normal_n2_p1": [0.04008237272500992, 0.08670730888843536, 0.3703645169734955, 0.06061278656125069, 0.005225935485213995, 0.05940293148159981, 0.15060804784297943], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.007692056242376566, 0.006936017889529467, 0.008886818774044514, 0.8964505791664124, 0.022451164200901985, 0.01431468315422535, 0.020479610189795494], "normal_n3_p1": [0.010687092319130898, 0.008220341056585312, 0.00791062880307436, 0.89524906873703, 0.060215409845113754, 0.0072506386786699295, 0.007362860254943371], "normal_n3_p2": [0.006591517478227615, 0.00831916369497776, 0.01144352089613676, 0.01876683533191681, 0.7250369787216187, 0.03546369820833206, 0.09819301217794418], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06704028695821762, 0.09152808785438538, 0.012940728105604649, 0.42101138830184937, 0.08647969365119934, 0.27013686299324036, 0.021382499486207962], "reduce_n2_p1": [0.2585158944129944, 0.08743581920862198, 0.1533987671136856, 0.07745008170604706, 0.0718497484922409, 0.059355102479457855, 0.1340840756893158], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02443677932024002, 0.017708072438836098, 0.014911802485585213, 0.016796940937638283, 0.86859130859375, 0.016003582626581192, 0.02113712951540947], "reduce_n3_p1": [0.793054461479187, 0.06452763080596924, 0.012425923720002174, 0.002044817665591836, 0.011877350509166718, 0.06637898087501526, 0.017904626205563545], "reduce_n3_p2": [0.05749047175049782, 0.05264965817332268, 0.09945114701986313, 0.3328893482685089, 0.038953378796577454, 0.2974139451980591, 0.04406197741627693], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.4138924777507782, 0.08097978681325912, 0.2309119701385498, 0.047681260854005814, 0.05410793051123619, 0.028800221160054207, 0.06679293513298035], "normal_n2_p1": [0.025576220825314522, 0.040284302085638046, 0.2358243316411972, 0.04899248480796814, 0.007243887521326542, 0.10112030059099197, 0.24648362398147583], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011787737719714642, 0.011667034588754177, 0.014021579176187515, 0.8680773973464966, 0.024976802989840508, 0.0186242014169693, 0.024654816836118698], "normal_n3_p1": [0.011520763859152794, 0.010423151776194572, 0.010941228829324245, 0.9027156829833984, 0.03917020186781883, 0.009350517764687538, 0.009628388099372387], "normal_n3_p2": [0.010328774340450764, 0.011762214824557304, 0.017433656379580498, 0.02200879156589508, 0.7399297952651978, 0.0259292870759964, 0.03891763091087341], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.11304750293493271, 0.1730344295501709, 0.012297228910028934, 0.3756093680858612, 0.18080689013004303, 0.07086538523435593, 0.026678670197725296], "reduce_n2_p1": [0.043922509998083115, 0.039297983050346375, 0.14468137919902802, 0.05040064826607704, 0.07756919413805008, 0.0506439134478569, 0.4968145191669464], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.013194253668189049, 0.011881771497428417, 0.009712507016956806, 0.00668004946783185, 0.9342779517173767, 0.00623411126434803, 0.010062574408948421], "reduce_n3_p1": [0.864683985710144, 0.03060632385313511, 0.008655259385704994, 0.001295955153182149, 0.012601862661540508, 0.03216701000928879, 0.01710502989590168], "reduce_n3_p2": [0.08537092059850693, 0.0707070603966713, 0.16585494577884674, 0.28210410475730896, 0.0441659651696682, 0.09058328717947006, 0.13119758665561676], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.4138924777507782, 0.08097978681325912, 0.2309119701385498, 0.047681260854005814, 0.05410793051123619, 0.028800221160054207, 0.06679293513298035], "normal_n2_p1": [0.025576220825314522, 0.040284302085638046, 0.2358243316411972, 0.04899248480796814, 0.007243887521326542, 0.10112030059099197, 0.24648362398147583], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.011787737719714642, 0.011667034588754177, 0.014021579176187515, 0.8680773973464966, 0.024976802989840508, 0.0186242014169693, 0.024654816836118698], "normal_n3_p1": [0.011520763859152794, 0.010423151776194572, 0.010941228829324245, 0.9027156829833984, 0.03917020186781883, 0.009350517764687538, 0.009628388099372387], "normal_n3_p2": [0.010328774340450764, 0.011762214824557304, 0.017433656379580498, 0.02200879156589508, 0.7399297952651978, 0.0259292870759964, 0.03891763091087341], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.11304750293493271, 0.1730344295501709, 0.012297228910028934, 0.3756093680858612, 0.18080689013004303, 0.07086538523435593, 0.026678670197725296], "reduce_n2_p1": [0.043922509998083115, 0.039297983050346375, 0.14468137919902802, 0.05040064826607704, 0.07756919413805008, 0.0506439134478569, 0.4968145191669464], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.013194253668189049, 0.011881771497428417, 0.009712507016956806, 0.00668004946783185, 0.9342779517173767, 0.00623411126434803, 0.010062574408948421], "reduce_n3_p1": [0.864683985710144, 0.03060632385313511, 0.008655259385704994, 0.001295955153182149, 0.012601862661540508, 0.03216701000928879, 0.01710502989590168], "reduce_n3_p2": [0.08537092059850693, 0.0707070603966713, 0.16585494577884674, 0.28210410475730896, 0.0441659651696682, 0.09058328717947006, 0.13119758665561676], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.4960279166698456, 0.0740162581205368, 0.1523907631635666, 0.05416127294301987, 0.03892524167895317, 0.032941680401563644, 0.06905811280012131], "normal_n2_p1": [0.02359829843044281, 0.02789231203496456, 0.11921444535255432, 0.03186093643307686, 0.009318985976278782, 0.15874488651752472, 0.556096613407135], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.019902650266885757, 0.019382061436772346, 0.02250855788588524, 0.8341811299324036, 0.02468918263912201, 0.024121364578604698, 0.024842388927936554], "normal_n3_p1": [0.013651139102876186, 0.01372473780065775, 0.015587668865919113, 0.8871690034866333, 0.032549962401390076, 0.012948117218911648, 0.012638364918529987], "normal_n3_p2": [0.02507101185619831, 0.024808943271636963, 0.03674618527293205, 0.032931409776210785, 0.6214156150817871, 0.03248056769371033, 0.032871510833501816], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04993578419089317, 0.04405398294329643, 0.008501356467604637, 0.6755164861679077, 0.14560556411743164, 0.020324263721704483, 0.01950697973370552], "reduce_n2_p1": [0.00971872080117464, 0.012652479112148285, 0.05030638352036476, 0.023481596261262894, 0.06614060699939728, 0.021380094811320305, 0.7695249319076538], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.007733090780675411, 0.008428688161075115, 0.008056585676968098, 0.00471500726416707, 0.9544112682342529, 0.004404302220791578, 0.006872464902698994], "reduce_n3_p1": [0.7324404120445251, 0.042470283806324005, 0.01802385412156582, 0.003011352149769664, 0.031046302989125252, 0.052046701312065125, 0.041847288608551025], "reduce_n3_p2": [0.10490012168884277, 0.07094790041446686, 0.171649768948555, 0.21967555582523346, 0.04516879841685295, 0.05874725803732872, 0.18899711966514587], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.4960279166698456, 0.0740162581205368, 0.1523907631635666, 0.05416127294301987, 0.03892524167895317, 0.032941680401563644, 0.06905811280012131], "normal_n2_p1": [0.02359829843044281, 0.02789231203496456, 0.11921444535255432, 0.03186093643307686, 0.009318985976278782, 0.15874488651752472, 0.556096613407135], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.019902650266885757, 0.019382061436772346, 0.02250855788588524, 0.8341811299324036, 0.02468918263912201, 0.024121364578604698, 0.024842388927936554], "normal_n3_p1": [0.013651139102876186, 0.01372473780065775, 0.015587668865919113, 0.8871690034866333, 0.032549962401390076, 0.012948117218911648, 0.012638364918529987], "normal_n3_p2": [0.02507101185619831, 0.024808943271636963, 0.03674618527293205, 0.032931409776210785, 0.6214156150817871, 0.03248056769371033, 0.032871510833501816], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04993578419089317, 0.04405398294329643, 0.008501356467604637, 0.6755164861679077, 0.14560556411743164, 0.020324263721704483, 0.01950697973370552], "reduce_n2_p1": [0.00971872080117464, 0.012652479112148285, 0.05030638352036476, 0.023481596261262894, 0.06614060699939728, 0.021380094811320305, 0.7695249319076538], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.007733090780675411, 0.008428688161075115, 0.008056585676968098, 0.00471500726416707, 0.9544112682342529, 0.004404302220791578, 0.006872464902698994], "reduce_n3_p1": [0.7324404120445251, 0.042470283806324005, 0.01802385412156582, 0.003011352149769664, 0.031046302989125252, 0.052046701312065125, 0.041847288608551025], "reduce_n3_p2": [0.10490012168884277, 0.07094790041446686, 0.171649768948555, 0.21967555582523346, 0.04516879841685295, 0.05874725803732872, 0.18899711966514587], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.28967195749282837, 0.09076729416847229, 0.30586177110671997, 0.0468946136534214, 0.03007836453616619, 0.04373269900679588, 0.09586936235427856], "normal_n2_p1": [0.015737611800432205, 0.015455784276127815, 0.02267521619796753, 0.019534055143594742, 0.007807190530002117, 0.13100455701351166, 0.766141951084137], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.039446163922548294, 0.048750609159469604, 0.06021730974316597, 0.6300165057182312, 0.04346676170825958, 0.048630740493535995, 0.05338389426469803], "normal_n3_p1": [0.02182263322174549, 0.024607516825199127, 0.029804324731230736, 0.809745728969574, 0.04140772670507431, 0.023635458201169968, 0.02325347252190113], "normal_n3_p2": [0.04039394482970238, 0.03708057105541229, 0.057272881269454956, 0.06282530725002289, 0.1106986254453659, 0.03973329812288284, 0.03900012746453285], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.026645248755812645, 0.019869036972522736, 0.007894046604633331, 0.7597421407699585, 0.12478391826152802, 0.011781836859881878, 0.01800103299319744], "reduce_n2_p1": [0.009874391369521618, 0.01569642499089241, 0.05329672619700432, 0.036822617053985596, 0.13997343182563782, 0.029603518545627594, 0.6580448746681213], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008074513636529446, 0.009383386000990868, 0.009249546565115452, 0.005914769135415554, 0.9462024569511414, 0.005827085115015507, 0.008282526396214962], "reduce_n3_p1": [0.46958625316619873, 0.06555676460266113, 0.037708379328250885, 0.008409664034843445, 0.06246419996023178, 0.08358101546764374, 0.13330230116844177], "reduce_n3_p2": [0.1207059770822525, 0.08982580155134201, 0.25847485661506653, 0.16251614689826965, 0.05149143934249878, 0.03176296502351761, 0.1560305804014206], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.28967195749282837, 0.09076729416847229, 0.30586177110671997, 0.0468946136534214, 0.03007836453616619, 0.04373269900679588, 0.09586936235427856], "normal_n2_p1": [0.015737611800432205, 0.015455784276127815, 0.02267521619796753, 0.019534055143594742, 0.007807190530002117, 0.13100455701351166, 0.766141951084137], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.039446163922548294, 0.048750609159469604, 0.06021730974316597, 0.6300165057182312, 0.04346676170825958, 0.048630740493535995, 0.05338389426469803], "normal_n3_p1": [0.02182263322174549, 0.024607516825199127, 0.029804324731230736, 0.809745728969574, 0.04140772670507431, 0.023635458201169968, 0.02325347252190113], "normal_n3_p2": [0.04039394482970238, 0.03708057105541229, 0.057272881269454956, 0.06282530725002289, 0.1106986254453659, 0.03973329812288284, 0.03900012746453285], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.026645248755812645, 0.019869036972522736, 0.007894046604633331, 0.7597421407699585, 0.12478391826152802, 0.011781836859881878, 0.01800103299319744], "reduce_n2_p1": [0.009874391369521618, 0.01569642499089241, 0.05329672619700432, 0.036822617053985596, 0.13997343182563782, 0.029603518545627594, 0.6580448746681213], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008074513636529446, 0.009383386000990868, 0.009249546565115452, 0.005914769135415554, 0.9462024569511414, 0.005827085115015507, 0.008282526396214962], "reduce_n3_p1": [0.46958625316619873, 0.06555676460266113, 0.037708379328250885, 0.008409664034843445, 0.06246419996023178, 0.08358101546764374, 0.13330230116844177], "reduce_n3_p2": [0.1207059770822525, 0.08982580155134201, 0.25847485661506653, 0.16251614689826965, 0.05149143934249878, 0.03176296502351761, 0.1560305804014206], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2550380229949951, 0.06965135037899017, 0.5872798562049866, 0.01637660712003708, 0.011261424981057644, 0.02229190617799759, 0.019535981118679047], "normal_n2_p1": [0.03817829117178917, 0.03158338740468025, 0.03835234045982361, 0.03854190558195114, 0.01776597648859024, 0.5688800811767578, 0.2385103553533554], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.013206366449594498, 0.01357394177466631, 0.013141274452209473, 0.905922532081604, 0.014326600357890129, 0.021186809986829758, 0.014023436233401299], "normal_n3_p1": [0.03395870700478554, 0.04551688954234123, 0.05443186312913895, 0.719366729259491, 0.0487552173435688, 0.03258326277136803, 0.032125528901815414], "normal_n3_p2": [0.13677647709846497, 0.11072234809398651, 0.20225460827350616, 0.10524336248636246, 0.051474280655384064, 0.058541566133499146, 0.05958583205938339], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.028963709250092506, 0.019788263365626335, 0.011553355492651463, 0.7603024244308472, 0.10166943818330765, 0.013782878406345844, 0.026151474565267563], "reduce_n2_p1": [0.02027275413274765, 0.03702617809176445, 0.09832505136728287, 0.1099013090133667, 0.233972430229187, 0.06130179390311241, 0.32098740339279175], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.011544333770871162, 0.013035695999860764, 0.012979296036064625, 0.009356120601296425, 0.9182882308959961, 0.009921680204570293, 0.012868727557361126], "reduce_n3_p1": [0.5132198929786682, 0.07267880439758301, 0.03555067628622055, 0.015749510377645493, 0.11043769121170044, 0.029407834634184837, 0.12223749607801437], "reduce_n3_p2": [0.09581323713064194, 0.11923307180404663, 0.23013533651828766, 0.14551188051700592, 0.056437328457832336, 0.02768149971961975, 0.13159498572349548], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2550380229949951, 0.06965135037899017, 0.5872798562049866, 0.01637660712003708, 0.011261424981057644, 0.02229190617799759, 0.019535981118679047], "normal_n2_p1": [0.03817829117178917, 0.03158338740468025, 0.03835234045982361, 0.03854190558195114, 0.01776597648859024, 0.5688800811767578, 0.2385103553533554], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.013206366449594498, 0.01357394177466631, 0.013141274452209473, 0.905922532081604, 0.014326600357890129, 0.021186809986829758, 0.014023436233401299], "normal_n3_p1": [0.03395870700478554, 0.04551688954234123, 0.05443186312913895, 0.719366729259491, 0.0487552173435688, 0.03258326277136803, 0.032125528901815414], "normal_n3_p2": [0.13677647709846497, 0.11072234809398651, 0.20225460827350616, 0.10524336248636246, 0.051474280655384064, 0.058541566133499146, 0.05958583205938339], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.028963709250092506, 0.019788263365626335, 0.011553355492651463, 0.7603024244308472, 0.10166943818330765, 0.013782878406345844, 0.026151474565267563], "reduce_n2_p1": [0.02027275413274765, 0.03702617809176445, 0.09832505136728287, 0.1099013090133667, 0.233972430229187, 0.06130179390311241, 0.32098740339279175], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.011544333770871162, 0.013035695999860764, 0.012979296036064625, 0.009356120601296425, 0.9182882308959961, 0.009921680204570293, 0.012868727557361126], "reduce_n3_p1": [0.5132198929786682, 0.07267880439758301, 0.03555067628622055, 0.015749510377645493, 0.11043769121170044, 0.029407834634184837, 0.12223749607801437], "reduce_n3_p2": [0.09581323713064194, 0.11923307180404663, 0.23013533651828766, 0.14551188051700592, 0.056437328457832336, 0.02768149971961975, 0.13159498572349548], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7903178930282593, 0.04424314573407173, 0.11668294668197632, 0.00987940188497305, 0.006442056503146887, 0.016496209427714348, 0.007630843669176102], "normal_n2_p1": [0.13241852819919586, 0.06828451156616211, 0.08778119832277298, 0.09647689014673233, 0.038792047649621964, 0.4587031900882721, 0.07528501749038696], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01152286771684885, 0.009489409625530243, 0.00860123336315155, 0.9263769388198853, 0.011655265465378761, 0.020191185176372528, 0.009904052130877972], "normal_n3_p1": [0.03302231431007385, 0.037754520773887634, 0.032489798963069916, 0.7739549875259399, 0.049367304891347885, 0.026835506781935692, 0.024055100977420807], "normal_n3_p2": [0.3829445242881775, 0.12748947739601135, 0.2203013151884079, 0.038748107850551605, 0.025932513177394867, 0.03829127177596092, 0.06079990416765213], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03545285388827324, 0.02341216616332531, 0.017967911437153816, 0.6898566484451294, 0.13111017644405365, 0.019222145900130272, 0.04174582287669182], "reduce_n2_p1": [0.03019793890416622, 0.04775141924619675, 0.1193055808544159, 0.3651282787322998, 0.14572934806346893, 0.06257977336645126, 0.10771619528532028], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02435602992773056, 0.02627682499587536, 0.022342389449477196, 0.019592925906181335, 0.8290544152259827, 0.023125506937503815, 0.027757853269577026], "reduce_n3_p1": [0.39144209027290344, 0.07803661376237869, 0.03849644958972931, 0.023475484922528267, 0.05745511129498482, 0.014988789334893227, 0.3368802070617676], "reduce_n3_p2": [0.011323679238557816, 0.035697296261787415, 0.08317625522613525, 0.21364876627922058, 0.05545337498188019, 0.01969514600932598, 0.2087629735469818], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7903178930282593, 0.04424314573407173, 0.11668294668197632, 0.00987940188497305, 0.006442056503146887, 0.016496209427714348, 0.007630843669176102], "normal_n2_p1": [0.13241852819919586, 0.06828451156616211, 0.08778119832277298, 0.09647689014673233, 0.038792047649621964, 0.4587031900882721, 0.07528501749038696], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.01152286771684885, 0.009489409625530243, 0.00860123336315155, 0.9263769388198853, 0.011655265465378761, 0.020191185176372528, 0.009904052130877972], "normal_n3_p1": [0.03302231431007385, 0.037754520773887634, 0.032489798963069916, 0.7739549875259399, 0.049367304891347885, 0.026835506781935692, 0.024055100977420807], "normal_n3_p2": [0.3829445242881775, 0.12748947739601135, 0.2203013151884079, 0.038748107850551605, 0.025932513177394867, 0.03829127177596092, 0.06079990416765213], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03545285388827324, 0.02341216616332531, 0.017967911437153816, 0.6898566484451294, 0.13111017644405365, 0.019222145900130272, 0.04174582287669182], "reduce_n2_p1": [0.03019793890416622, 0.04775141924619675, 0.1193055808544159, 0.3651282787322998, 0.14572934806346893, 0.06257977336645126, 0.10771619528532028], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02435602992773056, 0.02627682499587536, 0.022342389449477196, 0.019592925906181335, 0.8290544152259827, 0.023125506937503815, 0.027757853269577026], "reduce_n3_p1": [0.39144209027290344, 0.07803661376237869, 0.03849644958972931, 0.023475484922528267, 0.05745511129498482, 0.014988789334893227, 0.3368802070617676], "reduce_n3_p2": [0.011323679238557816, 0.035697296261787415, 0.08317625522613525, 0.21364876627922058, 0.05545337498188019, 0.01969514600932598, 0.2087629735469818], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7970608472824097, 0.04769188538193703, 0.09046468138694763, 0.014790759421885014, 0.00887391809374094, 0.02087482437491417, 0.009274305775761604], "normal_n2_p1": [0.1340811401605606, 0.08644643425941467, 0.09927907586097717, 0.15331751108169556, 0.05870980769395828, 0.36581429839134216, 0.04626841843128204], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.013113640248775482, 0.010381478816270828, 0.009983469732105732, 0.9036218523979187, 0.01828773505985737, 0.027683623135089874, 0.013066202402114868], "normal_n3_p1": [0.03674709424376488, 0.04525042697787285, 0.03921285271644592, 0.7190516591072083, 0.05886849761009216, 0.03830954059958458, 0.029686124995350838], "normal_n3_p2": [0.02347680553793907, 0.06571834534406662, 0.06152750924229622, 0.04897026717662811, 0.0458231084048748, 0.050303492695093155, 0.18911567330360413], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03708813712000847, 0.024802925065159798, 0.022406170144677162, 0.5993985533714294, 0.21379366517066956, 0.023095371201634407, 0.041567619889974594], "reduce_n2_p1": [0.017353776842355728, 0.018265601247549057, 0.05897130072116852, 0.6585510969161987, 0.11176737397909164, 0.02257937751710415, 0.02837013639509678], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022532563656568527, 0.02009671926498413, 0.02540353126823902, 0.025177322328090668, 0.8315106630325317, 0.029018612578511238, 0.025273097679018974], "reduce_n3_p1": [0.4695960283279419, 0.07050185650587082, 0.036778680980205536, 0.040265195071697235, 0.0687573105096817, 0.016207003965973854, 0.2110263854265213], "reduce_n3_p2": [0.0031489208340644836, 0.015105056576430798, 0.035646576434373856, 0.056513939052820206, 0.04213660582900047, 0.01278240792453289, 0.08146076649427414], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7970608472824097, 0.04769188538193703, 0.09046468138694763, 0.014790759421885014, 0.00887391809374094, 0.02087482437491417, 0.009274305775761604], "normal_n2_p1": [0.1340811401605606, 0.08644643425941467, 0.09927907586097717, 0.15331751108169556, 0.05870980769395828, 0.36581429839134216, 0.04626841843128204], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.013113640248775482, 0.010381478816270828, 0.009983469732105732, 0.9036218523979187, 0.01828773505985737, 0.027683623135089874, 0.013066202402114868], "normal_n3_p1": [0.03674709424376488, 0.04525042697787285, 0.03921285271644592, 0.7190516591072083, 0.05886849761009216, 0.03830954059958458, 0.029686124995350838], "normal_n3_p2": [0.02347680553793907, 0.06571834534406662, 0.06152750924229622, 0.04897026717662811, 0.0458231084048748, 0.050303492695093155, 0.18911567330360413], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03708813712000847, 0.024802925065159798, 0.022406170144677162, 0.5993985533714294, 0.21379366517066956, 0.023095371201634407, 0.041567619889974594], "reduce_n2_p1": [0.017353776842355728, 0.018265601247549057, 0.05897130072116852, 0.6585510969161987, 0.11176737397909164, 0.02257937751710415, 0.02837013639509678], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.022532563656568527, 0.02009671926498413, 0.02540353126823902, 0.025177322328090668, 0.8315106630325317, 0.029018612578511238, 0.025273097679018974], "reduce_n3_p1": [0.4695960283279419, 0.07050185650587082, 0.036778680980205536, 0.040265195071697235, 0.0687573105096817, 0.016207003965973854, 0.2110263854265213], "reduce_n3_p2": [0.0031489208340644836, 0.015105056576430798, 0.035646576434373856, 0.056513939052820206, 0.04213660582900047, 0.01278240792453289, 0.08146076649427414], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7334292531013489, 0.06259166449308395, 0.08697545528411865, 0.029174571856856346, 0.01555469911545515, 0.034702565521001816, 0.01683887466788292], "normal_n2_p1": [0.07585263252258301, 0.04947594180703163, 0.04466414451599121, 0.045965779572725296, 0.05701325461268425, 0.6666985750198364, 0.019886622205376625], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018214762210845947, 0.014874760061502457, 0.015150702558457851, 0.8352248072624207, 0.03762483596801758, 0.04464693367481232, 0.02356136590242386], "normal_n3_p1": [0.021233217790722847, 0.018931366503238678, 0.018976982682943344, 0.8198752999305725, 0.036338772624731064, 0.03218826279044151, 0.02613958716392517], "normal_n3_p2": [0.0008006701245903969, 0.004053472075611353, 0.002749987179413438, 0.0074509987607598305, 0.007710661739110947, 0.006947730667889118, 0.03638344258069992], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02729950100183487, 0.02466542087495327, 0.032788168638944626, 0.6500480771064758, 0.14995810389518738, 0.027893979102373123, 0.04820629581809044], "reduce_n2_p1": [0.022715842351317406, 0.020863471552729607, 0.07587207108736038, 0.21403080224990845, 0.377483993768692, 0.026123490184545517, 0.03359578549861908], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.013375516049563885, 0.010947137139737606, 0.014601125381886959, 0.01915993168950081, 0.897657573223114, 0.022514289245009422, 0.011189648881554604], "reduce_n3_p1": [0.4324110448360443, 0.06584730744361877, 0.050450049340724945, 0.10574370622634888, 0.07305439561605453, 0.02708585187792778, 0.11142382770776749], "reduce_n3_p2": [0.001955099869519472, 0.010168789885938168, 0.022829193621873856, 0.024947011843323708, 0.0441911444067955, 0.011180736124515533, 0.018409041687846184], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.7334292531013489, 0.06259166449308395, 0.08697545528411865, 0.029174571856856346, 0.01555469911545515, 0.034702565521001816, 0.01683887466788292], "normal_n2_p1": [0.07585263252258301, 0.04947594180703163, 0.04466414451599121, 0.045965779572725296, 0.05701325461268425, 0.6666985750198364, 0.019886622205376625], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018214762210845947, 0.014874760061502457, 0.015150702558457851, 0.8352248072624207, 0.03762483596801758, 0.04464693367481232, 0.02356136590242386], "normal_n3_p1": [0.021233217790722847, 0.018931366503238678, 0.018976982682943344, 0.8198752999305725, 0.036338772624731064, 0.03218826279044151, 0.02613958716392517], "normal_n3_p2": [0.0008006701245903969, 0.004053472075611353, 0.002749987179413438, 0.0074509987607598305, 0.007710661739110947, 0.006947730667889118, 0.03638344258069992], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02729950100183487, 0.02466542087495327, 0.032788168638944626, 0.6500480771064758, 0.14995810389518738, 0.027893979102373123, 0.04820629581809044], "reduce_n2_p1": [0.022715842351317406, 0.020863471552729607, 0.07587207108736038, 0.21403080224990845, 0.377483993768692, 0.026123490184545517, 0.03359578549861908], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.013375516049563885, 0.010947137139737606, 0.014601125381886959, 0.01915993168950081, 0.897657573223114, 0.022514289245009422, 0.011189648881554604], "reduce_n3_p1": [0.4324110448360443, 0.06584730744361877, 0.050450049340724945, 0.10574370622634888, 0.07305439561605453, 0.02708585187792778, 0.11142382770776749], "reduce_n3_p2": [0.001955099869519472, 0.010168789885938168, 0.022829193621873856, 0.024947011843323708, 0.0441911444067955, 0.011180736124515533, 0.018409041687846184], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.857634961605072, 0.032283052802085876, 0.029421411454677582, 0.018593937158584595, 0.010902590118348598, 0.024434084072709084, 0.012007188983261585], "normal_n2_p1": [0.15258097648620605, 0.06793636083602905, 0.05603846162557602, 0.05037343129515648, 0.09544464945793152, 0.48414677381515503, 0.02410794422030449], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.022049138322472572, 0.0155545175075531, 0.016557538881897926, 0.8189951181411743, 0.03348584845662117, 0.04547145590186119, 0.02913687750697136], "normal_n3_p1": [0.03519037365913391, 0.028390677645802498, 0.03470301255583763, 0.6632524728775024, 0.055810727179050446, 0.0708017349243164, 0.0574701651930809], "normal_n3_p2": [0.0003726758004631847, 0.0019657015800476074, 0.0012099017621949315, 0.0047007277607917786, 0.005025776568800211, 0.004031583201140165, 0.02564501203596592], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.018601974472403526, 0.02035745047032833, 0.04201329126954079, 0.7445663213729858, 0.071427121758461, 0.02930101752281189, 0.04383967071771622], "reduce_n2_p1": [0.03047354146838188, 0.02844449318945408, 0.10688604414463043, 0.45017096400260925, 0.04982360452413559, 0.031696561723947525, 0.05947712063789368], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02390248142182827, 0.016896720975637436, 0.02068788930773735, 0.03171302005648613, 0.8117861747741699, 0.06067914143204689, 0.017668036743998528], "reduce_n3_p1": [0.13136601448059082, 0.059870149940252304, 0.10313565284013748, 0.23663263022899628, 0.121604785323143, 0.05836009979248047, 0.0839843675494194], "reduce_n3_p2": [0.00449167238548398, 0.01910931058228016, 0.04125507175922394, 0.03653803467750549, 0.11582882702350616, 0.0257517471909523, 0.02183370850980282], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.857634961605072, 0.032283052802085876, 0.029421411454677582, 0.018593937158584595, 0.010902590118348598, 0.024434084072709084, 0.012007188983261585], "normal_n2_p1": [0.15258097648620605, 0.06793636083602905, 0.05603846162557602, 0.05037343129515648, 0.09544464945793152, 0.48414677381515503, 0.02410794422030449], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.022049138322472572, 0.0155545175075531, 0.016557538881897926, 0.8189951181411743, 0.03348584845662117, 0.04547145590186119, 0.02913687750697136], "normal_n3_p1": [0.03519037365913391, 0.028390677645802498, 0.03470301255583763, 0.6632524728775024, 0.055810727179050446, 0.0708017349243164, 0.0574701651930809], "normal_n3_p2": [0.0003726758004631847, 0.0019657015800476074, 0.0012099017621949315, 0.0047007277607917786, 0.005025776568800211, 0.004031583201140165, 0.02564501203596592], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.018601974472403526, 0.02035745047032833, 0.04201329126954079, 0.7445663213729858, 0.071427121758461, 0.02930101752281189, 0.04383967071771622], "reduce_n2_p1": [0.03047354146838188, 0.02844449318945408, 0.10688604414463043, 0.45017096400260925, 0.04982360452413559, 0.031696561723947525, 0.05947712063789368], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02390248142182827, 0.016896720975637436, 0.02068788930773735, 0.03171302005648613, 0.8117861747741699, 0.06067914143204689, 0.017668036743998528], "reduce_n3_p1": [0.13136601448059082, 0.059870149940252304, 0.10313565284013748, 0.23663263022899628, 0.121604785323143, 0.05836009979248047, 0.0839843675494194], "reduce_n3_p2": [0.00449167238548398, 0.01910931058228016, 0.04125507175922394, 0.03653803467750549, 0.11582882702350616, 0.0257517471909523, 0.02183370850980282], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8910403847694397, 0.02253035455942154, 0.01656322367489338, 0.015383305959403515, 0.009900693781673908, 0.02059359662234783, 0.010722873732447624], "normal_n2_p1": [0.4974929690361023, 0.0837848111987114, 0.06810710579156876, 0.05467388406395912, 0.07097460329532623, 0.11870303004980087, 0.02461463212966919], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0553872175514698, 0.03540417551994324, 0.03500843420624733, 0.6966044902801514, 0.030699143186211586, 0.07224150747060776, 0.037120044231414795], "normal_n3_p1": [0.01417859923094511, 0.010629062540829182, 0.012492150999605656, 0.9133607149124146, 0.017584696412086487, 0.013106446713209152, 0.010386197827756405], "normal_n3_p2": [0.0008210445521399379, 0.003515905234962702, 0.0022137516643851995, 0.0072162882424890995, 0.007874878123402596, 0.0059928568080067635, 0.03625452518463135], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.020706351846456528, 0.02367396466434002, 0.05821846053004265, 0.7592177391052246, 0.039751943200826645, 0.0314490981400013, 0.03773218020796776], "reduce_n2_p1": [0.036540884524583817, 0.035787928849458694, 0.08904937654733658, 0.4940528869628906, 0.016130074858665466, 0.03151410073041916, 0.12126258760690689], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03971129655838013, 0.025176385417580605, 0.030631329864263535, 0.05615178868174553, 0.7059957981109619, 0.08229513466358185, 0.03273029997944832], "reduce_n3_p1": [0.07362496107816696, 0.06019652634859085, 0.1530812680721283, 0.06566619127988815, 0.11690114438533783, 0.06557811796665192, 0.08924746513366699], "reduce_n3_p2": [0.008187681436538696, 0.024441851302981377, 0.040898047387599945, 0.04694850370287895, 0.17510198056697845, 0.03670043125748634, 0.02349742129445076], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8910403847694397, 0.02253035455942154, 0.01656322367489338, 0.015383305959403515, 0.009900693781673908, 0.02059359662234783, 0.010722873732447624], "normal_n2_p1": [0.4974929690361023, 0.0837848111987114, 0.06810710579156876, 0.05467388406395912, 0.07097460329532623, 0.11870303004980087, 0.02461463212966919], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0553872175514698, 0.03540417551994324, 0.03500843420624733, 0.6966044902801514, 0.030699143186211586, 0.07224150747060776, 0.037120044231414795], "normal_n3_p1": [0.01417859923094511, 0.010629062540829182, 0.012492150999605656, 0.9133607149124146, 0.017584696412086487, 0.013106446713209152, 0.010386197827756405], "normal_n3_p2": [0.0008210445521399379, 0.003515905234962702, 0.0022137516643851995, 0.0072162882424890995, 0.007874878123402596, 0.0059928568080067635, 0.03625452518463135], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.020706351846456528, 0.02367396466434002, 0.05821846053004265, 0.7592177391052246, 0.039751943200826645, 0.0314490981400013, 0.03773218020796776], "reduce_n2_p1": [0.036540884524583817, 0.035787928849458694, 0.08904937654733658, 0.4940528869628906, 0.016130074858665466, 0.03151410073041916, 0.12126258760690689], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03971129655838013, 0.025176385417580605, 0.030631329864263535, 0.05615178868174553, 0.7059957981109619, 0.08229513466358185, 0.03273029997944832], "reduce_n3_p1": [0.07362496107816696, 0.06019652634859085, 0.1530812680721283, 0.06566619127988815, 0.11690114438533783, 0.06557811796665192, 0.08924746513366699], "reduce_n3_p2": [0.008187681436538696, 0.024441851302981377, 0.040898047387599945, 0.04694850370287895, 0.17510198056697845, 0.03670043125748634, 0.02349742129445076], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8241927027702332, 0.03170279040932655, 0.02261221967637539, 0.026180865243077278, 0.01757780835032463, 0.03500089421868324, 0.018879078328609467], "normal_n2_p1": [0.578334629535675, 0.08884620666503906, 0.08230990171432495, 0.056513700634241104, 0.05373101681470871, 0.04242677614092827, 0.02300737425684929], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.09381625056266785, 0.08890664577484131, 0.08070796728134155, 0.428385466337204, 0.04958305507898331, 0.11792998015880585, 0.06013708561658859], "normal_n3_p1": [0.022776925936341286, 0.021042102947831154, 0.02665584906935692, 0.8719524145126343, 0.0211956650018692, 0.016420889645814896, 0.011106709949672222], "normal_n3_p2": [0.0024845569860190153, 0.007619933225214481, 0.005307996179908514, 0.011546514928340912, 0.012858159840106964, 0.00958984438329935, 0.04195946455001831], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06787139922380447, 0.07426988333463669, 0.11658982187509537, 0.3853524923324585, 0.12925978004932404, 0.0678207129240036, 0.09063558280467987], "reduce_n2_p1": [0.019627824425697327, 0.019092848524451256, 0.05189849063754082, 0.8458425402641296, 0.0053936028853058815, 0.015891773626208305, 0.020118292421102524], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.1419219672679901, 0.04835321381688118, 0.057148925960063934, 0.06194291636347771, 0.5631436705589294, 0.02728123590350151, 0.06539501994848251], "reduce_n3_p1": [0.06037044897675514, 0.04606553539633751, 0.012542585842311382, 0.021148553118109703, 0.03452564403414726, 0.02957259491086006, 0.06737454235553741], "reduce_n3_p2": [0.003962951712310314, 0.008093689568340778, 0.01457160897552967, 0.011095982044935226, 0.008437848649919033, 0.014731441624462605, 0.008155769668519497], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.8241927027702332, 0.03170279040932655, 0.02261221967637539, 0.026180865243077278, 0.01757780835032463, 0.03500089421868324, 0.018879078328609467], "normal_n2_p1": [0.578334629535675, 0.08884620666503906, 0.08230990171432495, 0.056513700634241104, 0.05373101681470871, 0.04242677614092827, 0.02300737425684929], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.09381625056266785, 0.08890664577484131, 0.08070796728134155, 0.428385466337204, 0.04958305507898331, 0.11792998015880585, 0.06013708561658859], "normal_n3_p1": [0.022776925936341286, 0.021042102947831154, 0.02665584906935692, 0.8719524145126343, 0.0211956650018692, 0.016420889645814896, 0.011106709949672222], "normal_n3_p2": [0.0024845569860190153, 0.007619933225214481, 0.005307996179908514, 0.011546514928340912, 0.012858159840106964, 0.00958984438329935, 0.04195946455001831], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06787139922380447, 0.07426988333463669, 0.11658982187509537, 0.3853524923324585, 0.12925978004932404, 0.0678207129240036, 0.09063558280467987], "reduce_n2_p1": [0.019627824425697327, 0.019092848524451256, 0.05189849063754082, 0.8458425402641296, 0.0053936028853058815, 0.015891773626208305, 0.020118292421102524], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.1419219672679901, 0.04835321381688118, 0.057148925960063934, 0.06194291636347771, 0.5631436705589294, 0.02728123590350151, 0.06539501994848251], "reduce_n3_p1": [0.06037044897675514, 0.04606553539633751, 0.012542585842311382, 0.021148553118109703, 0.03452564403414726, 0.02957259491086006, 0.06737454235553741], "reduce_n3_p2": [0.003962951712310314, 0.008093689568340778, 0.01457160897552967, 0.011095982044935226, 0.008437848649919033, 0.014731441624462605, 0.008155769668519497], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.734234631061554, 0.04199428856372833, 0.031243911013007164, 0.035710521042346954, 0.029537664726376534, 0.05895330011844635, 0.03222854435443878], "normal_n2_p1": [0.5224647521972656, 0.10378483682870865, 0.13525423407554626, 0.04762744903564453, 0.058677591383457184, 0.028817785903811455, 0.02812889777123928], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04126427322626114, 0.024885505437850952, 0.020319610834121704, 0.7802978754043579, 0.03485811501741409, 0.02773544378578663, 0.046872686594724655], "normal_n3_p1": [0.047315049916505814, 0.054163962602615356, 0.07056260854005814, 0.7261409759521484, 0.035777222365140915, 0.0298695657402277, 0.01905618980526924], "normal_n3_p2": [0.011302636004984379, 0.02419980615377426, 0.019325125962495804, 0.028787963092327118, 0.03270881995558739, 0.024542391300201416, 0.07350298017263412], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06944822520017624, 0.07128188014030457, 0.26097530126571655, 0.04030141234397888, 0.3229552209377289, 0.08017648011445999, 0.09882105141878128], "reduce_n2_p1": [0.04885704815387726, 0.0537700280547142, 0.19594447314739227, 0.583582878112793, 0.011549867689609528, 0.040895745158195496, 0.027976321056485176], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0003031978849321604, 0.001809936948120594, 0.00402150908485055, 0.017625287175178528, 0.9613301157951355, 0.0014720795443281531, 0.010138081386685371], "reduce_n3_p1": [0.24627293646335602, 0.18766352534294128, 0.011489639058709145, 0.044553954154253006, 0.07839030772447586, 0.05358462035655975, 0.1549617499113083], "reduce_n3_p2": [0.005334308370947838, 0.008253826759755611, 0.014138277620077133, 0.009514185599982738, 0.0033032435458153486, 0.016285041347146034, 0.008048313669860363], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.734234631061554, 0.04199428856372833, 0.031243911013007164, 0.035710521042346954, 0.029537664726376534, 0.05895330011844635, 0.03222854435443878], "normal_n2_p1": [0.5224647521972656, 0.10378483682870865, 0.13525423407554626, 0.04762744903564453, 0.058677591383457184, 0.028817785903811455, 0.02812889777123928], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.04126427322626114, 0.024885505437850952, 0.020319610834121704, 0.7802978754043579, 0.03485811501741409, 0.02773544378578663, 0.046872686594724655], "normal_n3_p1": [0.047315049916505814, 0.054163962602615356, 0.07056260854005814, 0.7261409759521484, 0.035777222365140915, 0.0298695657402277, 0.01905618980526924], "normal_n3_p2": [0.011302636004984379, 0.02419980615377426, 0.019325125962495804, 0.028787963092327118, 0.03270881995558739, 0.024542391300201416, 0.07350298017263412], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06944822520017624, 0.07128188014030457, 0.26097530126571655, 0.04030141234397888, 0.3229552209377289, 0.08017648011445999, 0.09882105141878128], "reduce_n2_p1": [0.04885704815387726, 0.0537700280547142, 0.19594447314739227, 0.583582878112793, 0.011549867689609528, 0.040895745158195496, 0.027976321056485176], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0003031978849321604, 0.001809936948120594, 0.00402150908485055, 0.017625287175178528, 0.9613301157951355, 0.0014720795443281531, 0.010138081386685371], "reduce_n3_p1": [0.24627293646335602, 0.18766352534294128, 0.011489639058709145, 0.044553954154253006, 0.07839030772447586, 0.05358462035655975, 0.1549617499113083], "reduce_n3_p2": [0.005334308370947838, 0.008253826759755611, 0.014138277620077133, 0.009514185599982738, 0.0033032435458153486, 0.016285041347146034, 0.008048313669860363], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.6142625212669373, 0.057776909321546555, 0.049542974680662155, 0.052153099328279495, 0.039552319794893265, 0.08922387659549713, 0.0450747087597847], "normal_n2_p1": [0.17757545411586761, 0.15033207833766937, 0.2420867532491684, 0.08244426548480988, 0.13046512007713318, 0.033052362501621246, 0.04764387011528015], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.09000862389802933, 0.026583118364214897, 0.01901126094162464, 0.6819872260093689, 0.053964342921972275, 0.021070893853902817, 0.08135766535997391], "normal_n3_p1": [0.06379367411136627, 0.07614295184612274, 0.10791247338056564, 0.6517488360404968, 0.031181098893284798, 0.025454647839069366, 0.02130277082324028], "normal_n3_p2": [0.051617398858070374, 0.097196564078331, 0.08360034227371216, 0.051771119236946106, 0.07731714099645615, 0.057738568633794785, 0.1537943184375763], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08275242894887924, 0.07406885921955109, 0.11599311232566833, 0.013649939559400082, 0.47290462255477905, 0.08135334402322769, 0.11406267434358597], "reduce_n2_p1": [0.11003855615854263, 0.17540046572685242, 0.4408628046512604, 0.07125604897737503, 0.019734691828489304, 0.0576605424284935, 0.04072050005197525], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [2.10884081752738e-05, 0.0004111240559723228, 0.0010803856421262026, 0.0074043418280780315, 0.9861366748809814, 0.00045899927499704063, 0.0032699706498533487], "reduce_n3_p1": [0.5897262692451477, 0.2989998757839203, 0.004563433118164539, 0.01986660063266754, 0.021683409810066223, 0.013238871470093727, 0.042853958904743195], "reduce_n3_p2": [0.018345976248383522, 0.024403322488069534, 0.04036455228924751, 0.0223136767745018, 0.006228175014257431, 0.04810485243797302, 0.021787621080875397], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.6142625212669373, 0.057776909321546555, 0.049542974680662155, 0.052153099328279495, 0.039552319794893265, 0.08922387659549713, 0.0450747087597847], "normal_n2_p1": [0.17757545411586761, 0.15033207833766937, 0.2420867532491684, 0.08244426548480988, 0.13046512007713318, 0.033052362501621246, 0.04764387011528015], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.09000862389802933, 0.026583118364214897, 0.01901126094162464, 0.6819872260093689, 0.053964342921972275, 0.021070893853902817, 0.08135766535997391], "normal_n3_p1": [0.06379367411136627, 0.07614295184612274, 0.10791247338056564, 0.6517488360404968, 0.031181098893284798, 0.025454647839069366, 0.02130277082324028], "normal_n3_p2": [0.051617398858070374, 0.097196564078331, 0.08360034227371216, 0.051771119236946106, 0.07731714099645615, 0.057738568633794785, 0.1537943184375763], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.08275242894887924, 0.07406885921955109, 0.11599311232566833, 0.013649939559400082, 0.47290462255477905, 0.08135334402322769, 0.11406267434358597], "reduce_n2_p1": [0.11003855615854263, 0.17540046572685242, 0.4408628046512604, 0.07125604897737503, 0.019734691828489304, 0.0576605424284935, 0.04072050005197525], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [2.10884081752738e-05, 0.0004111240559723228, 0.0010803856421262026, 0.0074043418280780315, 0.9861366748809814, 0.00045899927499704063, 0.0032699706498533487], "reduce_n3_p1": [0.5897262692451477, 0.2989998757839203, 0.004563433118164539, 0.01986660063266754, 0.021683409810066223, 0.013238871470093727, 0.042853958904743195], "reduce_n3_p2": [0.018345976248383522, 0.024403322488069534, 0.04036455228924751, 0.0223136767745018, 0.006228175014257431, 0.04810485243797302, 0.021787621080875397], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.20090647041797638, 0.07036645710468292, 0.07456877082586288, 0.15982192754745483, 0.06693434715270996, 0.1739102005958557, 0.1060112714767456], "normal_n2_p1": [0.04234926402568817, 0.11845697462558746, 0.1502717286348343, 0.05489198490977287, 0.40423768758773804, 0.03173086792230606, 0.05731035768985748], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.3347083032131195, 0.03713887929916382, 0.029027322307229042, 0.25817129015922546, 0.09015750885009766, 0.024793891236186028, 0.16360516846179962], "normal_n3_p1": [0.07310304045677185, 0.052484381943941116, 0.07266956567764282, 0.6815579533576965, 0.03399212658405304, 0.027392800897359848, 0.02716061659157276], "normal_n3_p2": [0.06429925560951233, 0.06992850452661514, 0.08232398331165314, 0.04094759002327919, 0.03651605173945427, 0.03319885581731796, 0.1610170155763626], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06428518146276474, 0.04548824205994606, 0.01959371380507946, 0.004949042573571205, 0.7400996685028076, 0.05500094220042229, 0.052619922906160355], "reduce_n2_p1": [0.144110307097435, 0.39237165451049805, 0.27890679240226746, 0.019627265632152557, 0.017522944137454033, 0.040329571813344955, 0.03055644780397415], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [1.4692259355797432e-05, 0.0003423787420615554, 0.0008607240743003786, 0.004998094402253628, 0.9896647334098816, 0.0004937196499668062, 0.002399784279987216], "reduce_n3_p1": [0.8887876272201538, 0.06902680546045303, 0.0025961967185139656, 0.009080697782337666, 0.008618845604360104, 0.005754492711275816, 0.01462480891495943], "reduce_n3_p2": [0.035414841026067734, 0.038685791194438934, 0.055168960243463516, 0.036823760718107224, 0.009892459958791733, 0.060347892343997955, 0.04233083501458168], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.20090647041797638, 0.07036645710468292, 0.07456877082586288, 0.15982192754745483, 0.06693434715270996, 0.1739102005958557, 0.1060112714767456], "normal_n2_p1": [0.04234926402568817, 0.11845697462558746, 0.1502717286348343, 0.05489198490977287, 0.40423768758773804, 0.03173086792230606, 0.05731035768985748], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.3347083032131195, 0.03713887929916382, 0.029027322307229042, 0.25817129015922546, 0.09015750885009766, 0.024793891236186028, 0.16360516846179962], "normal_n3_p1": [0.07310304045677185, 0.052484381943941116, 0.07266956567764282, 0.6815579533576965, 0.03399212658405304, 0.027392800897359848, 0.02716061659157276], "normal_n3_p2": [0.06429925560951233, 0.06992850452661514, 0.08232398331165314, 0.04094759002327919, 0.03651605173945427, 0.03319885581731796, 0.1610170155763626], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.06428518146276474, 0.04548824205994606, 0.01959371380507946, 0.004949042573571205, 0.7400996685028076, 0.05500094220042229, 0.052619922906160355], "reduce_n2_p1": [0.144110307097435, 0.39237165451049805, 0.27890679240226746, 0.019627265632152557, 0.017522944137454033, 0.040329571813344955, 0.03055644780397415], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [1.4692259355797432e-05, 0.0003423787420615554, 0.0008607240743003786, 0.004998094402253628, 0.9896647334098816, 0.0004937196499668062, 0.002399784279987216], "reduce_n3_p1": [0.8887876272201538, 0.06902680546045303, 0.0025961967185139656, 0.009080697782337666, 0.008618845604360104, 0.005754492711275816, 0.01462480891495943], "reduce_n3_p2": [0.035414841026067734, 0.038685791194438934, 0.055168960243463516, 0.036823760718107224, 0.009892459958791733, 0.060347892343997955, 0.04233083501458168], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09435222297906876, 0.09107691794633865, 0.11477804183959961, 0.08744146674871445, 0.103111132979393, 0.1977914273738861, 0.1489076465368271], "normal_n2_p1": [0.014412929303944111, 0.08142831921577454, 0.09474551677703857, 0.028808824717998505, 0.6052228808403015, 0.03223905712366104, 0.056875623762607574], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.24290893971920013, 0.03935209661722183, 0.03622175753116608, 0.3736579716205597, 0.09799739718437195, 0.037784039974212646, 0.09175729006528854], "normal_n3_p1": [0.055452462285757065, 0.027154747396707535, 0.02096494473516941, 0.813860297203064, 0.026730425655841827, 0.016000347211956978, 0.02099606953561306], "normal_n3_p2": [0.09800290316343307, 0.08168536424636841, 0.09661056846380234, 0.03313891589641571, 0.018911439925432205, 0.025243062525987625, 0.05056121200323105], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1895354837179184, 0.11093368381261826, 0.021598447114229202, 0.009341816417872906, 0.40528610348701477, 0.1260392665863037, 0.10292568057775497], "reduce_n2_p1": [0.14825454354286194, 0.5069853067398071, 0.1759219616651535, 0.011688489466905594, 0.017997026443481445, 0.03645680844783783, 0.031521428376436234], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [3.3407592127332464e-05, 0.0005512089701369405, 0.0012062365422025323, 0.004538831301033497, 0.9881300926208496, 0.000939348537940532, 0.0026785375084728003], "reduce_n3_p1": [0.9065819978713989, 0.041780147701501846, 0.00423406483605504, 0.011596930213272572, 0.01028614491224289, 0.007880149409174919, 0.01628401130437851], "reduce_n3_p2": [0.03492666408419609, 0.03366544097661972, 0.046294331550598145, 0.042384952306747437, 0.012695251032710075, 0.06759580969810486, 0.05495096743106842], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09435222297906876, 0.09107691794633865, 0.11477804183959961, 0.08744146674871445, 0.103111132979393, 0.1977914273738861, 0.1489076465368271], "normal_n2_p1": [0.014412929303944111, 0.08142831921577454, 0.09474551677703857, 0.028808824717998505, 0.6052228808403015, 0.03223905712366104, 0.056875623762607574], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.24290893971920013, 0.03935209661722183, 0.03622175753116608, 0.3736579716205597, 0.09799739718437195, 0.037784039974212646, 0.09175729006528854], "normal_n3_p1": [0.055452462285757065, 0.027154747396707535, 0.02096494473516941, 0.813860297203064, 0.026730425655841827, 0.016000347211956978, 0.02099606953561306], "normal_n3_p2": [0.09800290316343307, 0.08168536424636841, 0.09661056846380234, 0.03313891589641571, 0.018911439925432205, 0.025243062525987625, 0.05056121200323105], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1895354837179184, 0.11093368381261826, 0.021598447114229202, 0.009341816417872906, 0.40528610348701477, 0.1260392665863037, 0.10292568057775497], "reduce_n2_p1": [0.14825454354286194, 0.5069853067398071, 0.1759219616651535, 0.011688489466905594, 0.017997026443481445, 0.03645680844783783, 0.031521428376436234], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [3.3407592127332464e-05, 0.0005512089701369405, 0.0012062365422025323, 0.004538831301033497, 0.9881300926208496, 0.000939348537940532, 0.0026785375084728003], "reduce_n3_p1": [0.9065819978713989, 0.041780147701501846, 0.00423406483605504, 0.011596930213272572, 0.01028614491224289, 0.007880149409174919, 0.01628401130437851], "reduce_n3_p2": [0.03492666408419609, 0.03366544097661972, 0.046294331550598145, 0.042384952306747437, 0.012695251032710075, 0.06759580969810486, 0.05495096743106842], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.054234422743320465, 0.07823670655488968, 0.13309767842292786, 0.07583622634410858, 0.10847394168376923, 0.2835410237312317, 0.04547007009387016], "normal_n2_p1": [0.012905744835734367, 0.1545521318912506, 0.5236707329750061, 0.020716967061161995, 0.06488775461912155, 0.06017724424600601, 0.0779654011130333], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.7221981287002563, 0.020741363987326622, 0.022488906979560852, 0.09602461755275726, 0.05080452933907509, 0.02110319957137108, 0.010861228220164776], "normal_n3_p1": [0.07893963903188705, 0.027519555762410164, 0.016768863424658775, 0.7708611488342285, 0.0378107950091362, 0.01846909336745739, 0.028333403170108795], "normal_n3_p2": [0.07510257512331009, 0.05648285895586014, 0.08345639705657959, 0.036918532103300095, 0.01582954451441765, 0.022067779675126076, 0.023084627464413643], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4118718206882477, 0.14385227859020233, 0.020573722198605537, 0.012011455371975899, 0.09765230119228363, 0.18359757959842682, 0.09150280058383942], "reduce_n2_p1": [0.1692582368850708, 0.6607267260551453, 0.06691000610589981, 0.007942644879221916, 0.014190117828547955, 0.025965481996536255, 0.020693305879831314], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.00012496892304625362, 0.0011866651475429535, 0.0021890453062951565, 0.005038685165345669, 0.9820716977119446, 0.0021539453882724047, 0.0037123379297554493], "reduce_n3_p1": [0.7857928276062012, 0.06312865018844604, 0.014548758044838905, 0.03281133249402046, 0.02860606275498867, 0.024269698187708855, 0.04704371839761734], "reduce_n3_p2": [0.037695515900850296, 0.03183024004101753, 0.0403396375477314, 0.06059480831027031, 0.018955238163471222, 0.07219305634498596, 0.1025807112455368], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.054234422743320465, 0.07823670655488968, 0.13309767842292786, 0.07583622634410858, 0.10847394168376923, 0.2835410237312317, 0.04547007009387016], "normal_n2_p1": [0.012905744835734367, 0.1545521318912506, 0.5236707329750061, 0.020716967061161995, 0.06488775461912155, 0.06017724424600601, 0.0779654011130333], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.7221981287002563, 0.020741363987326622, 0.022488906979560852, 0.09602461755275726, 0.05080452933907509, 0.02110319957137108, 0.010861228220164776], "normal_n3_p1": [0.07893963903188705, 0.027519555762410164, 0.016768863424658775, 0.7708611488342285, 0.0378107950091362, 0.01846909336745739, 0.028333403170108795], "normal_n3_p2": [0.07510257512331009, 0.05648285895586014, 0.08345639705657959, 0.036918532103300095, 0.01582954451441765, 0.022067779675126076, 0.023084627464413643], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4118718206882477, 0.14385227859020233, 0.020573722198605537, 0.012011455371975899, 0.09765230119228363, 0.18359757959842682, 0.09150280058383942], "reduce_n2_p1": [0.1692582368850708, 0.6607267260551453, 0.06691000610589981, 0.007942644879221916, 0.014190117828547955, 0.025965481996536255, 0.020693305879831314], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.00012496892304625362, 0.0011866651475429535, 0.0021890453062951565, 0.005038685165345669, 0.9820716977119446, 0.0021539453882724047, 0.0037123379297554493], "reduce_n3_p1": [0.7857928276062012, 0.06312865018844604, 0.014548758044838905, 0.03281133249402046, 0.02860606275498867, 0.024269698187708855, 0.04704371839761734], "reduce_n3_p2": [0.037695515900850296, 0.03183024004101753, 0.0403396375477314, 0.06059480831027031, 0.018955238163471222, 0.07219305634498596, 0.1025807112455368], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0418352372944355, 0.08622170239686966, 0.31429481506347656, 0.05603649467229843, 0.11994518339633942, 0.3007916212081909, 0.025341065600514412], "normal_n2_p1": [0.01232751365751028, 0.16758131980895996, 0.5207534432411194, 0.017450684681534767, 0.01982579380273819, 0.09002910554409027, 0.10071618109941483], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.31759703159332275, 0.05603521689772606, 0.06073373183608055, 0.282025009393692, 0.08639153093099594, 0.058921150863170624, 0.014276732690632343], "normal_n3_p1": [0.07599911838769913, 0.023731710389256477, 0.013310628943145275, 0.7898465394973755, 0.028973538428544998, 0.02020443230867386, 0.025343745946884155], "normal_n3_p2": [0.06598564237356186, 0.03730662539601326, 0.03682095929980278, 0.03398238122463226, 0.01820378750562668, 0.022553635761141777, 0.01612933538854122], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02903251349925995, 0.0543464757502079, 0.011137403547763824, 0.0075190020725131035, 0.028438473120331764, 0.8154782652854919, 0.028613312169909477], "reduce_n2_p1": [0.231669083237648, 0.44434434175491333, 0.12284129858016968, 0.014901147224009037, 0.03242530673742294, 0.055219508707523346, 0.039797812700271606], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0005177631392143667, 0.0027024128939956427, 0.004229220096021891, 0.00659045297652483, 0.9686184525489807, 0.0049684979021549225, 0.005910523235797882], "reduce_n3_p1": [0.8075013160705566, 0.054034389555454254, 0.017633264884352684, 0.036436546593904495, 0.031968485563993454, 0.024407634511590004, 0.022122805938124657], "reduce_n3_p2": [0.04026325047016144, 0.03522853925824165, 0.04398530721664429, 0.1047341525554657, 0.029958253726363182, 0.057191528379917145, 0.2189069241285324], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0418352372944355, 0.08622170239686966, 0.31429481506347656, 0.05603649467229843, 0.11994518339633942, 0.3007916212081909, 0.025341065600514412], "normal_n2_p1": [0.01232751365751028, 0.16758131980895996, 0.5207534432411194, 0.017450684681534767, 0.01982579380273819, 0.09002910554409027, 0.10071618109941483], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.31759703159332275, 0.05603521689772606, 0.06073373183608055, 0.282025009393692, 0.08639153093099594, 0.058921150863170624, 0.014276732690632343], "normal_n3_p1": [0.07599911838769913, 0.023731710389256477, 0.013310628943145275, 0.7898465394973755, 0.028973538428544998, 0.02020443230867386, 0.025343745946884155], "normal_n3_p2": [0.06598564237356186, 0.03730662539601326, 0.03682095929980278, 0.03398238122463226, 0.01820378750562668, 0.022553635761141777, 0.01612933538854122], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02903251349925995, 0.0543464757502079, 0.011137403547763824, 0.0075190020725131035, 0.028438473120331764, 0.8154782652854919, 0.028613312169909477], "reduce_n2_p1": [0.231669083237648, 0.44434434175491333, 0.12284129858016968, 0.014901147224009037, 0.03242530673742294, 0.055219508707523346, 0.039797812700271606], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0005177631392143667, 0.0027024128939956427, 0.004229220096021891, 0.00659045297652483, 0.9686184525489807, 0.0049684979021549225, 0.005910523235797882], "reduce_n3_p1": [0.8075013160705566, 0.054034389555454254, 0.017633264884352684, 0.036436546593904495, 0.031968485563993454, 0.024407634511590004, 0.022122805938124657], "reduce_n3_p2": [0.04026325047016144, 0.03522853925824165, 0.04398530721664429, 0.1047341525554657, 0.029958253726363182, 0.057191528379917145, 0.2189069241285324], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.01819445937871933, 0.05143546313047409, 0.7960535883903503, 0.011257261037826538, 0.009417646564543247, 0.1027609258890152, 0.0049204169772565365], "normal_n2_p1": [0.014830319210886955, 0.19278858602046967, 0.5156449675559998, 0.021430816501379013, 0.012151152826845646, 0.05876661837100983, 0.11808799207210541], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0015957420691847801, 0.014011215418577194, 0.012201095931231976, 0.8842913508415222, 0.03595656529068947, 0.03602195158600807, 0.005252770613878965], "normal_n3_p1": [0.04303155839443207, 0.01890396699309349, 0.010684164240956306, 0.8633845448493958, 0.01902952417731285, 0.016957879066467285, 0.014702282845973969], "normal_n3_p2": [0.21480368077754974, 0.10781211405992508, 0.07057755440473557, 0.07745315879583359, 0.052957598119974136, 0.06910280883312225, 0.034106407314538956], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.020731182768940926, 0.10065553337335587, 0.020264046266674995, 0.014732158742845058, 0.04742836952209473, 0.7043272852897644, 0.03932385891675949], "reduce_n2_p1": [0.27303066849708557, 0.27739217877388, 0.16730880737304688, 0.023338716477155685, 0.04964444786310196, 0.060866475105285645, 0.05819852277636528], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.001774104661308229, 0.005447692703455687, 0.007127430755645037, 0.008407281711697578, 0.950268030166626, 0.009004514664411545, 0.008801630698144436], "reduce_n3_p1": [0.6131505966186523, 0.10469848662614822, 0.043922584503889084, 0.07414110749959946, 0.06966902315616608, 0.045127902179956436, 0.03237249702215195], "reduce_n3_p2": [0.025584090501070023, 0.029112575575709343, 0.03229529783129692, 0.08848650008440018, 0.03275250643491745, 0.040158603340387344, 0.10524735599756241], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.01819445937871933, 0.05143546313047409, 0.7960535883903503, 0.011257261037826538, 0.009417646564543247, 0.1027609258890152, 0.0049204169772565365], "normal_n2_p1": [0.014830319210886955, 0.19278858602046967, 0.5156449675559998, 0.021430816501379013, 0.012151152826845646, 0.05876661837100983, 0.11808799207210541], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0015957420691847801, 0.014011215418577194, 0.012201095931231976, 0.8842913508415222, 0.03595656529068947, 0.03602195158600807, 0.005252770613878965], "normal_n3_p1": [0.04303155839443207, 0.01890396699309349, 0.010684164240956306, 0.8633845448493958, 0.01902952417731285, 0.016957879066467285, 0.014702282845973969], "normal_n3_p2": [0.21480368077754974, 0.10781211405992508, 0.07057755440473557, 0.07745315879583359, 0.052957598119974136, 0.06910280883312225, 0.034106407314538956], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.020731182768940926, 0.10065553337335587, 0.020264046266674995, 0.014732158742845058, 0.04742836952209473, 0.7043272852897644, 0.03932385891675949], "reduce_n2_p1": [0.27303066849708557, 0.27739217877388, 0.16730880737304688, 0.023338716477155685, 0.04964444786310196, 0.060866475105285645, 0.05819852277636528], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.001774104661308229, 0.005447692703455687, 0.007127430755645037, 0.008407281711697578, 0.950268030166626, 0.009004514664411545, 0.008801630698144436], "reduce_n3_p1": [0.6131505966186523, 0.10469848662614822, 0.043922584503889084, 0.07414110749959946, 0.06966902315616608, 0.045127902179956436, 0.03237249702215195], "reduce_n3_p2": [0.025584090501070023, 0.029112575575709343, 0.03229529783129692, 0.08848650008440018, 0.03275250643491745, 0.040158603340387344, 0.10524735599756241], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.015183842740952969, 0.04080922529101372, 0.858542799949646, 0.006539807189255953, 0.003248582361266017, 0.07029959559440613, 0.0027415091171860695], "normal_n2_p1": [0.025793323293328285, 0.3232657015323639, 0.31768083572387695, 0.03120880387723446, 0.013314411044120789, 0.0564451664686203, 0.16688013076782227], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.00016937570762820542, 0.009812689386308193, 0.007260425481945276, 0.909497082233429, 0.02403530478477478, 0.040270738303661346, 0.004387719556689262], "normal_n3_p1": [0.014575798064470291, 0.007450506091117859, 0.005613639950752258, 0.9437293410301208, 0.008974344469606876, 0.00818269420415163, 0.006058879196643829], "normal_n3_p2": [0.49821147322654724, 0.10859842598438263, 0.056461725383996964, 0.0706307664513588, 0.07607869803905487, 0.09088177978992462, 0.0385163351893425], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02372989058494568, 0.14202073216438293, 0.03113315813243389, 0.02362031862139702, 0.051164478063583374, 0.5931661128997803, 0.05465884506702423], "reduce_n2_p1": [0.48562952876091003, 0.05619499087333679, 0.12879078090190887, 0.029213465750217438, 0.06398651003837585, 0.08118071407079697, 0.058927226811647415], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005003125406801701, 0.01039721816778183, 0.011324886232614517, 0.010993494652211666, 0.923438549041748, 0.012769223190844059, 0.013705242425203323], "reduce_n3_p1": [0.23438037931919098, 0.1962314397096634, 0.1239180937409401, 0.06786804646253586, 0.19594544172286987, 0.08611631393432617, 0.055232565850019455], "reduce_n3_p2": [0.013846386224031448, 0.016196295619010925, 0.018246719613671303, 0.04282243549823761, 0.026339631527662277, 0.026355154812335968, 0.021843409165740013], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.015183842740952969, 0.04080922529101372, 0.858542799949646, 0.006539807189255953, 0.003248582361266017, 0.07029959559440613, 0.0027415091171860695], "normal_n2_p1": [0.025793323293328285, 0.3232657015323639, 0.31768083572387695, 0.03120880387723446, 0.013314411044120789, 0.0564451664686203, 0.16688013076782227], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.00016937570762820542, 0.009812689386308193, 0.007260425481945276, 0.909497082233429, 0.02403530478477478, 0.040270738303661346, 0.004387719556689262], "normal_n3_p1": [0.014575798064470291, 0.007450506091117859, 0.005613639950752258, 0.9437293410301208, 0.008974344469606876, 0.00818269420415163, 0.006058879196643829], "normal_n3_p2": [0.49821147322654724, 0.10859842598438263, 0.056461725383996964, 0.0706307664513588, 0.07607869803905487, 0.09088177978992462, 0.0385163351893425], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02372989058494568, 0.14202073216438293, 0.03113315813243389, 0.02362031862139702, 0.051164478063583374, 0.5931661128997803, 0.05465884506702423], "reduce_n2_p1": [0.48562952876091003, 0.05619499087333679, 0.12879078090190887, 0.029213465750217438, 0.06398651003837585, 0.08118071407079697, 0.058927226811647415], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.005003125406801701, 0.01039721816778183, 0.011324886232614517, 0.010993494652211666, 0.923438549041748, 0.012769223190844059, 0.013705242425203323], "reduce_n3_p1": [0.23438037931919098, 0.1962314397096634, 0.1239180937409401, 0.06786804646253586, 0.19594544172286987, 0.08611631393432617, 0.055232565850019455], "reduce_n3_p2": [0.013846386224031448, 0.016196295619010925, 0.018246719613671303, 0.04282243549823761, 0.026339631527662277, 0.026355154812335968, 0.021843409165740013], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.020800625905394554, 0.04526089131832123, 0.8242006897926331, 0.008809050545096397, 0.003436844330281019, 0.09034208208322525, 0.0037808967754244804], "normal_n2_p1": [0.04045822098851204, 0.38547801971435547, 0.2828245759010315, 0.03213641420006752, 0.01550017949193716, 0.05089304968714714, 0.13714195787906647], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.00013472227146849036, 0.011131172999739647, 0.008639532141387463, 0.882086455821991, 0.030942700803279877, 0.054474491626024246, 0.006758516188710928], "normal_n3_p1": [0.013459031470119953, 0.007704623509198427, 0.007436112035065889, 0.9408948421478271, 0.009589354507625103, 0.008760394528508186, 0.006148281041532755], "normal_n3_p2": [0.6709926724433899, 0.045525211840867996, 0.035930559039115906, 0.039881762117147446, 0.09072302281856537, 0.06553982198238373, 0.028509782627224922], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0441458597779274, 0.4439743161201477, 0.045029107481241226, 0.04421476647257805, 0.057425592094659805, 0.20538534224033356, 0.05962323397397995], "reduce_n2_p1": [0.8984009623527527, 0.005994716659188271, 0.025606291368603706, 0.010198882780969143, 0.01342138834297657, 0.01637915149331093, 0.009150209836661816], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.012743836268782616, 0.019396450370550156, 0.021211151033639908, 0.018939033150672913, 0.8568128943443298, 0.024303697049617767, 0.027361037209630013], "reduce_n3_p1": [0.03531284257769585, 0.04266204684972763, 0.4359474778175354, 0.02210868149995804, 0.24597354233264923, 0.08489840477705002, 0.09105142205953598], "reduce_n3_p2": [0.015951121225953102, 0.01784590259194374, 0.02058887854218483, 0.052031293511390686, 0.03288725018501282, 0.03725573793053627, 0.015115107409656048], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.020800625905394554, 0.04526089131832123, 0.8242006897926331, 0.008809050545096397, 0.003436844330281019, 0.09034208208322525, 0.0037808967754244804], "normal_n2_p1": [0.04045822098851204, 0.38547801971435547, 0.2828245759010315, 0.03213641420006752, 0.01550017949193716, 0.05089304968714714, 0.13714195787906647], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.00013472227146849036, 0.011131172999739647, 0.008639532141387463, 0.882086455821991, 0.030942700803279877, 0.054474491626024246, 0.006758516188710928], "normal_n3_p1": [0.013459031470119953, 0.007704623509198427, 0.007436112035065889, 0.9408948421478271, 0.009589354507625103, 0.008760394528508186, 0.006148281041532755], "normal_n3_p2": [0.6709926724433899, 0.045525211840867996, 0.035930559039115906, 0.039881762117147446, 0.09072302281856537, 0.06553982198238373, 0.028509782627224922], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0441458597779274, 0.4439743161201477, 0.045029107481241226, 0.04421476647257805, 0.057425592094659805, 0.20538534224033356, 0.05962323397397995], "reduce_n2_p1": [0.8984009623527527, 0.005994716659188271, 0.025606291368603706, 0.010198882780969143, 0.01342138834297657, 0.01637915149331093, 0.009150209836661816], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.012743836268782616, 0.019396450370550156, 0.021211151033639908, 0.018939033150672913, 0.8568128943443298, 0.024303697049617767, 0.027361037209630013], "reduce_n3_p1": [0.03531284257769585, 0.04266204684972763, 0.4359474778175354, 0.02210868149995804, 0.24597354233264923, 0.08489840477705002, 0.09105142205953598], "reduce_n3_p2": [0.015951121225953102, 0.01784590259194374, 0.02058887854218483, 0.052031293511390686, 0.03288725018501282, 0.03725573793053627, 0.015115107409656048], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.039312660694122314, 0.0724736750125885, 0.6493740081787109, 0.01899769715964794, 0.006872387602925301, 0.19624312222003937, 0.0088727455586195], "normal_n2_p1": [0.04964466765522957, 0.23098884522914886, 0.34420520067214966, 0.03855999931693077, 0.019753340631723404, 0.04823452606797218, 0.18155598640441895], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0003234816831536591, 0.023546909913420677, 0.018483657389879227, 0.7981377243995667, 0.05894990265369415, 0.07297156006097794, 0.013975648209452629], "normal_n3_p1": [0.026659483090043068, 0.018385274335741997, 0.02181989699602127, 0.8660544157028198, 0.019782673567533493, 0.019086450338363647, 0.013650634326040745], "normal_n3_p2": [0.9425508975982666, 0.008799056522548199, 0.010225551202893257, 0.005470553878694773, 0.012497141025960445, 0.010529003106057644, 0.0065303221344947815], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.044151559472084045, 0.18398544192314148, 0.052214086055755615, 0.06194259598851204, 0.07344792783260345, 0.4152390658855438, 0.07467420399188995], "reduce_n2_p1": [0.9174602627754211, 0.003674717154353857, 0.021367769688367844, 0.009962056763470173, 0.011034328490495682, 0.011956628412008286, 0.0061192684806883335], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.020082823932170868, 0.01978200115263462, 0.03187645226716995, 0.027317333966493607, 0.7773802876472473, 0.047816116362810135, 0.04649331793189049], "reduce_n3_p1": [0.01232198067009449, 0.01768917217850685, 0.040376756340265274, 0.007457824423909187, 0.8004207611083984, 0.025849254801869392, 0.07478416711091995], "reduce_n3_p2": [0.05628926679491997, 0.05627565458416939, 0.06499424576759338, 0.16695940494537354, 0.11454261094331741, 0.11122862994670868, 0.03445358946919441], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.039312660694122314, 0.0724736750125885, 0.6493740081787109, 0.01899769715964794, 0.006872387602925301, 0.19624312222003937, 0.0088727455586195], "normal_n2_p1": [0.04964466765522957, 0.23098884522914886, 0.34420520067214966, 0.03855999931693077, 0.019753340631723404, 0.04823452606797218, 0.18155598640441895], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0003234816831536591, 0.023546909913420677, 0.018483657389879227, 0.7981377243995667, 0.05894990265369415, 0.07297156006097794, 0.013975648209452629], "normal_n3_p1": [0.026659483090043068, 0.018385274335741997, 0.02181989699602127, 0.8660544157028198, 0.019782673567533493, 0.019086450338363647, 0.013650634326040745], "normal_n3_p2": [0.9425508975982666, 0.008799056522548199, 0.010225551202893257, 0.005470553878694773, 0.012497141025960445, 0.010529003106057644, 0.0065303221344947815], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.044151559472084045, 0.18398544192314148, 0.052214086055755615, 0.06194259598851204, 0.07344792783260345, 0.4152390658855438, 0.07467420399188995], "reduce_n2_p1": [0.9174602627754211, 0.003674717154353857, 0.021367769688367844, 0.009962056763470173, 0.011034328490495682, 0.011956628412008286, 0.0061192684806883335], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.020082823932170868, 0.01978200115263462, 0.03187645226716995, 0.027317333966493607, 0.7773802876472473, 0.047816116362810135, 0.04649331793189049], "reduce_n3_p1": [0.01232198067009449, 0.01768917217850685, 0.040376756340265274, 0.007457824423909187, 0.8004207611083984, 0.025849254801869392, 0.07478416711091995], "reduce_n3_p2": [0.05628926679491997, 0.05627565458416939, 0.06499424576759338, 0.16695940494537354, 0.11454261094331741, 0.11122862994670868, 0.03445358946919441], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02697540633380413, 0.04355403035879135, 0.059708599001169205, 0.020086491480469704, 0.007909794338047504, 0.8219443559646606, 0.010137401521205902], "normal_n2_p1": [0.03464634716510773, 0.07868931442499161, 0.671942412853241, 0.026924913749098778, 0.014506185427308083, 0.014055982232093811, 0.10301169008016586], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0010104923276230693, 0.03711554408073425, 0.03214195743203163, 0.697468638420105, 0.09877583384513855, 0.0784323439002037, 0.02426385134458542], "normal_n3_p1": [0.050501491874456406, 0.043313659727573395, 0.05512389540672302, 0.7175877094268799, 0.03629905357956886, 0.03844011574983597, 0.025517364963889122], "normal_n3_p2": [0.9089322090148926, 0.014314922504127026, 0.019389918074011803, 0.007614627480506897, 0.017723502591252327, 0.014950042590498924, 0.011964133940637112], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.012005253694951534, 0.010596008971333504, 0.029671072959899902, 0.01892489194869995, 0.026943620294332504, 0.8254330158233643, 0.035586386919021606], "reduce_n2_p1": [0.9001578688621521, 0.004574149381369352, 0.02746710367500782, 0.013226182200014591, 0.01296238973736763, 0.015050271525979042, 0.007110051345080137], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014431832358241081, 0.011330677196383476, 0.026094308122992516, 0.016709107905626297, 0.8049755692481995, 0.08007292449474335, 0.022683031857013702], "reduce_n3_p1": [0.015860475599765778, 0.02441020868718624, 0.03230350837111473, 0.009586880914866924, 0.10837947577238083, 0.044781625270843506, 0.731626570224762], "reduce_n3_p2": [0.1063850075006485, 0.09268724173307419, 0.08882685005664825, 0.12763845920562744, 0.13303886353969574, 0.17250502109527588, 0.03870632126927376], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.02697540633380413, 0.04355403035879135, 0.059708599001169205, 0.020086491480469704, 0.007909794338047504, 0.8219443559646606, 0.010137401521205902], "normal_n2_p1": [0.03464634716510773, 0.07868931442499161, 0.671942412853241, 0.026924913749098778, 0.014506185427308083, 0.014055982232093811, 0.10301169008016586], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0010104923276230693, 0.03711554408073425, 0.03214195743203163, 0.697468638420105, 0.09877583384513855, 0.0784323439002037, 0.02426385134458542], "normal_n3_p1": [0.050501491874456406, 0.043313659727573395, 0.05512389540672302, 0.7175877094268799, 0.03629905357956886, 0.03844011574983597, 0.025517364963889122], "normal_n3_p2": [0.9089322090148926, 0.014314922504127026, 0.019389918074011803, 0.007614627480506897, 0.017723502591252327, 0.014950042590498924, 0.011964133940637112], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.012005253694951534, 0.010596008971333504, 0.029671072959899902, 0.01892489194869995, 0.026943620294332504, 0.8254330158233643, 0.035586386919021606], "reduce_n2_p1": [0.9001578688621521, 0.004574149381369352, 0.02746710367500782, 0.013226182200014591, 0.01296238973736763, 0.015050271525979042, 0.007110051345080137], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.014431832358241081, 0.011330677196383476, 0.026094308122992516, 0.016709107905626297, 0.8049755692481995, 0.08007292449474335, 0.022683031857013702], "reduce_n3_p1": [0.015860475599765778, 0.02441020868718624, 0.03230350837111473, 0.009586880914866924, 0.10837947577238083, 0.044781625270843506, 0.731626570224762], "reduce_n3_p2": [0.1063850075006485, 0.09268724173307419, 0.08882685005664825, 0.12763845920562744, 0.13303886353969574, 0.17250502109527588, 0.03870632126927376], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.01936384104192257, 0.03537891432642937, 0.01744474098086357, 0.015815498307347298, 0.008706769905984402, 0.8824975490570068, 0.01035641971975565], "normal_n2_p1": [0.05102953314781189, 0.06899569183588028, 0.38658055663108826, 0.050519999116659164, 0.023478655144572258, 0.01507431361824274, 0.2968161702156067], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.003625063458457589, 0.11106428503990173, 0.08119071274995804, 0.26948925852775574, 0.13430163264274597, 0.24544762074947357, 0.05422290414571762], "normal_n3_p1": [0.02550693228840828, 0.02161199226975441, 0.021456049755215645, 0.8344240784645081, 0.025810785591602325, 0.02718215063214302, 0.020969277247786522], "normal_n3_p2": [0.7654121518135071, 0.038019027560949326, 0.05376094579696655, 0.019641725346446037, 0.04246849939227104, 0.03390210121870041, 0.032639212906360626], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.015128692612051964, 0.00592705188319087, 0.04184370115399361, 0.023150531575083733, 0.03624449297785759, 0.7591258883476257, 0.05404946580529213], "reduce_n2_p1": [0.8198307156562805, 0.009524760767817497, 0.053781770169734955, 0.023594921454787254, 0.021603034809231758, 0.027934754267334938, 0.013162408955395222], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008766049519181252, 0.0068091414868831635, 0.023668736219406128, 0.009297625161707401, 0.8820958733558655, 0.04101471230387688, 0.013359205797314644], "reduce_n3_p1": [0.04793662950396538, 0.0775371864438057, 0.06117282062768936, 0.028441311791539192, 0.16764238476753235, 0.1999385952949524, 0.3208830654621124], "reduce_n3_p2": [0.08746897429227829, 0.1683574765920639, 0.14518459141254425, 0.05833998695015907, 0.0566602498292923, 0.4046742618083954, 0.03202568367123604], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.01936384104192257, 0.03537891432642937, 0.01744474098086357, 0.015815498307347298, 0.008706769905984402, 0.8824975490570068, 0.01035641971975565], "normal_n2_p1": [0.05102953314781189, 0.06899569183588028, 0.38658055663108826, 0.050519999116659164, 0.023478655144572258, 0.01507431361824274, 0.2968161702156067], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.003625063458457589, 0.11106428503990173, 0.08119071274995804, 0.26948925852775574, 0.13430163264274597, 0.24544762074947357, 0.05422290414571762], "normal_n3_p1": [0.02550693228840828, 0.02161199226975441, 0.021456049755215645, 0.8344240784645081, 0.025810785591602325, 0.02718215063214302, 0.020969277247786522], "normal_n3_p2": [0.7654121518135071, 0.038019027560949326, 0.05376094579696655, 0.019641725346446037, 0.04246849939227104, 0.03390210121870041, 0.032639212906360626], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.015128692612051964, 0.00592705188319087, 0.04184370115399361, 0.023150531575083733, 0.03624449297785759, 0.7591258883476257, 0.05404946580529213], "reduce_n2_p1": [0.8198307156562805, 0.009524760767817497, 0.053781770169734955, 0.023594921454787254, 0.021603034809231758, 0.027934754267334938, 0.013162408955395222], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008766049519181252, 0.0068091414868831635, 0.023668736219406128, 0.009297625161707401, 0.8820958733558655, 0.04101471230387688, 0.013359205797314644], "reduce_n3_p1": [0.04793662950396538, 0.0775371864438057, 0.06117282062768936, 0.028441311791539192, 0.16764238476753235, 0.1999385952949524, 0.3208830654621124], "reduce_n3_p2": [0.08746897429227829, 0.1683574765920639, 0.14518459141254425, 0.05833998695015907, 0.0566602498292923, 0.4046742618083954, 0.03202568367123604], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03704624995589256, 0.0802777037024498, 0.02371136099100113, 0.02335425093770027, 0.01944056712090969, 0.7714098691940308, 0.022346409037709236], "normal_n2_p1": [0.022419581189751625, 0.028894251212477684, 0.8221243023872375, 0.04822038859128952, 0.009243171662092209, 0.004971644375473261, 0.02652083709836006], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.005499753635376692, 0.2044772356748581, 0.08570415526628494, 0.6079602241516113, 0.04685544595122337, 0.011835077777504921, 0.02227216586470604], "normal_n3_p1": [0.015396704897284508, 0.014440614730119705, 0.013079717755317688, 0.8919074535369873, 0.01686025783419609, 0.016113871708512306, 0.017352193593978882], "normal_n3_p2": [0.09702736139297485, 0.11429321765899658, 0.2571645975112915, 0.07429920881986618, 0.19067591428756714, 0.11565957218408585, 0.10148108005523682], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.026434628292918205, 0.007527316454797983, 0.08647913485765457, 0.041656624525785446, 0.06187113747000694, 0.5447549819946289, 0.08656266331672668], "reduce_n2_p1": [0.46453869342803955, 0.030351368710398674, 0.17897719144821167, 0.06596262753009796, 0.06044413894414902, 0.07341086864471436, 0.04046005755662918], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.007239689119160175, 0.005878370255231857, 0.016320517286658287, 0.007075688801705837, 0.9165254235267639, 0.023505697026848793, 0.011105944402515888], "reduce_n3_p1": [0.10015802830457687, 0.21688491106033325, 0.04041965678334236, 0.048607174307107925, 0.3732050061225891, 0.07462850213050842, 0.02718624472618103], "reduce_n3_p2": [0.10664911568164825, 0.549891471862793, 0.16519594192504883, 0.02748183347284794, 0.022807665169239044, 0.0986919030547142, 0.01798202283680439], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03704624995589256, 0.0802777037024498, 0.02371136099100113, 0.02335425093770027, 0.01944056712090969, 0.7714098691940308, 0.022346409037709236], "normal_n2_p1": [0.022419581189751625, 0.028894251212477684, 0.8221243023872375, 0.04822038859128952, 0.009243171662092209, 0.004971644375473261, 0.02652083709836006], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.005499753635376692, 0.2044772356748581, 0.08570415526628494, 0.6079602241516113, 0.04685544595122337, 0.011835077777504921, 0.02227216586470604], "normal_n3_p1": [0.015396704897284508, 0.014440614730119705, 0.013079717755317688, 0.8919074535369873, 0.01686025783419609, 0.016113871708512306, 0.017352193593978882], "normal_n3_p2": [0.09702736139297485, 0.11429321765899658, 0.2571645975112915, 0.07429920881986618, 0.19067591428756714, 0.11565957218408585, 0.10148108005523682], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.026434628292918205, 0.007527316454797983, 0.08647913485765457, 0.041656624525785446, 0.06187113747000694, 0.5447549819946289, 0.08656266331672668], "reduce_n2_p1": [0.46453869342803955, 0.030351368710398674, 0.17897719144821167, 0.06596262753009796, 0.06044413894414902, 0.07341086864471436, 0.04046005755662918], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.007239689119160175, 0.005878370255231857, 0.016320517286658287, 0.007075688801705837, 0.9165254235267639, 0.023505697026848793, 0.011105944402515888], "reduce_n3_p1": [0.10015802830457687, 0.21688491106033325, 0.04041965678334236, 0.048607174307107925, 0.3732050061225891, 0.07462850213050842, 0.02718624472618103], "reduce_n3_p2": [0.10664911568164825, 0.549891471862793, 0.16519594192504883, 0.02748183347284794, 0.022807665169239044, 0.0986919030547142, 0.01798202283680439], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.10620101541280746, 0.2419099658727646, 0.059354089200496674, 0.054536934942007065, 0.04903547093272209, 0.3714854419231415, 0.05620787292718887], "normal_n2_p1": [0.022618668153882027, 0.025516340509057045, 0.8283343315124512, 0.05939852073788643, 0.009212878532707691, 0.004869537428021431, 0.012433276511728764], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0045086988247931, 0.01224120706319809, 0.015981798991560936, 0.9350254535675049, 0.019372867420315742, 0.0016006958903744817, 0.0074035124853253365], "normal_n3_p1": [0.013276023790240288, 0.012929067015647888, 0.011893363669514656, 0.9007083177566528, 0.01599845662713051, 0.012857743538916111, 0.01787428930401802], "normal_n3_p2": [0.012227226980030537, 0.03652489557862282, 0.016401074826717377, 0.07693171501159668, 0.5897749066352844, 0.09415633976459503, 0.1247948706150055], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.017850205302238464, 0.007144540548324585, 0.05742639675736427, 0.03075985051691532, 0.07528609037399292, 0.5139403939247131, 0.20725101232528687], "reduce_n2_p1": [0.579942524433136, 0.03159528225660324, 0.10657475888729095, 0.05410438030958176, 0.06003670021891594, 0.05237140879034996, 0.038587912917137146], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008223478682339191, 0.007217679638415575, 0.014417543075978756, 0.008014325052499771, 0.9163573980331421, 0.019954271614551544, 0.012416004203259945], "reduce_n3_p1": [0.057298626750707626, 0.07151449471712112, 0.02057001180946827, 0.03404536843299866, 0.6915038228034973, 0.043703705072402954, 0.005406277719885111], "reduce_n3_p2": [0.11157923936843872, 0.514212429523468, 0.23236098885536194, 0.03005833737552166, 0.021410465240478516, 0.054979175329208374, 0.02598150074481964], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.10620101541280746, 0.2419099658727646, 0.059354089200496674, 0.054536934942007065, 0.04903547093272209, 0.3714854419231415, 0.05620787292718887], "normal_n2_p1": [0.022618668153882027, 0.025516340509057045, 0.8283343315124512, 0.05939852073788643, 0.009212878532707691, 0.004869537428021431, 0.012433276511728764], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0045086988247931, 0.01224120706319809, 0.015981798991560936, 0.9350254535675049, 0.019372867420315742, 0.0016006958903744817, 0.0074035124853253365], "normal_n3_p1": [0.013276023790240288, 0.012929067015647888, 0.011893363669514656, 0.9007083177566528, 0.01599845662713051, 0.012857743538916111, 0.01787428930401802], "normal_n3_p2": [0.012227226980030537, 0.03652489557862282, 0.016401074826717377, 0.07693171501159668, 0.5897749066352844, 0.09415633976459503, 0.1247948706150055], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.017850205302238464, 0.007144540548324585, 0.05742639675736427, 0.03075985051691532, 0.07528609037399292, 0.5139403939247131, 0.20725101232528687], "reduce_n2_p1": [0.579942524433136, 0.03159528225660324, 0.10657475888729095, 0.05410438030958176, 0.06003670021891594, 0.05237140879034996, 0.038587912917137146], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.008223478682339191, 0.007217679638415575, 0.014417543075978756, 0.008014325052499771, 0.9163573980331421, 0.019954271614551544, 0.012416004203259945], "reduce_n3_p1": [0.057298626750707626, 0.07151449471712112, 0.02057001180946827, 0.03404536843299866, 0.6915038228034973, 0.043703705072402954, 0.005406277719885111], "reduce_n3_p2": [0.11157923936843872, 0.514212429523468, 0.23236098885536194, 0.03005833737552166, 0.021410465240478516, 0.054979175329208374, 0.02598150074481964], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.14000101387500763, 0.37701717019081116, 0.07437363266944885, 0.03819732740521431, 0.05383690074086189, 0.15317903459072113, 0.08393948525190353], "normal_n2_p1": [0.03127618506550789, 0.03454791009426117, 0.7228021025657654, 0.12505795061588287, 0.0137792332097888, 0.007920746691524982, 0.01228074636310339], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.005026001483201981, 0.0032552373595535755, 0.007139986846596003, 0.9622179865837097, 0.013346575200557709, 0.0007821787730790675, 0.005343239288777113], "normal_n3_p1": [0.01156527642160654, 0.012075119651854038, 0.011304507032036781, 0.9157446026802063, 0.0127096651121974, 0.009350722655653954, 0.015349485911428928], "normal_n3_p2": [0.0066115339286625385, 0.03353799134492874, 0.0061669014394283295, 0.0726017877459526, 0.5263185501098633, 0.07834077626466751, 0.2251904457807541], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.024182606488466263, 0.011338457465171814, 0.0661068707704544, 0.03568253293633461, 0.12952964007854462, 0.13672032952308655, 0.4231521785259247], "reduce_n2_p1": [0.5512735247612, 0.04045218601822853, 0.10313861072063446, 0.062279026955366135, 0.06561033427715302, 0.04887605085968971, 0.04552245885133743], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010236392728984356, 0.00978973601013422, 0.01322848815470934, 0.010114318691194057, 0.9145702719688416, 0.013331038877367973, 0.014613773673772812], "reduce_n3_p1": [0.11236202716827393, 0.10725483298301697, 0.0436214953660965, 0.07592179626226425, 0.4094282388687134, 0.09804067760705948, 0.007482337765395641], "reduce_n3_p2": [0.13452686369419098, 0.6582612991333008, 0.09023003280162811, 0.029223807156085968, 0.01819521002471447, 0.029674220830202103, 0.03028852306306362], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.14000101387500763, 0.37701717019081116, 0.07437363266944885, 0.03819732740521431, 0.05383690074086189, 0.15317903459072113, 0.08393948525190353], "normal_n2_p1": [0.03127618506550789, 0.03454791009426117, 0.7228021025657654, 0.12505795061588287, 0.0137792332097888, 0.007920746691524982, 0.01228074636310339], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.005026001483201981, 0.0032552373595535755, 0.007139986846596003, 0.9622179865837097, 0.013346575200557709, 0.0007821787730790675, 0.005343239288777113], "normal_n3_p1": [0.01156527642160654, 0.012075119651854038, 0.011304507032036781, 0.9157446026802063, 0.0127096651121974, 0.009350722655653954, 0.015349485911428928], "normal_n3_p2": [0.0066115339286625385, 0.03353799134492874, 0.0061669014394283295, 0.0726017877459526, 0.5263185501098633, 0.07834077626466751, 0.2251904457807541], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.024182606488466263, 0.011338457465171814, 0.0661068707704544, 0.03568253293633461, 0.12952964007854462, 0.13672032952308655, 0.4231521785259247], "reduce_n2_p1": [0.5512735247612, 0.04045218601822853, 0.10313861072063446, 0.062279026955366135, 0.06561033427715302, 0.04887605085968971, 0.04552245885133743], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.010236392728984356, 0.00978973601013422, 0.01322848815470934, 0.010114318691194057, 0.9145702719688416, 0.013331038877367973, 0.014613773673772812], "reduce_n3_p1": [0.11236202716827393, 0.10725483298301697, 0.0436214953660965, 0.07592179626226425, 0.4094282388687134, 0.09804067760705948, 0.007482337765395641], "reduce_n3_p2": [0.13452686369419098, 0.6582612991333008, 0.09023003280162811, 0.029223807156085968, 0.01819521002471447, 0.029674220830202103, 0.03028852306306362], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08271069824695587, 0.6566139459609985, 0.07846210151910782, 0.016315516084432602, 0.02625546045601368, 0.024837901815772057, 0.07199878245592117], "normal_n2_p1": [0.04148438572883606, 0.0500120110809803, 0.23417480289936066, 0.5007123947143555, 0.026024259626865387, 0.015691282227635384, 0.019781261682510376], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.007594912778586149, 0.002673876006156206, 0.0065302723087370396, 0.9579181671142578, 0.013384868390858173, 0.000904728367459029, 0.006562058348208666], "normal_n3_p1": [0.019034869968891144, 0.021784605458378792, 0.02165922150015831, 0.8586822748184204, 0.01914098486304283, 0.014265253208577633, 0.025124849751591682], "normal_n3_p2": [0.009632300585508347, 0.05309859663248062, 0.007984439842402935, 0.11037220060825348, 0.1855923980474472, 0.10802420228719711, 0.44411545991897583], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05020223930478096, 0.0219831895083189, 0.12457519769668579, 0.0502476841211319, 0.05047839507460594, 0.08438876271247864, 0.1841842532157898], "reduce_n2_p1": [0.2506231367588043, 0.0547819510102272, 0.06941583752632141, 0.11099954694509506, 0.27721861004829407, 0.04575985670089722, 0.06667830049991608], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01231316477060318, 0.013643352314829826, 0.012911207042634487, 0.010126852430403233, 0.9123908281326294, 0.009290591813623905, 0.0166604183614254], "reduce_n3_p1": [0.11005089432001114, 0.1008429154753685, 0.04912926256656647, 0.1005304604768753, 0.3844352662563324, 0.09419713914394379, 0.011232992634177208], "reduce_n3_p2": [0.2085905224084854, 0.5068535208702087, 0.09497259557247162, 0.04935859143733978, 0.029245993122458458, 0.035171885043382645, 0.05600624531507492], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08271069824695587, 0.6566139459609985, 0.07846210151910782, 0.016315516084432602, 0.02625546045601368, 0.024837901815772057, 0.07199878245592117], "normal_n2_p1": [0.04148438572883606, 0.0500120110809803, 0.23417480289936066, 0.5007123947143555, 0.026024259626865387, 0.015691282227635384, 0.019781261682510376], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.007594912778586149, 0.002673876006156206, 0.0065302723087370396, 0.9579181671142578, 0.013384868390858173, 0.000904728367459029, 0.006562058348208666], "normal_n3_p1": [0.019034869968891144, 0.021784605458378792, 0.02165922150015831, 0.8586822748184204, 0.01914098486304283, 0.014265253208577633, 0.025124849751591682], "normal_n3_p2": [0.009632300585508347, 0.05309859663248062, 0.007984439842402935, 0.11037220060825348, 0.1855923980474472, 0.10802420228719711, 0.44411545991897583], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05020223930478096, 0.0219831895083189, 0.12457519769668579, 0.0502476841211319, 0.05047839507460594, 0.08438876271247864, 0.1841842532157898], "reduce_n2_p1": [0.2506231367588043, 0.0547819510102272, 0.06941583752632141, 0.11099954694509506, 0.27721861004829407, 0.04575985670089722, 0.06667830049991608], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01231316477060318, 0.013643352314829826, 0.012911207042634487, 0.010126852430403233, 0.9123908281326294, 0.009290591813623905, 0.0166604183614254], "reduce_n3_p1": [0.11005089432001114, 0.1008429154753685, 0.04912926256656647, 0.1005304604768753, 0.3844352662563324, 0.09419713914394379, 0.011232992634177208], "reduce_n3_p2": [0.2085905224084854, 0.5068535208702087, 0.09497259557247162, 0.04935859143733978, 0.029245993122458458, 0.035171885043382645, 0.05600624531507492], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06870203465223312, 0.6056208610534668, 0.10030435025691986, 0.017379703000187874, 0.02721025049686432, 0.014360446482896805, 0.11425668001174927], "normal_n2_p1": [0.008820817805826664, 0.012059359811246395, 0.0046775625087320805, 0.9002611041069031, 0.008680125698447227, 0.006185745820403099, 0.008219534531235695], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.013349330052733421, 0.0041672601364552975, 0.009440889582037926, 0.933561384677887, 0.016614975407719612, 0.0016676497180014849, 0.011510761454701424], "normal_n3_p1": [0.014374613761901855, 0.013291974551975727, 0.013878671452403069, 0.9019160270690918, 0.015802858397364616, 0.01050740946084261, 0.015496824868023396], "normal_n3_p2": [0.014993743970990181, 0.06642962992191315, 0.011994842439889908, 0.07136856764554977, 0.16287942230701447, 0.09541822224855423, 0.46523067355155945], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04864710196852684, 0.019470009952783585, 0.04743582755327225, 0.03417591750621796, 0.005158694926649332, 0.011726832948625088, 0.8320385813713074], "reduce_n2_p1": [0.17560160160064697, 0.04643305391073227, 0.07806215435266495, 0.41549786925315857, 0.009374557994306087, 0.02543213963508606, 0.03801684081554413], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01825995370745659, 0.024413101375102997, 0.017525317147374153, 0.012205527164041996, 0.8737375140190125, 0.00926985777914524, 0.028855983167886734], "reduce_n3_p1": [0.07604755461215973, 0.09278003871440887, 0.07502966374158859, 0.13347524404525757, 0.35890182852745056, 0.052032340317964554, 0.023021789267659187], "reduce_n3_p2": [0.2339717000722885, 0.15423113107681274, 0.2150578796863556, 0.08411279320716858, 0.08641806244850159, 0.09487129747867584, 0.0746428519487381], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.06870203465223312, 0.6056208610534668, 0.10030435025691986, 0.017379703000187874, 0.02721025049686432, 0.014360446482896805, 0.11425668001174927], "normal_n2_p1": [0.008820817805826664, 0.012059359811246395, 0.0046775625087320805, 0.9002611041069031, 0.008680125698447227, 0.006185745820403099, 0.008219534531235695], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.013349330052733421, 0.0041672601364552975, 0.009440889582037926, 0.933561384677887, 0.016614975407719612, 0.0016676497180014849, 0.011510761454701424], "normal_n3_p1": [0.014374613761901855, 0.013291974551975727, 0.013878671452403069, 0.9019160270690918, 0.015802858397364616, 0.01050740946084261, 0.015496824868023396], "normal_n3_p2": [0.014993743970990181, 0.06642962992191315, 0.011994842439889908, 0.07136856764554977, 0.16287942230701447, 0.09541822224855423, 0.46523067355155945], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.04864710196852684, 0.019470009952783585, 0.04743582755327225, 0.03417591750621796, 0.005158694926649332, 0.011726832948625088, 0.8320385813713074], "reduce_n2_p1": [0.17560160160064697, 0.04643305391073227, 0.07806215435266495, 0.41549786925315857, 0.009374557994306087, 0.02543213963508606, 0.03801684081554413], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.01825995370745659, 0.024413101375102997, 0.017525317147374153, 0.012205527164041996, 0.8737375140190125, 0.00926985777914524, 0.028855983167886734], "reduce_n3_p1": [0.07604755461215973, 0.09278003871440887, 0.07502966374158859, 0.13347524404525757, 0.35890182852745056, 0.052032340317964554, 0.023021789267659187], "reduce_n3_p2": [0.2339717000722885, 0.15423113107681274, 0.2150578796863556, 0.08411279320716858, 0.08641806244850159, 0.09487129747867584, 0.0746428519487381], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.051147062331438065, 0.6938335299491882, 0.06180679425597191, 0.018207231536507607, 0.027535365894436836, 0.01085851714015007, 0.09495211392641068], "normal_n2_p1": [0.01034475490450859, 0.014691214077174664, 0.0017600470455363393, 0.8624100089073181, 0.012251369655132294, 0.009154611267149448, 0.012514320202171803], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.022406797856092453, 0.008131048642098904, 0.015398052521049976, 0.8940073847770691, 0.020186465233564377, 0.0034107158426195383, 0.018551912158727646], "normal_n3_p1": [0.01967737451195717, 0.017950987443327904, 0.018244938924908638, 0.8799106478691101, 0.018177686259150505, 0.01275323424488306, 0.016778020188212395], "normal_n3_p2": [0.029036927968263626, 0.11823582649230957, 0.024600232020020485, 0.04591972380876541, 0.16687974333763123, 0.12726563215255737, 0.3903738558292389], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03255670890212059, 0.013726572506129742, 0.021386979147791862, 0.02286737971007824, 0.0016370313242077827, 0.0037316426169127226, 0.9040102958679199], "reduce_n2_p1": [0.1519826501607895, 0.04272248595952988, 0.11246176064014435, 0.5958604216575623, 0.0018663235241547227, 0.020816629752516747, 0.025588002055883408], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.021320750936865807, 0.028531458228826523, 0.02586549147963524, 0.016781486570835114, 0.8194167017936707, 0.01178599614650011, 0.051372043788433075], "reduce_n3_p1": [0.04300418123602867, 0.06265340745449066, 0.022322095930576324, 0.03182828798890114, 0.6233751177787781, 0.01875162310898304, 0.028928343206644058], "reduce_n3_p2": [0.4091375768184662, 0.039166081696748734, 0.18831880390644073, 0.06404875218868256, 0.062385037541389465, 0.15581291913986206, 0.022379998117685318], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.051147062331438065, 0.6938335299491882, 0.06180679425597191, 0.018207231536507607, 0.027535365894436836, 0.01085851714015007, 0.09495211392641068], "normal_n2_p1": [0.01034475490450859, 0.014691214077174664, 0.0017600470455363393, 0.8624100089073181, 0.012251369655132294, 0.009154611267149448, 0.012514320202171803], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.022406797856092453, 0.008131048642098904, 0.015398052521049976, 0.8940073847770691, 0.020186465233564377, 0.0034107158426195383, 0.018551912158727646], "normal_n3_p1": [0.01967737451195717, 0.017950987443327904, 0.018244938924908638, 0.8799106478691101, 0.018177686259150505, 0.01275323424488306, 0.016778020188212395], "normal_n3_p2": [0.029036927968263626, 0.11823582649230957, 0.024600232020020485, 0.04591972380876541, 0.16687974333763123, 0.12726563215255737, 0.3903738558292389], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.03255670890212059, 0.013726572506129742, 0.021386979147791862, 0.02286737971007824, 0.0016370313242077827, 0.0037316426169127226, 0.9040102958679199], "reduce_n2_p1": [0.1519826501607895, 0.04272248595952988, 0.11246176064014435, 0.5958604216575623, 0.0018663235241547227, 0.020816629752516747, 0.025588002055883408], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.021320750936865807, 0.028531458228826523, 0.02586549147963524, 0.016781486570835114, 0.8194167017936707, 0.01178599614650011, 0.051372043788433075], "reduce_n3_p1": [0.04300418123602867, 0.06265340745449066, 0.022322095930576324, 0.03182828798890114, 0.6233751177787781, 0.01875162310898304, 0.028928343206644058], "reduce_n3_p2": [0.4091375768184662, 0.039166081696748734, 0.18831880390644073, 0.06404875218868256, 0.062385037541389465, 0.15581291913986206, 0.022379998117685318], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.033472053706645966, 0.7889630198478699, 0.033221252262592316, 0.014794173650443554, 0.02010834775865078, 0.007732209749519825, 0.07811566442251205], "normal_n2_p1": [0.01706356182694435, 0.024352647364139557, 0.0020294685382395983, 0.7702314853668213, 0.020003676414489746, 0.01686662621796131, 0.02245362475514412], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018537450581789017, 0.009360946714878082, 0.012356867082417011, 0.9136395454406738, 0.013836415484547615, 0.0044780271127820015, 0.01433555781841278], "normal_n3_p1": [0.04277787730097771, 0.04840535297989845, 0.04554404690861702, 0.7337215542793274, 0.035000305622816086, 0.02696320228278637, 0.034961018711328506], "normal_n3_p2": [0.045995600521564484, 0.4102203845977783, 0.04741279408335686, 0.03464794531464577, 0.16944579780101776, 0.13886584341526031, 0.058314502239227295], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.026269324123859406, 0.014724907465279102, 0.020879261195659637, 0.021457074210047722, 0.0016964920796453953, 0.0031531029380857944, 0.911767840385437], "reduce_n2_p1": [0.19901257753372192, 0.06290517747402191, 0.1957182139158249, 0.46212950348854065, 0.0014480934478342533, 0.025319956243038177, 0.026392638683319092], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.021955935284495354, 0.030415022745728493, 0.02736249379813671, 0.02193007804453373, 0.7923388481140137, 0.01683127135038376, 0.05996555835008621], "reduce_n3_p1": [0.06172864884138107, 0.1104116290807724, 0.03767058998346329, 0.030679259449243546, 0.09063951671123505, 0.03178032860159874, 0.1090981662273407], "reduce_n3_p2": [0.26791802048683167, 0.02483074925839901, 0.16877086460590363, 0.0644403025507927, 0.05762103945016861, 0.3253982663154602, 0.015339705161750317], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.033472053706645966, 0.7889630198478699, 0.033221252262592316, 0.014794173650443554, 0.02010834775865078, 0.007732209749519825, 0.07811566442251205], "normal_n2_p1": [0.01706356182694435, 0.024352647364139557, 0.0020294685382395983, 0.7702314853668213, 0.020003676414489746, 0.01686662621796131, 0.02245362475514412], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.018537450581789017, 0.009360946714878082, 0.012356867082417011, 0.9136395454406738, 0.013836415484547615, 0.0044780271127820015, 0.01433555781841278], "normal_n3_p1": [0.04277787730097771, 0.04840535297989845, 0.04554404690861702, 0.7337215542793274, 0.035000305622816086, 0.02696320228278637, 0.034961018711328506], "normal_n3_p2": [0.045995600521564484, 0.4102203845977783, 0.04741279408335686, 0.03464794531464577, 0.16944579780101776, 0.13886584341526031, 0.058314502239227295], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.026269324123859406, 0.014724907465279102, 0.020879261195659637, 0.021457074210047722, 0.0016964920796453953, 0.0031531029380857944, 0.911767840385437], "reduce_n2_p1": [0.19901257753372192, 0.06290517747402191, 0.1957182139158249, 0.46212950348854065, 0.0014480934478342533, 0.025319956243038177, 0.026392638683319092], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.021955935284495354, 0.030415022745728493, 0.02736249379813671, 0.02193007804453373, 0.7923388481140137, 0.01683127135038376, 0.05996555835008621], "reduce_n3_p1": [0.06172864884138107, 0.1104116290807724, 0.03767058998346329, 0.030679259449243546, 0.09063951671123505, 0.03178032860159874, 0.1090981662273407], "reduce_n3_p2": [0.26791802048683167, 0.02483074925839901, 0.16877086460590363, 0.0644403025507927, 0.05762103945016861, 0.3253982663154602, 0.015339705161750317], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.01874406635761261, 0.8957974314689636, 0.018224840983748436, 0.010523918084800243, 0.012539558112621307, 0.005306839011609554, 0.02627190575003624], "normal_n2_p1": [0.04320507496595383, 0.06147722527384758, 0.005168735049664974, 0.383129745721817, 0.0495026670396328, 0.04239138960838318, 0.054959215223789215], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03037344291806221, 0.020165447145700455, 0.02245425619184971, 0.849540114402771, 0.02157987281680107, 0.009206436574459076, 0.02304389514029026], "normal_n3_p1": [0.06049733981490135, 0.07563226670026779, 0.07427991926670074, 0.5966665744781494, 0.04235125705599785, 0.036719005554914474, 0.06652700155973434], "normal_n3_p2": [0.06436598300933838, 0.26644575595855713, 0.09146462380886078, 0.0524105466902256, 0.21104645729064941, 0.18315893411636353, 0.03181140869855881], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.021597275510430336, 0.01681474596261978, 0.01822161115705967, 0.019297342747449875, 0.002523896051570773, 0.003594489535316825, 0.9178609848022461], "reduce_n2_p1": [0.0876440480351448, 0.05469804257154465, 0.09654181450605392, 0.6936831474304199, 0.0013536389451473951, 0.024575451388955116, 0.022835716605186462], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03252927213907242, 0.0421941839158535, 0.03633763641119003, 0.02856626734137535, 0.7276415228843689, 0.028708985075354576, 0.061325427144765854], "reduce_n3_p1": [0.05034932866692543, 0.08837218582630157, 0.02768707275390625, 0.020160416141152382, 0.03198474273085594, 0.03729201853275299, 0.07861032336950302], "reduce_n3_p2": [0.34798508882522583, 0.023953242227435112, 0.23736990988254547, 0.1017783060669899, 0.06368070840835571, 0.09690088033676147, 0.018846098333597183], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.01874406635761261, 0.8957974314689636, 0.018224840983748436, 0.010523918084800243, 0.012539558112621307, 0.005306839011609554, 0.02627190575003624], "normal_n2_p1": [0.04320507496595383, 0.06147722527384758, 0.005168735049664974, 0.383129745721817, 0.0495026670396328, 0.04239138960838318, 0.054959215223789215], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.03037344291806221, 0.020165447145700455, 0.02245425619184971, 0.849540114402771, 0.02157987281680107, 0.009206436574459076, 0.02304389514029026], "normal_n3_p1": [0.06049733981490135, 0.07563226670026779, 0.07427991926670074, 0.5966665744781494, 0.04235125705599785, 0.036719005554914474, 0.06652700155973434], "normal_n3_p2": [0.06436598300933838, 0.26644575595855713, 0.09146462380886078, 0.0524105466902256, 0.21104645729064941, 0.18315893411636353, 0.03181140869855881], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.021597275510430336, 0.01681474596261978, 0.01822161115705967, 0.019297342747449875, 0.002523896051570773, 0.003594489535316825, 0.9178609848022461], "reduce_n2_p1": [0.0876440480351448, 0.05469804257154465, 0.09654181450605392, 0.6936831474304199, 0.0013536389451473951, 0.024575451388955116, 0.022835716605186462], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03252927213907242, 0.0421941839158535, 0.03633763641119003, 0.02856626734137535, 0.7276415228843689, 0.028708985075354576, 0.061325427144765854], "reduce_n3_p1": [0.05034932866692543, 0.08837218582630157, 0.02768707275390625, 0.020160416141152382, 0.03198474273085594, 0.03729201853275299, 0.07861032336950302], "reduce_n3_p2": [0.34798508882522583, 0.023953242227435112, 0.23736990988254547, 0.1017783060669899, 0.06368070840835571, 0.09690088033676147, 0.018846098333597183], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.019502075389027596, 0.9040279984474182, 0.017073167487978935, 0.011424601078033447, 0.011994117870926857, 0.006031148135662079, 0.017346538603305817], "normal_n2_p1": [0.06298704445362091, 0.0719771459698677, 0.009035053662955761, 0.15401165187358856, 0.06315827369689941, 0.059633828699588776, 0.0890132263302803], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05620162561535835, 0.03580484911799431, 0.04207034781575203, 0.7423509359359741, 0.025194045156240463, 0.01757141202688217, 0.03645263984799385], "normal_n3_p1": [0.05097983032464981, 0.028608623892068863, 0.027530280873179436, 0.7135277986526489, 0.0421537309885025, 0.03127432242035866, 0.06756068766117096], "normal_n3_p2": [0.1154177188873291, 0.07795214653015137, 0.09775150567293167, 0.05915696918964386, 0.020483473315835, 0.4493142068386078, 0.022951621562242508], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02299492433667183, 0.021969737485051155, 0.021980399265885353, 0.024439314380288124, 0.005471004173159599, 0.00588731886819005, 0.8969610929489136], "reduce_n2_p1": [0.09344491362571716, 0.08212096244096756, 0.16338668763637543, 0.5445535182952881, 0.0029820601921528578, 0.04144197702407837, 0.03943134844303131], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.018721308559179306, 0.01889791339635849, 0.027321990579366684, 0.026338418945670128, 0.8321676850318909, 0.0270768404006958, 0.028332559391856194], "reduce_n3_p1": [0.08143728226423264, 0.1360623836517334, 0.03685976564884186, 0.026937397196888924, 0.038398221135139465, 0.040771834552288055, 0.11870075762271881], "reduce_n3_p2": [0.1808057576417923, 0.03012683428823948, 0.1757638156414032, 0.19976240396499634, 0.07406782358884811, 0.07019027322530746, 0.03328002989292145], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.019502075389027596, 0.9040279984474182, 0.017073167487978935, 0.011424601078033447, 0.011994117870926857, 0.006031148135662079, 0.017346538603305817], "normal_n2_p1": [0.06298704445362091, 0.0719771459698677, 0.009035053662955761, 0.15401165187358856, 0.06315827369689941, 0.059633828699588776, 0.0890132263302803], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05620162561535835, 0.03580484911799431, 0.04207034781575203, 0.7423509359359741, 0.025194045156240463, 0.01757141202688217, 0.03645263984799385], "normal_n3_p1": [0.05097983032464981, 0.028608623892068863, 0.027530280873179436, 0.7135277986526489, 0.0421537309885025, 0.03127432242035866, 0.06756068766117096], "normal_n3_p2": [0.1154177188873291, 0.07795214653015137, 0.09775150567293167, 0.05915696918964386, 0.020483473315835, 0.4493142068386078, 0.022951621562242508], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.02299492433667183, 0.021969737485051155, 0.021980399265885353, 0.024439314380288124, 0.005471004173159599, 0.00588731886819005, 0.8969610929489136], "reduce_n2_p1": [0.09344491362571716, 0.08212096244096756, 0.16338668763637543, 0.5445535182952881, 0.0029820601921528578, 0.04144197702407837, 0.03943134844303131], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.018721308559179306, 0.01889791339635849, 0.027321990579366684, 0.026338418945670128, 0.8321676850318909, 0.0270768404006958, 0.028332559391856194], "reduce_n3_p1": [0.08143728226423264, 0.1360623836517334, 0.03685976564884186, 0.026937397196888924, 0.038398221135139465, 0.040771834552288055, 0.11870075762271881], "reduce_n3_p2": [0.1808057576417923, 0.03012683428823948, 0.1757638156414032, 0.19976240396499634, 0.07406782358884811, 0.07019027322530746, 0.03328002989292145], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03435994312167168, 0.8246642351150513, 0.02895396389067173, 0.02282683365046978, 0.02248438447713852, 0.012196588329970837, 0.030030859634280205], "normal_n2_p1": [0.09197919815778732, 0.09528350085020065, 0.017020195722579956, 0.08756652474403381, 0.062231868505477905, 0.10140647739171982, 0.11950650066137314], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.10467250645160675, 0.060696784406900406, 0.06480222195386887, 0.5568025708198547, 0.036537401378154755, 0.03135683014988899, 0.07596124708652496], "normal_n3_p1": [0.07394357025623322, 0.033772844821214676, 0.03091443143785, 0.6568306684494019, 0.05656624957919121, 0.039263609796762466, 0.06785723567008972], "normal_n3_p2": [0.19193872809410095, 0.0576612614095211, 0.15644222497940063, 0.05343180522322655, 0.006699804216623306, 0.3145122528076172, 0.02113787829875946], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.033320654183626175, 0.04023512452840805, 0.03610626608133316, 0.04132157564163208, 0.014121830463409424, 0.012684231624007225, 0.8208615183830261], "reduce_n2_p1": [0.11329720169305801, 0.1628091186285019, 0.17791713774204254, 0.3812475800514221, 0.006414496339857578, 0.05380639061331749, 0.05409130081534386], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02793196775019169, 0.025155985727906227, 0.049312714487314224, 0.04775172844529152, 0.7150017619132996, 0.05950751155614853, 0.038265664130449295], "reduce_n3_p1": [0.11817733943462372, 0.17638851702213287, 0.041120775043964386, 0.03702810779213905, 0.06512141227722168, 0.06705416738986969, 0.3656351566314697], "reduce_n3_p2": [0.4801115095615387, 0.03616205230355263, 0.08398471772670746, 0.14992614090442657, 0.057446423918008804, 0.0458405502140522, 0.037410467863082886], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.03435994312167168, 0.8246642351150513, 0.02895396389067173, 0.02282683365046978, 0.02248438447713852, 0.012196588329970837, 0.030030859634280205], "normal_n2_p1": [0.09197919815778732, 0.09528350085020065, 0.017020195722579956, 0.08756652474403381, 0.062231868505477905, 0.10140647739171982, 0.11950650066137314], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.10467250645160675, 0.060696784406900406, 0.06480222195386887, 0.5568025708198547, 0.036537401378154755, 0.03135683014988899, 0.07596124708652496], "normal_n3_p1": [0.07394357025623322, 0.033772844821214676, 0.03091443143785, 0.6568306684494019, 0.05656624957919121, 0.039263609796762466, 0.06785723567008972], "normal_n3_p2": [0.19193872809410095, 0.0576612614095211, 0.15644222497940063, 0.05343180522322655, 0.006699804216623306, 0.3145122528076172, 0.02113787829875946], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.033320654183626175, 0.04023512452840805, 0.03610626608133316, 0.04132157564163208, 0.014121830463409424, 0.012684231624007225, 0.8208615183830261], "reduce_n2_p1": [0.11329720169305801, 0.1628091186285019, 0.17791713774204254, 0.3812475800514221, 0.006414496339857578, 0.05380639061331749, 0.05409130081534386], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02793196775019169, 0.025155985727906227, 0.049312714487314224, 0.04775172844529152, 0.7150017619132996, 0.05950751155614853, 0.038265664130449295], "reduce_n3_p1": [0.11817733943462372, 0.17638851702213287, 0.041120775043964386, 0.03702810779213905, 0.06512141227722168, 0.06705416738986969, 0.3656351566314697], "reduce_n3_p2": [0.4801115095615387, 0.03616205230355263, 0.08398471772670746, 0.14992614090442657, 0.057446423918008804, 0.0458405502140522, 0.037410467863082886], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0779147744178772, 0.5399521589279175, 0.06648431718349457, 0.07779722660779953, 0.05686555802822113, 0.03128335252404213, 0.07275108247995377], "normal_n2_p1": [0.07778937369585037, 0.06835070997476578, 0.023736273869872093, 0.06881775707006454, 0.09214950352907181, 0.1685301810503006, 0.12220549583435059], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.023776641115546227, 0.015543038956820965, 0.01917394995689392, 0.6711398363113403, 0.03263629972934723, 0.031009601429104805, 0.14854562282562256], "normal_n3_p1": [0.028152024373412132, 0.013946294784545898, 0.01581532135605812, 0.8004896640777588, 0.04783020541071892, 0.03511045500636101, 0.027689216658473015], "normal_n3_p2": [0.01829158142209053, 0.01242101565003395, 0.02513720840215683, 0.03968989849090576, 0.002665719948709011, 0.10237836092710495, 0.012007328681647778], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0344352051615715, 0.041528746485710144, 0.026365851983428, 0.03111194632947445, 0.0167225431650877, 0.015741389244794846, 0.8307793140411377], "reduce_n2_p1": [0.055206917226314545, 0.04693237692117691, 0.11491002142429352, 0.4973801076412201, 0.010105255991220474, 0.07134254276752472, 0.11844547092914581], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02025156281888485, 0.016721708700060844, 0.04291745647788048, 0.03963753581047058, 0.7932673096656799, 0.04135672375559807, 0.02384079247713089], "reduce_n3_p1": [0.12289015203714371, 0.15023832023143768, 0.04839279130101204, 0.05621054023504257, 0.10043122619390488, 0.10061559826135635, 0.31209105253219604], "reduce_n3_p2": [0.20454026758670807, 0.05326724052429199, 0.07134615629911423, 0.30040764808654785, 0.08841171115636826, 0.05274956673383713, 0.059550222009420395], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0779147744178772, 0.5399521589279175, 0.06648431718349457, 0.07779722660779953, 0.05686555802822113, 0.03128335252404213, 0.07275108247995377], "normal_n2_p1": [0.07778937369585037, 0.06835070997476578, 0.023736273869872093, 0.06881775707006454, 0.09214950352907181, 0.1685301810503006, 0.12220549583435059], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.023776641115546227, 0.015543038956820965, 0.01917394995689392, 0.6711398363113403, 0.03263629972934723, 0.031009601429104805, 0.14854562282562256], "normal_n3_p1": [0.028152024373412132, 0.013946294784545898, 0.01581532135605812, 0.8004896640777588, 0.04783020541071892, 0.03511045500636101, 0.027689216658473015], "normal_n3_p2": [0.01829158142209053, 0.01242101565003395, 0.02513720840215683, 0.03968989849090576, 0.002665719948709011, 0.10237836092710495, 0.012007328681647778], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.0344352051615715, 0.041528746485710144, 0.026365851983428, 0.03111194632947445, 0.0167225431650877, 0.015741389244794846, 0.8307793140411377], "reduce_n2_p1": [0.055206917226314545, 0.04693237692117691, 0.11491002142429352, 0.4973801076412201, 0.010105255991220474, 0.07134254276752472, 0.11844547092914581], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.02025156281888485, 0.016721708700060844, 0.04291745647788048, 0.03963753581047058, 0.7932673096656799, 0.04135672375559807, 0.02384079247713089], "reduce_n3_p1": [0.12289015203714371, 0.15023832023143768, 0.04839279130101204, 0.05621054023504257, 0.10043122619390488, 0.10061559826135635, 0.31209105253219604], "reduce_n3_p2": [0.20454026758670807, 0.05326724052429199, 0.07134615629911423, 0.30040764808654785, 0.08841171115636826, 0.05274956673383713, 0.059550222009420395], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09691041707992554, 0.4278924763202667, 0.08365889638662338, 0.0960782840847969, 0.05861300975084305, 0.0385688915848732, 0.09538291394710541], "normal_n2_p1": [0.09762609750032425, 0.08752156794071198, 0.04325895011425018, 0.06965869665145874, 0.16944627463817596, 0.2370976060628891, 0.16068513691425323], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.005210331175476313, 0.003751508193090558, 0.004546976648271084, 0.9356575608253479, 0.01073047611862421, 0.012140151113271713, 0.019046960398554802], "normal_n3_p1": [0.01127008255571127, 0.006392528302967548, 0.00765386875718832, 0.8983412981033325, 0.031822606921195984, 0.018123971298336983, 0.011313604190945625], "normal_n3_p2": [0.00822556484490633, 0.008490893989801407, 0.01233598217368126, 0.049567606300115585, 0.0028195204213261604, 0.0915280133485794, 0.011824103072285652], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05723145976662636, 0.06324945390224457, 0.03201548755168915, 0.035769034177064896, 0.029277272522449493, 0.027279404923319817, 0.7454944849014282], "reduce_n2_p1": [0.040285300463438034, 0.02780994027853012, 0.14417435228824615, 0.20412983000278473, 0.016084380447864532, 0.0798826664686203, 0.35569629073143005], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.028805073350667953, 0.02113916724920273, 0.0564475953578949, 0.046715494245290756, 0.7336035966873169, 0.04893926903605461, 0.03819381818175316], "reduce_n3_p1": [0.16421234607696533, 0.1471191644668579, 0.04830778017640114, 0.07962185889482498, 0.12874279916286469, 0.15671223402023315, 0.14642348885536194], "reduce_n3_p2": [0.08748611807823181, 0.03907051309943199, 0.03977549448609352, 0.5663915872573853, 0.07022452354431152, 0.03907804936170578, 0.03529786691069603], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.09691041707992554, 0.4278924763202667, 0.08365889638662338, 0.0960782840847969, 0.05861300975084305, 0.0385688915848732, 0.09538291394710541], "normal_n2_p1": [0.09762609750032425, 0.08752156794071198, 0.04325895011425018, 0.06965869665145874, 0.16944627463817596, 0.2370976060628891, 0.16068513691425323], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.005210331175476313, 0.003751508193090558, 0.004546976648271084, 0.9356575608253479, 0.01073047611862421, 0.012140151113271713, 0.019046960398554802], "normal_n3_p1": [0.01127008255571127, 0.006392528302967548, 0.00765386875718832, 0.8983412981033325, 0.031822606921195984, 0.018123971298336983, 0.011313604190945625], "normal_n3_p2": [0.00822556484490633, 0.008490893989801407, 0.01233598217368126, 0.049567606300115585, 0.0028195204213261604, 0.0915280133485794, 0.011824103072285652], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.05723145976662636, 0.06324945390224457, 0.03201548755168915, 0.035769034177064896, 0.029277272522449493, 0.027279404923319817, 0.7454944849014282], "reduce_n2_p1": [0.040285300463438034, 0.02780994027853012, 0.14417435228824615, 0.20412983000278473, 0.016084380447864532, 0.0798826664686203, 0.35569629073143005], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.028805073350667953, 0.02113916724920273, 0.0564475953578949, 0.046715494245290756, 0.7336035966873169, 0.04893926903605461, 0.03819381818175316], "reduce_n3_p1": [0.16421234607696533, 0.1471191644668579, 0.04830778017640114, 0.07962185889482498, 0.12874279916286469, 0.15671223402023315, 0.14642348885536194], "reduce_n3_p2": [0.08748611807823181, 0.03907051309943199, 0.03977549448609352, 0.5663915872573853, 0.07022452354431152, 0.03907804936170578, 0.03529786691069603], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0989556759595871, 0.4343644976615906, 0.07527851313352585, 0.08825112134218216, 0.03982158750295639, 0.04391565918922424, 0.11872173100709915], "normal_n2_p1": [0.1273353099822998, 0.09627178311347961, 0.06334631145000458, 0.06157199293375015, 0.06121031194925308, 0.27645641565322876, 0.23634393513202667], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.003341754199936986, 0.002979884622618556, 0.003486018627882004, 0.9579848647117615, 0.008404012769460678, 0.009190813638269901, 0.009485311806201935], "normal_n3_p1": [0.013204467482864857, 0.009398075751960278, 0.011751915328204632, 0.8611676096916199, 0.044250570237636566, 0.025107426568865776, 0.013724425807595253], "normal_n3_p2": [0.00815486628562212, 0.010808883234858513, 0.012398244813084602, 0.060152679681777954, 0.0045745461247861385, 0.09733641892671585, 0.01532792579382658], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1123834103345871, 0.12875808775424957, 0.05890032276511192, 0.05239914730191231, 0.053626883774995804, 0.05609102547168732, 0.5089417695999146], "reduce_n2_p1": [0.04406081512570381, 0.037161875516176224, 0.19424383342266083, 0.1430193930864334, 0.029606014490127563, 0.13568538427352905, 0.21665100753307343], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03281204029917717, 0.023609092459082603, 0.03727506846189499, 0.01520288921892643, 0.8120709657669067, 0.029146892949938774, 0.02879592403769493], "reduce_n3_p1": [0.2240249067544937, 0.12750829756259918, 0.05144113674759865, 0.07843025028705597, 0.16059784591197968, 0.11278101801872253, 0.06186797842383385], "reduce_n3_p2": [0.047191981226205826, 0.02239413373172283, 0.022806616500020027, 0.7869933843612671, 0.025808997452259064, 0.02613459713757038, 0.02102489024400711], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.0989556759595871, 0.4343644976615906, 0.07527851313352585, 0.08825112134218216, 0.03982158750295639, 0.04391565918922424, 0.11872173100709915], "normal_n2_p1": [0.1273353099822998, 0.09627178311347961, 0.06334631145000458, 0.06157199293375015, 0.06121031194925308, 0.27645641565322876, 0.23634393513202667], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.003341754199936986, 0.002979884622618556, 0.003486018627882004, 0.9579848647117615, 0.008404012769460678, 0.009190813638269901, 0.009485311806201935], "normal_n3_p1": [0.013204467482864857, 0.009398075751960278, 0.011751915328204632, 0.8611676096916199, 0.044250570237636566, 0.025107426568865776, 0.013724425807595253], "normal_n3_p2": [0.00815486628562212, 0.010808883234858513, 0.012398244813084602, 0.060152679681777954, 0.0045745461247861385, 0.09733641892671585, 0.01532792579382658], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.1123834103345871, 0.12875808775424957, 0.05890032276511192, 0.05239914730191231, 0.053626883774995804, 0.05609102547168732, 0.5089417695999146], "reduce_n2_p1": [0.04406081512570381, 0.037161875516176224, 0.19424383342266083, 0.1430193930864334, 0.029606014490127563, 0.13568538427352905, 0.21665100753307343], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.03281204029917717, 0.023609092459082603, 0.03727506846189499, 0.01520288921892643, 0.8120709657669067, 0.029146892949938774, 0.02879592403769493], "reduce_n3_p1": [0.2240249067544937, 0.12750829756259918, 0.05144113674759865, 0.07843025028705597, 0.16059784591197968, 0.11278101801872253, 0.06186797842383385], "reduce_n3_p2": [0.047191981226205826, 0.02239413373172283, 0.022806616500020027, 0.7869933843612671, 0.025808997452259064, 0.02613459713757038, 0.02102489024400711], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11064882576465607, 0.4677473306655884, 0.07658154517412186, 0.08382188528776169, 0.04052356258034706, 0.046629536896944046, 0.0833355113863945], "normal_n2_p1": [0.17328841984272003, 0.13394950330257416, 0.10493899881839752, 0.08032463490962982, 0.03636861965060234, 0.3330302834510803, 0.08876881003379822], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0038015427999198437, 0.004109734203666449, 0.004587169736623764, 0.9547581076622009, 0.009102800861001015, 0.00966092199087143, 0.008264132775366306], "normal_n3_p1": [0.01045180018991232, 0.009509427472949028, 0.011328272521495819, 0.8974636793136597, 0.03160928189754486, 0.016470564529299736, 0.010039078071713448], "normal_n3_p2": [0.019025234505534172, 0.02817690186202526, 0.027776693925261497, 0.10684997588396072, 0.013329960405826569, 0.22606533765792847, 0.037160053849220276], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.33011576533317566, 0.28343117237091064, 0.04393177479505539, 0.03164620324969292, 0.02092936262488365, 0.0643521398305893, 0.1891157180070877], "reduce_n2_p1": [0.05243748798966408, 0.05049961060285568, 0.11142724007368088, 0.14682245254516602, 0.037542615085840225, 0.32129040360450745, 0.16056138277053833], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06712944805622101, 0.04325152188539505, 0.047133103013038635, 0.012678899802267551, 0.7250170707702637, 0.022492244839668274, 0.05073923245072365], "reduce_n3_p1": [0.3217508792877197, 0.1327236443758011, 0.038503654301166534, 0.07152245193719864, 0.15921951830387115, 0.028543366119265556, 0.039960846304893494], "reduce_n3_p2": [0.09036514908075333, 0.0385531410574913, 0.03844347223639488, 0.6367928385734558, 0.036157745867967606, 0.046704888343811035, 0.03994764760136604], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.11064882576465607, 0.4677473306655884, 0.07658154517412186, 0.08382188528776169, 0.04052356258034706, 0.046629536896944046, 0.0833355113863945], "normal_n2_p1": [0.17328841984272003, 0.13394950330257416, 0.10493899881839752, 0.08032463490962982, 0.03636861965060234, 0.3330302834510803, 0.08876881003379822], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.0038015427999198437, 0.004109734203666449, 0.004587169736623764, 0.9547581076622009, 0.009102800861001015, 0.00966092199087143, 0.008264132775366306], "normal_n3_p1": [0.01045180018991232, 0.009509427472949028, 0.011328272521495819, 0.8974636793136597, 0.03160928189754486, 0.016470564529299736, 0.010039078071713448], "normal_n3_p2": [0.019025234505534172, 0.02817690186202526, 0.027776693925261497, 0.10684997588396072, 0.013329960405826569, 0.22606533765792847, 0.037160053849220276], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.33011576533317566, 0.28343117237091064, 0.04393177479505539, 0.03164620324969292, 0.02092936262488365, 0.0643521398305893, 0.1891157180070877], "reduce_n2_p1": [0.05243748798966408, 0.05049961060285568, 0.11142724007368088, 0.14682245254516602, 0.037542615085840225, 0.32129040360450745, 0.16056138277053833], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.06712944805622101, 0.04325152188539505, 0.047133103013038635, 0.012678899802267551, 0.7250170707702637, 0.022492244839668274, 0.05073923245072365], "reduce_n3_p1": [0.3217508792877197, 0.1327236443758011, 0.038503654301166534, 0.07152245193719864, 0.15921951830387115, 0.028543366119265556, 0.039960846304893494], "reduce_n3_p2": [0.09036514908075333, 0.0385531410574913, 0.03844347223639488, 0.6367928385734558, 0.036157745867967606, 0.046704888343811035, 0.03994764760136604], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08702407032251358, 0.7241169810295105, 0.058770276606082916, 0.029157912358641624, 0.023428918793797493, 0.02829878032207489, 0.021228238940238953], "normal_n2_p1": [0.12838391959667206, 0.15023545920848846, 0.12843331694602966, 0.06766261160373688, 0.02021051198244095, 0.43140459060668945, 0.04327807202935219], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.006078267935663462, 0.007461058907210827, 0.008031298406422138, 0.9289423823356628, 0.014480698853731155, 0.013498588465154171, 0.011418423615396023], "normal_n3_p1": [0.012682515196502209, 0.013721407391130924, 0.01564946211874485, 0.8647544980049133, 0.04045342653989792, 0.021060515195131302, 0.013365736231207848], "normal_n3_p2": [0.009536285884678364, 0.010989897884428501, 0.010630950331687927, 0.05862219259142876, 0.009494497440755367, 0.06963826715946198, 0.019146941602230072], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.7469639778137207, 0.12204478681087494, 0.016583086922764778, 0.01272091269493103, 0.008026858791708946, 0.018306883051991463, 0.05333232134580612], "reduce_n2_p1": [0.057062312960624695, 0.06621347367763519, 0.07414761185646057, 0.27262985706329346, 0.04192598536610603, 0.28358137607574463, 0.1720958650112152], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.20665720105171204, 0.09482473134994507, 0.05985093116760254, 0.021406909450888634, 0.4515553116798401, 0.026998812332749367, 0.07034283131361008], "reduce_n3_p1": [0.7555770874023438, 0.09049540013074875, 0.014604700729250908, 0.02288568578660488, 0.028624029830098152, 0.00872544851154089, 0.012791231274604797], "reduce_n3_p2": [0.2635553777217865, 0.08155658096075058, 0.075505331158638, 0.21863819658756256, 0.06734268367290497, 0.04913131892681122, 0.11327774077653885], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.08702407032251358, 0.7241169810295105, 0.058770276606082916, 0.029157912358641624, 0.023428918793797493, 0.02829878032207489, 0.021228238940238953], "normal_n2_p1": [0.12838391959667206, 0.15023545920848846, 0.12843331694602966, 0.06766261160373688, 0.02021051198244095, 0.43140459060668945, 0.04327807202935219], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.006078267935663462, 0.007461058907210827, 0.008031298406422138, 0.9289423823356628, 0.014480698853731155, 0.013498588465154171, 0.011418423615396023], "normal_n3_p1": [0.012682515196502209, 0.013721407391130924, 0.01564946211874485, 0.8647544980049133, 0.04045342653989792, 0.021060515195131302, 0.013365736231207848], "normal_n3_p2": [0.009536285884678364, 0.010989897884428501, 0.010630950331687927, 0.05862219259142876, 0.009494497440755367, 0.06963826715946198, 0.019146941602230072], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.7469639778137207, 0.12204478681087494, 0.016583086922764778, 0.01272091269493103, 0.008026858791708946, 0.018306883051991463, 0.05333232134580612], "reduce_n2_p1": [0.057062312960624695, 0.06621347367763519, 0.07414761185646057, 0.27262985706329346, 0.04192598536610603, 0.28358137607574463, 0.1720958650112152], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.20665720105171204, 0.09482473134994507, 0.05985093116760254, 0.021406909450888634, 0.4515553116798401, 0.026998812332749367, 0.07034283131361008], "reduce_n3_p1": [0.7555770874023438, 0.09049540013074875, 0.014604700729250908, 0.02288568578660488, 0.028624029830098152, 0.00872544851154089, 0.012791231274604797], "reduce_n3_p2": [0.2635553777217865, 0.08155658096075058, 0.075505331158638, 0.21863819658756256, 0.06734268367290497, 0.04913131892681122, 0.11327774077653885], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.20819468796253204, 0.5715102553367615, 0.08428047597408295, 0.026172850281000137, 0.02300228923559189, 0.0423925407230854, 0.014721740037202835], "normal_n2_p1": [0.2722770869731903, 0.24444450438022614, 0.3113666772842407, 0.059240445494651794, 0.018708083778619766, 0.03141927719116211, 0.03152827173471451], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.010636120103299618, 0.013412767089903355, 0.01433313637971878, 0.8859115839004517, 0.020732145756483078, 0.01952657476067543, 0.016296174377202988], "normal_n3_p1": [0.02893768437206745, 0.0336424820125103, 0.039500292390584946, 0.6457764506340027, 0.114050954580307, 0.05152199789881706, 0.034796055406332016], "normal_n3_p2": [0.004631014075130224, 0.004414188675582409, 0.004328557290136814, 0.02586156688630581, 0.005525948945432901, 0.01846548728644848, 0.008799496106803417], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.49404793977737427, 0.1359408050775528, 0.037692148238420486, 0.0318184569478035, 0.0228393767029047, 0.03813677281141281, 0.16708314418792725], "reduce_n2_p1": [0.037585798650979996, 0.02916300855576992, 0.025885935872793198, 0.0880216434597969, 0.026608116924762726, 0.7536032795906067, 0.029629383236169815], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0003506972861941904, 0.0009752737241797149, 0.009888562373816967, 0.003706921823322773, 0.9564153552055359, 0.006042090710252523, 0.016499359160661697], "reduce_n3_p1": [0.9790534377098083, 0.011534330435097218, 0.0017546371091157198, 0.0018815130461007357, 0.001774493372067809, 0.0011003867257386446, 0.0012577888555824757], "reduce_n3_p2": [0.002243920462206006, 0.010140827856957912, 0.02922956272959709, 0.41533565521240234, 0.10974031686782837, 0.046628229320049286, 0.020546989515423775], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.20819468796253204, 0.5715102553367615, 0.08428047597408295, 0.026172850281000137, 0.02300228923559189, 0.0423925407230854, 0.014721740037202835], "normal_n2_p1": [0.2722770869731903, 0.24444450438022614, 0.3113666772842407, 0.059240445494651794, 0.018708083778619766, 0.03141927719116211, 0.03152827173471451], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.010636120103299618, 0.013412767089903355, 0.01433313637971878, 0.8859115839004517, 0.020732145756483078, 0.01952657476067543, 0.016296174377202988], "normal_n3_p1": [0.02893768437206745, 0.0336424820125103, 0.039500292390584946, 0.6457764506340027, 0.114050954580307, 0.05152199789881706, 0.034796055406332016], "normal_n3_p2": [0.004631014075130224, 0.004414188675582409, 0.004328557290136814, 0.02586156688630581, 0.005525948945432901, 0.01846548728644848, 0.008799496106803417], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.49404793977737427, 0.1359408050775528, 0.037692148238420486, 0.0318184569478035, 0.0228393767029047, 0.03813677281141281, 0.16708314418792725], "reduce_n2_p1": [0.037585798650979996, 0.02916300855576992, 0.025885935872793198, 0.0880216434597969, 0.026608116924762726, 0.7536032795906067, 0.029629383236169815], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [0.0003506972861941904, 0.0009752737241797149, 0.009888562373816967, 0.003706921823322773, 0.9564153552055359, 0.006042090710252523, 0.016499359160661697], "reduce_n3_p1": [0.9790534377098083, 0.011534330435097218, 0.0017546371091157198, 0.0018815130461007357, 0.001774493372067809, 0.0011003867257386446, 0.0012577888555824757], "reduce_n3_p2": [0.002243920462206006, 0.010140827856957912, 0.02922956272959709, 0.41533565521240234, 0.10974031686782837, 0.046628229320049286, 0.020546989515423775], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.3763628900051117, 0.341886043548584, 0.10214895009994507, 0.030376723036170006, 0.030558666214346886, 0.06278117746114731, 0.015653355047106743], "normal_n2_p1": [0.2992454171180725, 0.2582581043243408, 0.280723512172699, 0.07510501146316528, 0.01724442094564438, 0.008796226233243942, 0.02661982923746109], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.026077156886458397, 0.03461098298430443, 0.037260789424180984, 0.7548126578330994, 0.03079221211373806, 0.03798387199640274, 0.02948315255343914], "normal_n3_p1": [0.047245826572179794, 0.041397273540496826, 0.048695892095565796, 0.3395443856716156, 0.26027366518974304, 0.1259959191083908, 0.06025632843375206], "normal_n3_p2": [0.008898641914129257, 0.007918617688119411, 0.007867176085710526, 0.04818812385201454, 0.010761156678199768, 0.02213837020099163, 0.01386230904608965], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4077262878417969, 0.09159160405397415, 0.04595493525266647, 0.04081951081752777, 0.033424586057662964, 0.03568024933338165, 0.2676013708114624], "reduce_n2_p1": [0.0448245033621788, 0.02602681703865528, 0.023724794387817383, 0.0690302848815918, 0.03242596983909607, 0.7723709344863892, 0.021548200398683548], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [1.7369899069308303e-05, 0.00011346284009050578, 0.003057024907320738, 0.001458227401599288, 0.9857616424560547, 0.0025664132554084063, 0.005364373791962862], "reduce_n3_p1": [0.9896088242530823, 0.005725209601223469, 0.0010538932401686907, 0.0009319500532001257, 0.0007414177525788546, 0.0007796132704243064, 0.0007071614963933825], "reduce_n3_p2": [0.00026998945395462215, 0.004542471840977669, 0.021248523145914078, 0.29933953285217285, 0.19986267387866974, 0.03935833275318146, 0.010249110870063305], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.3763628900051117, 0.341886043548584, 0.10214895009994507, 0.030376723036170006, 0.030558666214346886, 0.06278117746114731, 0.015653355047106743], "normal_n2_p1": [0.2992454171180725, 0.2582581043243408, 0.280723512172699, 0.07510501146316528, 0.01724442094564438, 0.008796226233243942, 0.02661982923746109], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.026077156886458397, 0.03461098298430443, 0.037260789424180984, 0.7548126578330994, 0.03079221211373806, 0.03798387199640274, 0.02948315255343914], "normal_n3_p1": [0.047245826572179794, 0.041397273540496826, 0.048695892095565796, 0.3395443856716156, 0.26027366518974304, 0.1259959191083908, 0.06025632843375206], "normal_n3_p2": [0.008898641914129257, 0.007918617688119411, 0.007867176085710526, 0.04818812385201454, 0.010761156678199768, 0.02213837020099163, 0.01386230904608965], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.4077262878417969, 0.09159160405397415, 0.04595493525266647, 0.04081951081752777, 0.033424586057662964, 0.03568024933338165, 0.2676013708114624], "reduce_n2_p1": [0.0448245033621788, 0.02602681703865528, 0.023724794387817383, 0.0690302848815918, 0.03242596983909607, 0.7723709344863892, 0.021548200398683548], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [1.7369899069308303e-05, 0.00011346284009050578, 0.003057024907320738, 0.001458227401599288, 0.9857616424560547, 0.0025664132554084063, 0.005364373791962862], "reduce_n3_p1": [0.9896088242530823, 0.005725209601223469, 0.0010538932401686907, 0.0009319500532001257, 0.0007414177525788546, 0.0007796132704243064, 0.0007071614963933825], "reduce_n3_p2": [0.00026998945395462215, 0.004542471840977669, 0.021248523145914078, 0.29933953285217285, 0.19986267387866974, 0.03935833275318146, 0.010249110870063305], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.32889214158058167, 0.2509434223175049, 0.1182108148932457, 0.04810042679309845, 0.05283202603459358, 0.11447960883378983, 0.022003479301929474], "normal_n2_p1": [0.17582330107688904, 0.29137521982192993, 0.30030205845832825, 0.11650387197732925, 0.021857090294361115, 0.006321760360151529, 0.036176372319459915], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05354556068778038, 0.07852321118116379, 0.0826982706785202, 0.5461382269859314, 0.03705311939120293, 0.07703834027051926, 0.045607734471559525], "normal_n3_p1": [0.02721904218196869, 0.01941538043320179, 0.02489754743874073, 0.5161871314048767, 0.24749626219272614, 0.08523336797952652, 0.03389374166727066], "normal_n3_p2": [0.016234969720244408, 0.015123303979635239, 0.014965622685849667, 0.07446224987506866, 0.017803708091378212, 0.030265428125858307, 0.02074076607823372], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.44060537219047546, 0.06212489679455757, 0.03085262142121792, 0.03920251503586769, 0.03489096090197563, 0.025975927710533142, 0.31516769528388977], "reduce_n2_p1": [0.0880943015217781, 0.04846302419900894, 0.041773512959480286, 0.1720985323190689, 0.07546741515398026, 0.5095064043998718, 0.0381440632045269], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [9.209723430103622e-06, 8.156596595654264e-05, 0.002316887956112623, 0.0013938777847215533, 0.9887741804122925, 0.0022802003659307957, 0.0037948847748339176], "reduce_n3_p1": [0.9864934682846069, 0.006531793624162674, 0.0016312806401401758, 0.0013171005994081497, 0.0009597924072295427, 0.0014479102101176977, 0.0010916836326941848], "reduce_n3_p2": [0.00017774324805941433, 0.004629814997315407, 0.022810867056250572, 0.5723258256912231, 0.16688929498195648, 0.044767770916223526, 0.009637558832764626], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.32889214158058167, 0.2509434223175049, 0.1182108148932457, 0.04810042679309845, 0.05283202603459358, 0.11447960883378983, 0.022003479301929474], "normal_n2_p1": [0.17582330107688904, 0.29137521982192993, 0.30030205845832825, 0.11650387197732925, 0.021857090294361115, 0.006321760360151529, 0.036176372319459915], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.05354556068778038, 0.07852321118116379, 0.0826982706785202, 0.5461382269859314, 0.03705311939120293, 0.07703834027051926, 0.045607734471559525], "normal_n3_p1": [0.02721904218196869, 0.01941538043320179, 0.02489754743874073, 0.5161871314048767, 0.24749626219272614, 0.08523336797952652, 0.03389374166727066], "normal_n3_p2": [0.016234969720244408, 0.015123303979635239, 0.014965622685849667, 0.07446224987506866, 0.017803708091378212, 0.030265428125858307, 0.02074076607823372], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.44060537219047546, 0.06212489679455757, 0.03085262142121792, 0.03920251503586769, 0.03489096090197563, 0.025975927710533142, 0.31516769528388977], "reduce_n2_p1": [0.0880943015217781, 0.04846302419900894, 0.041773512959480286, 0.1720985323190689, 0.07546741515398026, 0.5095064043998718, 0.0381440632045269], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [9.209723430103622e-06, 8.156596595654264e-05, 0.002316887956112623, 0.0013938777847215533, 0.9887741804122925, 0.0022802003659307957, 0.0037948847748339176], "reduce_n3_p1": [0.9864934682846069, 0.006531793624162674, 0.0016312806401401758, 0.0013171005994081497, 0.0009597924072295427, 0.0014479102101176977, 0.0010916836326941848], "reduce_n3_p2": [0.00017774324805941433, 0.004629814997315407, 0.022810867056250572, 0.5723258256912231, 0.16688929498195648, 0.044767770916223526, 0.009637558832764626], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2708105444908142, 0.24793285131454468, 0.12363288551568985, 0.06862056255340576, 0.0736033022403717, 0.10225731879472733, 0.03570251539349556], "normal_n2_p1": [0.11739613860845566, 0.3421599268913269, 0.24491775035858154, 0.10795914381742477, 0.031210213899612427, 0.007402914576232433, 0.06144222989678383], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009806391783058643, 0.00909428671002388, 0.005486251786351204, 0.9364243149757385, 0.011391496285796165, 0.017230968922376633, 0.005925784818828106], "normal_n3_p1": [0.008834173902869225, 0.007204709108918905, 0.008558705449104309, 0.9004565477371216, 0.024684814736247063, 0.024461200460791588, 0.011540228500962257], "normal_n3_p2": [0.0222136490046978, 0.02375340834259987, 0.02178381383419037, 0.05562376603484154, 0.01872539147734642, 0.03561700880527496, 0.02217067778110504], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.19492703676223755, 0.07671689987182617, 0.03876802325248718, 0.0502442941069603, 0.06042421981692314, 0.033892299979925156, 0.486624151468277], "reduce_n2_p1": [0.07637948542833328, 0.046896643936634064, 0.053969502449035645, 0.4291834235191345, 0.13523954153060913, 0.14039818942546844, 0.07008993625640869], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [1.6905427401070483e-05, 0.0001495802862336859, 0.0027741878293454647, 0.0020342289935797453, 0.986228346824646, 0.002946725580841303, 0.0039515383541584015], "reduce_n3_p1": [0.9722208380699158, 0.011074615642428398, 0.0038217550609260798, 0.0029986072331666946, 0.002091609174385667, 0.003911987878382206, 0.0026436015032231808], "reduce_n3_p2": [0.0002959069097414613, 0.0076857879757881165, 0.03454061225056648, 0.32941508293151855, 0.41344910860061646, 0.058532699942588806, 0.013991041108965874], "reduce_n3_switch": [1.0, 1.0, 1.0]}
{"normal_n2_p0": [0.2708105444908142, 0.24793285131454468, 0.12363288551568985, 0.06862056255340576, 0.0736033022403717, 0.10225731879472733, 0.03570251539349556], "normal_n2_p1": [0.11739613860845566, 0.3421599268913269, 0.24491775035858154, 0.10795914381742477, 0.031210213899612427, 0.007402914576232433, 0.06144222989678383], "normal_n2_switch": [1.0, 1.0], "normal_n3_p0": [0.009806391783058643, 0.00909428671002388, 0.005486251786351204, 0.9364243149757385, 0.011391496285796165, 0.017230968922376633, 0.005925784818828106], "normal_n3_p1": [0.008834173902869225, 0.007204709108918905, 0.008558705449104309, 0.9004565477371216, 0.024684814736247063, 0.024461200460791588, 0.011540228500962257], "normal_n3_p2": [0.0222136490046978, 0.02375340834259987, 0.02178381383419037, 0.05562376603484154, 0.01872539147734642, 0.03561700880527496, 0.02217067778110504], "normal_n3_switch": [1.0, 1.0, 1.0], "reduce_n2_p0": [0.19492703676223755, 0.07671689987182617, 0.03876802325248718, 0.0502442941069603, 0.06042421981692314, 0.033892299979925156, 0.486624151468277], "reduce_n2_p1": [0.07637948542833328, 0.046896643936634064, 0.053969502449035645, 0.4291834235191345, 0.13523954153060913, 0.14039818942546844, 0.07008993625640869], "reduce_n2_switch": [1.0, 1.0], "reduce_n3_p0": [1.6905427401070483e-05, 0.0001495802862336859, 0.0027741878293454647, 0.0020342289935797453, 0.986228346824646, 0.002946725580841303, 0.0039515383541584015], "reduce_n3_p1": [0.9722208380699158, 0.011074615642428398, 0.0038217550609260798, 0.0029986072331666946, 0.002091609174385667, 0.003911987878382206, 0.0026436015032231808], "reduce_n3_p2": [0.0002959069097414613, 0.0076857879757881165, 0.03454061225056648, 0.32941508293151855, 0.41344910860061646, 0.058532699942588806, 0.013991041108965874], "reduce_n3_switch": [1.0, 1.0, 1.0]}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,404 +0,0 @@
{"LayerChoice1": [0.33303385972976685, 0.33365142345428467], "LayerChoice2": [0.33317679166793823, 0.3332219123840332], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06329967826604843, 0.46858832240104675], "LayerChoice2": [0.0633377805352211, 0.46806854009628296], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06329967826604843, 0.46858832240104675], "LayerChoice2": [0.0633377805352211, 0.46806854009628296], "InputChoice3": [1.0]}
{"LayerChoice1": [0.038168638944625854, 0.22451482713222504], "LayerChoice2": [0.04848404973745346, 0.4550222158432007], "InputChoice3": [1.0]}
{"LayerChoice1": [0.038168638944625854, 0.22451482713222504], "LayerChoice2": [0.04848404973745346, 0.4550222158432007], "InputChoice3": [1.0]}
{"LayerChoice1": [0.02508820779621601, 0.037342410534620285], "LayerChoice2": [0.06422881036996841, 0.6246528029441833], "InputChoice3": [1.0]}
{"LayerChoice1": [0.02508820779621601, 0.037342410534620285], "LayerChoice2": [0.06422881036996841, 0.6246528029441833], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05361352115869522, 0.04032162204384804], "LayerChoice2": [0.09336375445127487, 0.7336521744728088], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05361352115869522, 0.04032162204384804], "LayerChoice2": [0.09336375445127487, 0.7336521744728088], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08850166201591492, 0.1985195428133011], "LayerChoice2": [0.07740693539381027, 0.813228964805603], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08850166201591492, 0.1985195428133011], "LayerChoice2": [0.07740693539381027, 0.813228964805603], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0759211927652359, 0.6348733901977539], "LayerChoice2": [0.15006843209266663, 0.6239568591117859], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0759211927652359, 0.6348733901977539], "LayerChoice2": [0.15006843209266663, 0.6239568591117859], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07353738695383072, 0.7436693906784058], "LayerChoice2": [0.15893085300922394, 0.4332864582538605], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07353738695383072, 0.7436693906784058], "LayerChoice2": [0.15893085300922394, 0.4332864582538605], "InputChoice3": [1.0]}
{"LayerChoice1": [0.16385474801063538, 0.6567466855049133], "LayerChoice2": [0.1074180006980896, 0.35150426626205444], "InputChoice3": [1.0]}
{"LayerChoice1": [0.16385474801063538, 0.6567466855049133], "LayerChoice2": [0.1074180006980896, 0.35150426626205444], "InputChoice3": [1.0]}
{"LayerChoice1": [0.23036250472068787, 0.5987453460693359], "LayerChoice2": [0.3041315972805023, 0.15263618528842926], "InputChoice3": [1.0]}
{"LayerChoice1": [0.23036250472068787, 0.5987453460693359], "LayerChoice2": [0.3041315972805023, 0.15263618528842926], "InputChoice3": [1.0]}
{"LayerChoice1": [0.22888736426830292, 0.5978273153305054], "LayerChoice2": [0.4391118884086609, 0.3091511130332947], "InputChoice3": [1.0]}
{"LayerChoice1": [0.22888736426830292, 0.5978273153305054], "LayerChoice2": [0.4391118884086609, 0.3091511130332947], "InputChoice3": [1.0]}
{"LayerChoice1": [0.18191704154014587, 0.5229460597038269], "LayerChoice2": [0.11822432279586792, 0.7401145696640015], "InputChoice3": [1.0]}
{"LayerChoice1": [0.18191704154014587, 0.5229460597038269], "LayerChoice2": [0.11822432279586792, 0.7401145696640015], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11211471259593964, 0.5747869610786438], "LayerChoice2": [0.06553730368614197, 0.8027997016906738], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11211471259593964, 0.5747869610786438], "LayerChoice2": [0.06553730368614197, 0.8027997016906738], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1686951071023941, 0.527478039264679], "LayerChoice2": [0.05474618077278137, 0.772398829460144], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1686951071023941, 0.527478039264679], "LayerChoice2": [0.05474618077278137, 0.772398829460144], "InputChoice3": [1.0]}
{"LayerChoice1": [0.052188433706760406, 0.7765627503395081], "LayerChoice2": [0.07887477427721024, 0.7035753726959229], "InputChoice3": [1.0]}
{"LayerChoice1": [0.052188433706760406, 0.7765627503395081], "LayerChoice2": [0.07887477427721024, 0.7035753726959229], "InputChoice3": [1.0]}
{"LayerChoice1": [0.03563439100980759, 0.8171244859695435], "LayerChoice2": [0.08151999861001968, 0.6454429626464844], "InputChoice3": [1.0]}
{"LayerChoice1": [0.03563439100980759, 0.8171244859695435], "LayerChoice2": [0.08151999861001968, 0.6454429626464844], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04347147047519684, 0.8181121945381165], "LayerChoice2": [0.07140019536018372, 0.6777830719947815], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04347147047519684, 0.8181121945381165], "LayerChoice2": [0.07140019536018372, 0.6777830719947815], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07639579474925995, 0.7925245761871338], "LayerChoice2": [0.07980816811323166, 0.7627099752426147], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07639579474925995, 0.7925245761871338], "LayerChoice2": [0.07980816811323166, 0.7627099752426147], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1310330033302307, 0.72065669298172], "LayerChoice2": [0.10376950353384018, 0.7314956784248352], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1310330033302307, 0.72065669298172], "LayerChoice2": [0.10376950353384018, 0.7314956784248352], "InputChoice3": [1.0]}
{"LayerChoice1": [0.22687408328056335, 0.5655298829078674], "LayerChoice2": [0.11278445273637772, 0.6680406928062439], "InputChoice3": [1.0]}
{"LayerChoice1": [0.22687408328056335, 0.5655298829078674], "LayerChoice2": [0.11278445273637772, 0.6680406928062439], "InputChoice3": [1.0]}
{"LayerChoice1": [0.16509674489498138, 0.570340096950531], "LayerChoice2": [0.11700739711523056, 0.6043309569358826], "InputChoice3": [1.0]}
{"LayerChoice1": [0.16509674489498138, 0.570340096950531], "LayerChoice2": [0.11700739711523056, 0.6043309569358826], "InputChoice3": [1.0]}
{"LayerChoice1": [0.26261213421821594, 0.5194389224052429], "LayerChoice2": [0.1657758206129074, 0.5273735523223877], "InputChoice3": [1.0]}
{"LayerChoice1": [0.26261213421821594, 0.5194389224052429], "LayerChoice2": [0.1657758206129074, 0.5273735523223877], "InputChoice3": [1.0]}
{"LayerChoice1": [0.30028459429740906, 0.5742053389549255], "LayerChoice2": [0.1409236192703247, 0.6731138825416565], "InputChoice3": [1.0]}
{"LayerChoice1": [0.30028459429740906, 0.5742053389549255], "LayerChoice2": [0.1409236192703247, 0.6731138825416565], "InputChoice3": [1.0]}
{"LayerChoice1": [0.3066447675228119, 0.5704553127288818], "LayerChoice2": [0.0796108990907669, 0.7682392001152039], "InputChoice3": [1.0]}
{"LayerChoice1": [0.3066447675228119, 0.5704553127288818], "LayerChoice2": [0.0796108990907669, 0.7682392001152039], "InputChoice3": [1.0]}
{"LayerChoice1": [0.7792012095451355, 0.12127110362052917], "LayerChoice2": [0.15048976242542267, 0.6069636344909668], "InputChoice3": [1.0]}
{"LayerChoice1": [0.7792012095451355, 0.12127110362052917], "LayerChoice2": [0.15048976242542267, 0.6069636344909668], "InputChoice3": [1.0]}
{"LayerChoice1": [0.7139069437980652, 0.12913981080055237], "LayerChoice2": [0.2919028699398041, 0.3665165603160858], "InputChoice3": [1.0]}
{"LayerChoice1": [0.7139069437980652, 0.12913981080055237], "LayerChoice2": [0.2919028699398041, 0.3665165603160858], "InputChoice3": [1.0]}
{"LayerChoice1": [0.20545528829097748, 0.47078070044517517], "LayerChoice2": [0.08821224421262741, 0.5260167717933655], "InputChoice3": [1.0]}
{"LayerChoice1": [0.20545528829097748, 0.47078070044517517], "LayerChoice2": [0.08821224421262741, 0.5260167717933655], "InputChoice3": [1.0]}
{"LayerChoice1": [0.019223887473344803, 0.8337393999099731], "LayerChoice2": [0.1766114979982376, 0.35277029871940613], "InputChoice3": [1.0]}
{"LayerChoice1": [0.019223887473344803, 0.8337393999099731], "LayerChoice2": [0.1766114979982376, 0.35277029871940613], "InputChoice3": [1.0]}
{"LayerChoice1": [0.009210022166371346, 0.90201735496521], "LayerChoice2": [0.2928157448768616, 0.4374502897262573], "InputChoice3": [1.0]}
{"LayerChoice1": [0.009210022166371346, 0.90201735496521], "LayerChoice2": [0.2928157448768616, 0.4374502897262573], "InputChoice3": [1.0]}
{"LayerChoice1": [0.01458686962723732, 0.8854896426200867], "LayerChoice2": [0.17796434462070465, 0.6627859473228455], "InputChoice3": [1.0]}
{"LayerChoice1": [0.01458686962723732, 0.8854896426200867], "LayerChoice2": [0.17796434462070465, 0.6627859473228455], "InputChoice3": [1.0]}
{"LayerChoice1": [0.03862690553069115, 0.8107244372367859], "LayerChoice2": [0.14433474838733673, 0.6301719546318054], "InputChoice3": [1.0]}
{"LayerChoice1": [0.03862690553069115, 0.8107244372367859], "LayerChoice2": [0.14433474838733673, 0.6301719546318054], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10608088225126266, 0.6725364327430725], "LayerChoice2": [0.2214972972869873, 0.4886084794998169], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10608088225126266, 0.6725364327430725], "LayerChoice2": [0.2214972972869873, 0.4886084794998169], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1914406418800354, 0.45023542642593384], "LayerChoice2": [0.4753625988960266, 0.23293089866638184], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1914406418800354, 0.45023542642593384], "LayerChoice2": [0.4753625988960266, 0.23293089866638184], "InputChoice3": [1.0]}
{"LayerChoice1": [0.031214749440550804, 0.7660529613494873], "LayerChoice2": [0.5349816679954529, 0.1699165552854538], "InputChoice3": [1.0]}
{"LayerChoice1": [0.031214749440550804, 0.7660529613494873], "LayerChoice2": [0.5349816679954529, 0.1699165552854538], "InputChoice3": [1.0]}
{"LayerChoice1": [0.014971960335969925, 0.7501588463783264], "LayerChoice2": [0.2697770595550537, 0.3997648060321808], "InputChoice3": [1.0]}
{"LayerChoice1": [0.014971960335969925, 0.7501588463783264], "LayerChoice2": [0.2697770595550537, 0.3997648060321808], "InputChoice3": [1.0]}
{"LayerChoice1": [0.01808055490255356, 0.8439069986343384], "LayerChoice2": [0.21241988241672516, 0.5709646344184875], "InputChoice3": [1.0]}
{"LayerChoice1": [0.01808055490255356, 0.8439069986343384], "LayerChoice2": [0.21241988241672516, 0.5709646344184875], "InputChoice3": [1.0]}
{"LayerChoice1": [0.03367498144507408, 0.8554152250289917], "LayerChoice2": [0.11188451200723648, 0.7057580351829529], "InputChoice3": [1.0]}
{"LayerChoice1": [0.03367498144507408, 0.8554152250289917], "LayerChoice2": [0.11188451200723648, 0.7057580351829529], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08346123993396759, 0.7666478157043457], "LayerChoice2": [0.14157135784626007, 0.5989935994148254], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08346123993396759, 0.7666478157043457], "LayerChoice2": [0.14157135784626007, 0.5989935994148254], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1201670840382576, 0.6903108954429626], "LayerChoice2": [0.3238759934902191, 0.3850347101688385], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1201670840382576, 0.6903108954429626], "LayerChoice2": [0.3238759934902191, 0.3850347101688385], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14280332624912262, 0.6686860918998718], "LayerChoice2": [0.10231971740722656, 0.6566139459609985], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14280332624912262, 0.6686860918998718], "LayerChoice2": [0.10231971740722656, 0.6566139459609985], "InputChoice3": [1.0]}
{"LayerChoice1": [0.19022157788276672, 0.53080153465271], "LayerChoice2": [0.10622354596853256, 0.6459177136421204], "InputChoice3": [1.0]}
{"LayerChoice1": [0.19022157788276672, 0.53080153465271], "LayerChoice2": [0.10622354596853256, 0.6459177136421204], "InputChoice3": [1.0]}
{"LayerChoice1": [0.15691469609737396, 0.6472810506820679], "LayerChoice2": [0.10121680796146393, 0.6399500370025635], "InputChoice3": [1.0]}
{"LayerChoice1": [0.15691469609737396, 0.6472810506820679], "LayerChoice2": [0.10121680796146393, 0.6399500370025635], "InputChoice3": [1.0]}
{"LayerChoice1": [0.13625960052013397, 0.6911993622779846], "LayerChoice2": [0.12027818709611893, 0.6434657573699951], "InputChoice3": [1.0]}
{"LayerChoice1": [0.13625960052013397, 0.6911993622779846], "LayerChoice2": [0.12027818709611893, 0.6434657573699951], "InputChoice3": [1.0]}
{"LayerChoice1": [0.18104414641857147, 0.5696691870689392], "LayerChoice2": [0.1705198884010315, 0.6293962597846985], "InputChoice3": [1.0]}
{"LayerChoice1": [0.18104414641857147, 0.5696691870689392], "LayerChoice2": [0.1705198884010315, 0.6293962597846985], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1528697907924652, 0.5095766186714172], "LayerChoice2": [0.25417178869247437, 0.41922205686569214], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1528697907924652, 0.5095766186714172], "LayerChoice2": [0.25417178869247437, 0.41922205686569214], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08991081267595291, 0.7037409543991089], "LayerChoice2": [0.05129142478108406, 0.7628366351127625], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08991081267595291, 0.7037409543991089], "LayerChoice2": [0.05129142478108406, 0.7628366351127625], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08047178387641907, 0.7342687845230103], "LayerChoice2": [0.02631423808634281, 0.8324110507965088], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08047178387641907, 0.7342687845230103], "LayerChoice2": [0.02631423808634281, 0.8324110507965088], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10130685567855835, 0.7218576669692993], "LayerChoice2": [0.03074035607278347, 0.8406283259391785], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10130685567855835, 0.7218576669692993], "LayerChoice2": [0.03074035607278347, 0.8406283259391785], "InputChoice3": [1.0]}
{"LayerChoice1": [0.13401024043560028, 0.7265385389328003], "LayerChoice2": [0.055438779294490814, 0.7466608881950378], "InputChoice3": [1.0]}
{"LayerChoice1": [0.13401024043560028, 0.7265385389328003], "LayerChoice2": [0.055438779294490814, 0.7466608881950378], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1962628960609436, 0.6919565200805664], "LayerChoice2": [0.16169801354408264, 0.6295908689498901], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1962628960609436, 0.6919565200805664], "LayerChoice2": [0.16169801354408264, 0.6295908689498901], "InputChoice3": [1.0]}
{"LayerChoice1": [0.21730685234069824, 0.6557342410087585], "LayerChoice2": [0.32082217931747437, 0.38647472858428955], "InputChoice3": [1.0]}
{"LayerChoice1": [0.21730685234069824, 0.6557342410087585], "LayerChoice2": [0.32082217931747437, 0.38647472858428955], "InputChoice3": [1.0]}
{"LayerChoice1": [0.32433125376701355, 0.4461268484592438], "LayerChoice2": [0.28914403915405273, 0.30122798681259155], "InputChoice3": [1.0]}
{"LayerChoice1": [0.32433125376701355, 0.4461268484592438], "LayerChoice2": [0.28914403915405273, 0.30122798681259155], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04016859456896782, 0.6384012699127197], "LayerChoice2": [0.034621234983205795, 0.7147249579429626], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04016859456896782, 0.6384012699127197], "LayerChoice2": [0.034621234983205795, 0.7147249579429626], "InputChoice3": [1.0]}
{"LayerChoice1": [0.018416572362184525, 0.7903190851211548], "LayerChoice2": [0.015299228951334953, 0.8881582021713257], "InputChoice3": [1.0]}
{"LayerChoice1": [0.018416572362184525, 0.7903190851211548], "LayerChoice2": [0.015299228951334953, 0.8881582021713257], "InputChoice3": [1.0]}
{"LayerChoice1": [0.021249568089842796, 0.824743390083313], "LayerChoice2": [0.015672918409109116, 0.9121659398078918], "InputChoice3": [1.0]}
{"LayerChoice1": [0.021249568089842796, 0.824743390083313], "LayerChoice2": [0.015672918409109116, 0.9121659398078918], "InputChoice3": [1.0]}
{"LayerChoice1": [0.049303341656923294, 0.7266225814819336], "LayerChoice2": [0.02390681765973568, 0.8370040655136108], "InputChoice3": [1.0]}
{"LayerChoice1": [0.049303341656923294, 0.7266225814819336], "LayerChoice2": [0.02390681765973568, 0.8370040655136108], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09781715273857117, 0.70831698179245], "LayerChoice2": [0.040655381977558136, 0.7848604917526245], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09781715273857117, 0.70831698179245], "LayerChoice2": [0.040655381977558136, 0.7848604917526245], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1415957510471344, 0.6654679179191589], "LayerChoice2": [0.09076738357543945, 0.7247870564460754], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1415957510471344, 0.6654679179191589], "LayerChoice2": [0.09076738357543945, 0.7247870564460754], "InputChoice3": [1.0]}
{"LayerChoice1": [0.2668002247810364, 0.5583599805831909], "LayerChoice2": [0.12730936706066132, 0.6896830201148987], "InputChoice3": [1.0]}
{"LayerChoice1": [0.2668002247810364, 0.5583599805831909], "LayerChoice2": [0.12730936706066132, 0.6896830201148987], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09824324399232864, 0.7921178936958313], "LayerChoice2": [0.0886036679148674, 0.7640711069107056], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09824324399232864, 0.7921178936958313], "LayerChoice2": [0.0886036679148674, 0.7640711069107056], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07523686438798904, 0.8149453401565552], "LayerChoice2": [0.10662204772233963, 0.6353797912597656], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07523686438798904, 0.8149453401565552], "LayerChoice2": [0.10662204772233963, 0.6353797912597656], "InputChoice3": [1.0]}
{"LayerChoice1": [0.12548035383224487, 0.696570098400116], "LayerChoice2": [0.25775405764579773, 0.35434967279434204], "InputChoice3": [1.0]}
{"LayerChoice1": [0.12548035383224487, 0.696570098400116], "LayerChoice2": [0.25775405764579773, 0.35434967279434204], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10561606287956238, 0.6449835896492004], "LayerChoice2": [0.5654769539833069, 0.15865042805671692], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10561606287956238, 0.6449835896492004], "LayerChoice2": [0.5654769539833069, 0.15865042805671692], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10857930779457092, 0.680277943611145], "LayerChoice2": [0.4674833416938782, 0.28979867696762085], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10857930779457092, 0.680277943611145], "LayerChoice2": [0.4674833416938782, 0.28979867696762085], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05319559946656227, 0.8161981105804443], "LayerChoice2": [0.04492109641432762, 0.7383846044540405], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05319559946656227, 0.8161981105804443], "LayerChoice2": [0.04492109641432762, 0.7383846044540405], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06686674803495407, 0.7800070643424988], "LayerChoice2": [0.012743648141622543, 0.887523889541626], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06686674803495407, 0.7800070643424988], "LayerChoice2": [0.012743648141622543, 0.887523889541626], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14069271087646484, 0.5618377327919006], "LayerChoice2": [0.010300993919372559, 0.906731367111206], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14069271087646484, 0.5618377327919006], "LayerChoice2": [0.010300993919372559, 0.906731367111206], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10457900911569595, 0.3678364157676697], "LayerChoice2": [0.015024283900856972, 0.85854172706604], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10457900911569595, 0.3678364157676697], "LayerChoice2": [0.015024283900856972, 0.85854172706604], "InputChoice3": [1.0]}
{"LayerChoice1": [0.19650956988334656, 0.62959223985672], "LayerChoice2": [0.030801083892583847, 0.7948137521743774], "InputChoice3": [1.0]}
{"LayerChoice1": [0.19650956988334656, 0.62959223985672], "LayerChoice2": [0.030801083892583847, 0.7948137521743774], "InputChoice3": [1.0]}
{"LayerChoice1": [0.3441852629184723, 0.5531765818595886], "LayerChoice2": [0.06613675504922867, 0.7492872476577759], "InputChoice3": [1.0]}
{"LayerChoice1": [0.3441852629184723, 0.5531765818595886], "LayerChoice2": [0.06613675504922867, 0.7492872476577759], "InputChoice3": [1.0]}
{"LayerChoice1": [0.5425642132759094, 0.35770171880722046], "LayerChoice2": [0.1468670666217804, 0.6231718063354492], "InputChoice3": [1.0]}
{"LayerChoice1": [0.5425642132759094, 0.35770171880722046], "LayerChoice2": [0.1468670666217804, 0.6231718063354492], "InputChoice3": [1.0]}
{"LayerChoice1": [0.026226254180073738, 0.9156643152236938], "LayerChoice2": [0.29139870405197144, 0.372767835855484], "InputChoice3": [1.0]}
{"LayerChoice1": [0.026226254180073738, 0.9156643152236938], "LayerChoice2": [0.29139870405197144, 0.372767835855484], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0074335201643407345, 0.9248986840248108], "LayerChoice2": [0.20272912085056305, 0.5752497911453247], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0074335201643407345, 0.9248986840248108], "LayerChoice2": [0.20272912085056305, 0.5752497911453247], "InputChoice3": [1.0]}
{"LayerChoice1": [0.008600681088864803, 0.8679482340812683], "LayerChoice2": [0.06465043127536774, 0.7761555910110474], "InputChoice3": [1.0]}
{"LayerChoice1": [0.008600681088864803, 0.8679482340812683], "LayerChoice2": [0.06465043127536774, 0.7761555910110474], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0181573536247015, 0.7966891527175903], "LayerChoice2": [0.05745239555835724, 0.7996615767478943], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0181573536247015, 0.7966891527175903], "LayerChoice2": [0.05745239555835724, 0.7996615767478943], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04594119265675545, 0.6915073394775391], "LayerChoice2": [0.0629364550113678, 0.6564602255821228], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04594119265675545, 0.6915073394775391], "LayerChoice2": [0.0629364550113678, 0.6564602255821228], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08745427429676056, 0.43532249331474304], "LayerChoice2": [0.12082865089178085, 0.607952356338501], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08745427429676056, 0.43532249331474304], "LayerChoice2": [0.12082865089178085, 0.607952356338501], "InputChoice3": [1.0]}
{"LayerChoice1": [0.12856197357177734, 0.7680091857910156], "LayerChoice2": [0.1829998642206192, 0.642073392868042], "InputChoice3": [1.0]}
{"LayerChoice1": [0.12856197357177734, 0.7680091857910156], "LayerChoice2": [0.1829998642206192, 0.642073392868042], "InputChoice3": [1.0]}
{"LayerChoice1": [0.26079753041267395, 0.6731968522071838], "LayerChoice2": [0.10597056150436401, 0.6870109438896179], "InputChoice3": [1.0]}
{"LayerChoice1": [0.26079753041267395, 0.6731968522071838], "LayerChoice2": [0.10597056150436401, 0.6870109438896179], "InputChoice3": [1.0]}
{"LayerChoice1": [0.38196924328804016, 0.545534074306488], "LayerChoice2": [0.13535980880260468, 0.6541711688041687], "InputChoice3": [1.0]}
{"LayerChoice1": [0.38196924328804016, 0.545534074306488], "LayerChoice2": [0.13535980880260468, 0.6541711688041687], "InputChoice3": [1.0]}
{"LayerChoice1": [0.021080197766423225, 0.9448030591011047], "LayerChoice2": [0.10734782367944717, 0.6576552391052246], "InputChoice3": [1.0]}
{"LayerChoice1": [0.021080197766423225, 0.9448030591011047], "LayerChoice2": [0.10734782367944717, 0.6576552391052246], "InputChoice3": [1.0]}
{"LayerChoice1": [0.007057525217533112, 0.9584230184555054], "LayerChoice2": [0.07117724418640137, 0.7405614852905273], "InputChoice3": [1.0]}
{"LayerChoice1": [0.007057525217533112, 0.9584230184555054], "LayerChoice2": [0.07117724418640137, 0.7405614852905273], "InputChoice3": [1.0]}
{"LayerChoice1": [0.008550566621124744, 0.9295198321342468], "LayerChoice2": [0.06730002164840698, 0.7961679100990295], "InputChoice3": [1.0]}
{"LayerChoice1": [0.008550566621124744, 0.9295198321342468], "LayerChoice2": [0.06730002164840698, 0.7961679100990295], "InputChoice3": [1.0]}
{"LayerChoice1": [0.01824847236275673, 0.8596128821372986], "LayerChoice2": [0.08193636685609818, 0.7236940860748291], "InputChoice3": [1.0]}
{"LayerChoice1": [0.01824847236275673, 0.8596128821372986], "LayerChoice2": [0.08193636685609818, 0.7236940860748291], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05296659469604492, 0.6001462340354919], "LayerChoice2": [0.15201032161712646, 0.5331113338470459], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05296659469604492, 0.6001462340354919], "LayerChoice2": [0.15201032161712646, 0.5331113338470459], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11077071726322174, 0.3221001625061035], "LayerChoice2": [0.41355037689208984, 0.4270976483821869], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11077071726322174, 0.3221001625061035], "LayerChoice2": [0.41355037689208984, 0.4270976483821869], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05126873403787613, 0.9328503012657166], "LayerChoice2": [0.30328112840652466, 0.5603004097938538], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05126873403787613, 0.9328503012657166], "LayerChoice2": [0.30328112840652466, 0.5603004097938538], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04004964977502823, 0.9562279582023621], "LayerChoice2": [0.1380523294210434, 0.5911651849746704], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04004964977502823, 0.9562279582023621], "LayerChoice2": [0.1380523294210434, 0.5911651849746704], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05736026167869568, 0.9376007318496704], "LayerChoice2": [0.17763783037662506, 0.49026450514793396], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05736026167869568, 0.9376007318496704], "LayerChoice2": [0.17763783037662506, 0.49026450514793396], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11005619913339615, 0.8746209740638733], "LayerChoice2": [0.02616649493575096, 0.892845630645752], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11005619913339615, 0.8746209740638733], "LayerChoice2": [0.02616649493575096, 0.892845630645752], "InputChoice3": [1.0]}
{"LayerChoice1": [0.3026966452598572, 0.639849841594696], "LayerChoice2": [0.011593394912779331, 0.9308593273162842], "InputChoice3": [1.0]}
{"LayerChoice1": [0.3026966452598572, 0.639849841594696], "LayerChoice2": [0.011593394912779331, 0.9308593273162842], "InputChoice3": [1.0]}
{"LayerChoice1": [0.2156911939382553, 0.6727744936943054], "LayerChoice2": [0.011773649603128433, 0.9145286083221436], "InputChoice3": [1.0]}
{"LayerChoice1": [0.2156911939382553, 0.6727744936943054], "LayerChoice2": [0.011773649603128433, 0.9145286083221436], "InputChoice3": [1.0]}
{"LayerChoice1": [0.18512533605098724, 0.5825480222702026], "LayerChoice2": [0.019402049481868744, 0.8487476706504822], "InputChoice3": [1.0]}
{"LayerChoice1": [0.18512533605098724, 0.5825480222702026], "LayerChoice2": [0.019402049481868744, 0.8487476706504822], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08500845730304718, 0.6311444640159607], "LayerChoice2": [0.03673860803246498, 0.7628137469291687], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08500845730304718, 0.6311444640159607], "LayerChoice2": [0.03673860803246498, 0.7628137469291687], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07797480374574661, 0.6311417818069458], "LayerChoice2": [0.07643107324838638, 0.698151171207428], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07797480374574661, 0.6311417818069458], "LayerChoice2": [0.07643107324838638, 0.698151171207428], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14110910892486572, 0.4282330274581909], "LayerChoice2": [0.21149399876594543, 0.5799922943115234], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14110910892486572, 0.4282330274581909], "LayerChoice2": [0.21149399876594543, 0.5799922943115234], "InputChoice3": [1.0]}
{"LayerChoice1": [0.17472553253173828, 0.5749350786209106], "LayerChoice2": [0.15868228673934937, 0.5725156664848328], "InputChoice3": [1.0]}
{"LayerChoice1": [0.17472553253173828, 0.5749350786209106], "LayerChoice2": [0.15868228673934937, 0.5725156664848328], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10171066969633102, 0.7871870398521423], "LayerChoice2": [0.07506437599658966, 0.752801775932312], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10171066969633102, 0.7871870398521423], "LayerChoice2": [0.07506437599658966, 0.752801775932312], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09778640419244766, 0.8038713335990906], "LayerChoice2": [0.05949161574244499, 0.7608308792114258], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09778640419244766, 0.8038713335990906], "LayerChoice2": [0.05949161574244499, 0.7608308792114258], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1290401965379715, 0.7246860861778259], "LayerChoice2": [0.05819358304142952, 0.6861976385116577], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1290401965379715, 0.7246860861778259], "LayerChoice2": [0.05819358304142952, 0.6861976385116577], "InputChoice3": [1.0]}
{"LayerChoice1": [0.13818830251693726, 0.6680923700332642], "LayerChoice2": [0.09602675586938858, 0.5517569780349731], "InputChoice3": [1.0]}
{"LayerChoice1": [0.13818830251693726, 0.6680923700332642], "LayerChoice2": [0.09602675586938858, 0.5517569780349731], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10027631372213364, 0.7122305035591125], "LayerChoice2": [0.2446780502796173, 0.3975561559200287], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10027631372213364, 0.7122305035591125], "LayerChoice2": [0.2446780502796173, 0.3975561559200287], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10007726401090622, 0.7274117469787598], "LayerChoice2": [0.05299869179725647, 0.8343074917793274], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10007726401090622, 0.7274117469787598], "LayerChoice2": [0.05299869179725647, 0.8343074917793274], "InputChoice3": [1.0]}
{"LayerChoice1": [0.063567616045475, 0.8344581723213196], "LayerChoice2": [0.028883134946227074, 0.881170392036438], "InputChoice3": [1.0]}
{"LayerChoice1": [0.063567616045475, 0.8344581723213196], "LayerChoice2": [0.028883134946227074, 0.881170392036438], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06402301043272018, 0.8361518383026123], "LayerChoice2": [0.029579779133200645, 0.8257248997688293], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06402301043272018, 0.8361518383026123], "LayerChoice2": [0.029579779133200645, 0.8257248997688293], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07858544588088989, 0.7954124808311462], "LayerChoice2": [0.049960970878601074, 0.7579665780067444], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07858544588088989, 0.7954124808311462], "LayerChoice2": [0.049960970878601074, 0.7579665780067444], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06018409505486488, 0.8252460360527039], "LayerChoice2": [0.10394333302974701, 0.741864025592804], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06018409505486488, 0.8252460360527039], "LayerChoice2": [0.10394333302974701, 0.741864025592804], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08323651552200317, 0.755091667175293], "LayerChoice2": [0.1664743721485138, 0.6509267091751099], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08323651552200317, 0.755091667175293], "LayerChoice2": [0.1664743721485138, 0.6509267091751099], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10527421534061432, 0.7171546220779419], "LayerChoice2": [0.08004075288772583, 0.7339186668395996], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10527421534061432, 0.7171546220779419], "LayerChoice2": [0.08004075288772583, 0.7339186668395996], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14335720241069794, 0.7242015600204468], "LayerChoice2": [0.0812048614025116, 0.7277168035507202], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14335720241069794, 0.7242015600204468], "LayerChoice2": [0.0812048614025116, 0.7277168035507202], "InputChoice3": [1.0]}
{"LayerChoice1": [0.22007113695144653, 0.6693033576011658], "LayerChoice2": [0.13022322952747345, 0.5931707620620728], "InputChoice3": [1.0]}
{"LayerChoice1": [0.22007113695144653, 0.6693033576011658], "LayerChoice2": [0.13022322952747345, 0.5931707620620728], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08082080632448196, 0.8230500817298889], "LayerChoice2": [0.13607163727283478, 0.6009434461593628], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08082080632448196, 0.8230500817298889], "LayerChoice2": [0.13607163727283478, 0.6009434461593628], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04465818777680397, 0.8592772483825684], "LayerChoice2": [0.04289659857749939, 0.7863138914108276], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04465818777680397, 0.8592772483825684], "LayerChoice2": [0.04289659857749939, 0.7863138914108276], "InputChoice3": [1.0]}
{"LayerChoice1": [0.049746323376894, 0.8154487609863281], "LayerChoice2": [0.03652886673808098, 0.8381367921829224], "InputChoice3": [1.0]}
{"LayerChoice1": [0.049746323376894, 0.8154487609863281], "LayerChoice2": [0.03652886673808098, 0.8381367921829224], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06824479252099991, 0.7481605410575867], "LayerChoice2": [0.05760429799556732, 0.7788113951683044], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06824479252099991, 0.7481605410575867], "LayerChoice2": [0.05760429799556732, 0.7788113951683044], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11805737018585205, 0.566471517086029], "LayerChoice2": [0.10964061319828033, 0.6446400284767151], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11805737018585205, 0.566471517086029], "LayerChoice2": [0.10964061319828033, 0.6446400284767151], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1419510394334793, 0.5655108094215393], "LayerChoice2": [0.19184833765029907, 0.5126507878303528], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1419510394334793, 0.5655108094215393], "LayerChoice2": [0.19184833765029907, 0.5126507878303528], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14817093312740326, 0.45704662799835205], "LayerChoice2": [0.20815739035606384, 0.5559371709823608], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14817093312740326, 0.45704662799835205], "LayerChoice2": [0.20815739035606384, 0.5559371709823608], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09115036576986313, 0.7731235027313232], "LayerChoice2": [0.060834851115942, 0.8173094391822815], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09115036576986313, 0.7731235027313232], "LayerChoice2": [0.060834851115942, 0.8173094391822815], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09433865547180176, 0.8047541379928589], "LayerChoice2": [0.050108928233385086, 0.7379375696182251], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09433865547180176, 0.8047541379928589], "LayerChoice2": [0.050108928233385086, 0.7379375696182251], "InputChoice3": [1.0]}
{"LayerChoice1": [0.17118427157402039, 0.667374849319458], "LayerChoice2": [0.06587917357683182, 0.45802026987075806], "InputChoice3": [1.0]}
{"LayerChoice1": [0.17118427157402039, 0.667374849319458], "LayerChoice2": [0.06587917357683182, 0.45802026987075806], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06597328186035156, 0.8069636821746826], "LayerChoice2": [0.10017026215791702, 0.6903104186058044], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06597328186035156, 0.8069636821746826], "LayerChoice2": [0.10017026215791702, 0.6903104186058044], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06909048557281494, 0.777764081954956], "LayerChoice2": [0.08743080496788025, 0.7666912078857422], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06909048557281494, 0.777764081954956], "LayerChoice2": [0.08743080496788025, 0.7666912078857422], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06757276505231857, 0.7708925604820251], "LayerChoice2": [0.0725860744714737, 0.7451163530349731], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06757276505231857, 0.7708925604820251], "LayerChoice2": [0.0725860744714737, 0.7451163530349731], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06484764814376831, 0.793143093585968], "LayerChoice2": [0.08681400120258331, 0.6716460585594177], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06484764814376831, 0.793143093585968], "LayerChoice2": [0.08681400120258331, 0.6716460585594177], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08544135093688965, 0.76267409324646], "LayerChoice2": [0.05306468904018402, 0.8616682291030884], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08544135093688965, 0.76267409324646], "LayerChoice2": [0.05306468904018402, 0.8616682291030884], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08267099410295486, 0.806887149810791], "LayerChoice2": [0.049385081976652145, 0.8648769855499268], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08267099410295486, 0.806887149810791], "LayerChoice2": [0.049385081976652145, 0.8648769855499268], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07834549248218536, 0.8418358564376831], "LayerChoice2": [0.06723735481500626, 0.7894022464752197], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07834549248218536, 0.8418358564376831], "LayerChoice2": [0.06723735481500626, 0.7894022464752197], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1103958785533905, 0.7747570276260376], "LayerChoice2": [0.0910966768860817, 0.6363301873207092], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1103958785533905, 0.7747570276260376], "LayerChoice2": [0.0910966768860817, 0.6363301873207092], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11015830934047699, 0.7483054995536804], "LayerChoice2": [0.09892283380031586, 0.640370786190033], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11015830934047699, 0.7483054995536804], "LayerChoice2": [0.09892283380031586, 0.640370786190033], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14624467492103577, 0.7147861123085022], "LayerChoice2": [0.17495959997177124, 0.6768237948417664], "InputChoice3": [1.0]}
{"LayerChoice1": [0.14624467492103577, 0.7147861123085022], "LayerChoice2": [0.17495959997177124, 0.6768237948417664], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04491344094276428, 0.8823893070220947], "LayerChoice2": [0.21028216183185577, 0.6247846484184265], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04491344094276428, 0.8823893070220947], "LayerChoice2": [0.21028216183185577, 0.6247846484184265], "InputChoice3": [1.0]}
{"LayerChoice1": [0.027889782562851906, 0.916230320930481], "LayerChoice2": [0.09943831712007523, 0.6254783868789673], "InputChoice3": [1.0]}
{"LayerChoice1": [0.027889782562851906, 0.916230320930481], "LayerChoice2": [0.09943831712007523, 0.6254783868789673], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04134586825966835, 0.8654403686523438], "LayerChoice2": [0.16651785373687744, 0.4980570077896118], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04134586825966835, 0.8654403686523438], "LayerChoice2": [0.16651785373687744, 0.4980570077896118], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08471281826496124, 0.7421502470970154], "LayerChoice2": [0.04717438295483589, 0.6877338886260986], "InputChoice3": [1.0]}
{"LayerChoice1": [0.08471281826496124, 0.7421502470970154], "LayerChoice2": [0.04717438295483589, 0.6877338886260986], "InputChoice3": [1.0]}
{"LayerChoice1": [0.13677269220352173, 0.5074357390403748], "LayerChoice2": [0.035013530403375626, 0.751556396484375], "InputChoice3": [1.0]}
{"LayerChoice1": [0.13677269220352173, 0.5074357390403748], "LayerChoice2": [0.035013530403375626, 0.751556396484375], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07347798347473145, 0.7002881765365601], "LayerChoice2": [0.05963736027479172, 0.8242385387420654], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07347798347473145, 0.7002881765365601], "LayerChoice2": [0.05963736027479172, 0.8242385387420654], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0932786613702774, 0.7246133685112], "LayerChoice2": [0.1496925950050354, 0.6741674542427063], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0932786613702774, 0.7246133685112], "LayerChoice2": [0.1496925950050354, 0.6741674542427063], "InputChoice3": [1.0]}
{"LayerChoice1": [0.19284376502037048, 0.6763586401939392], "LayerChoice2": [0.061011895537376404, 0.7987609505653381], "InputChoice3": [1.0]}
{"LayerChoice1": [0.19284376502037048, 0.6763586401939392], "LayerChoice2": [0.061011895537376404, 0.7987609505653381], "InputChoice3": [1.0]}
{"LayerChoice1": [0.27432820200920105, 0.5916624069213867], "LayerChoice2": [0.05504331737756729, 0.7566295266151428], "InputChoice3": [1.0]}
{"LayerChoice1": [0.27432820200920105, 0.5916624069213867], "LayerChoice2": [0.05504331737756729, 0.7566295266151428], "InputChoice3": [1.0]}
{"LayerChoice1": [0.3917427957057953, 0.4739009141921997], "LayerChoice2": [0.14596949517726898, 0.5169135332107544], "InputChoice3": [1.0]}
{"LayerChoice1": [0.3917427957057953, 0.4739009141921997], "LayerChoice2": [0.14596949517726898, 0.5169135332107544], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0972665399312973, 0.7770031094551086], "LayerChoice2": [0.16172561049461365, 0.38614627718925476], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0972665399312973, 0.7770031094551086], "LayerChoice2": [0.16172561049461365, 0.38614627718925476], "InputChoice3": [1.0]}
{"LayerChoice1": [0.033920712769031525, 0.8633378148078918], "LayerChoice2": [0.02161009982228279, 0.9516019225120544], "InputChoice3": [1.0]}
{"LayerChoice1": [0.033920712769031525, 0.8633378148078918], "LayerChoice2": [0.02161009982228279, 0.9516019225120544], "InputChoice3": [1.0]}
{"LayerChoice1": [0.035273630172014236, 0.8488068580627441], "LayerChoice2": [0.008930744603276253, 0.9673046469688416], "InputChoice3": [1.0]}
{"LayerChoice1": [0.035273630172014236, 0.8488068580627441], "LayerChoice2": [0.008930744603276253, 0.9673046469688416], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06604903936386108, 0.7396965622901917], "LayerChoice2": [0.009870911948382854, 0.8953750133514404], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06604903936386108, 0.7396965622901917], "LayerChoice2": [0.009870911948382854, 0.8953750133514404], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11345057934522629, 0.638731837272644], "LayerChoice2": [0.017036370933055878, 0.7895042896270752], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11345057934522629, 0.638731837272644], "LayerChoice2": [0.017036370933055878, 0.7895042896270752], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05843821167945862, 0.8187624216079712], "LayerChoice2": [0.039315298199653625, 0.7655065655708313], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05843821167945862, 0.8187624216079712], "LayerChoice2": [0.039315298199653625, 0.7655065655708313], "InputChoice3": [1.0]}
{"LayerChoice1": [0.039966147392988205, 0.890200138092041], "LayerChoice2": [0.08715487271547318, 0.7979556918144226], "InputChoice3": [1.0]}
{"LayerChoice1": [0.039966147392988205, 0.890200138092041], "LayerChoice2": [0.08715487271547318, 0.7979556918144226], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04694436863064766, 0.8828480839729309], "LayerChoice2": [0.23342444002628326, 0.5991465449333191], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04694436863064766, 0.8828480839729309], "LayerChoice2": [0.23342444002628326, 0.5991465449333191], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06586632877588272, 0.8521926999092102], "LayerChoice2": [0.137416809797287, 0.7007209062576294], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06586632877588272, 0.8521926999092102], "LayerChoice2": [0.137416809797287, 0.7007209062576294], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1306520402431488, 0.7126219272613525], "LayerChoice2": [0.09369797259569168, 0.7126511335372925], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1306520402431488, 0.7126219272613525], "LayerChoice2": [0.09369797259569168, 0.7126511335372925], "InputChoice3": [1.0]}
{"LayerChoice1": [0.25898662209510803, 0.5094211101531982], "LayerChoice2": [0.12200288474559784, 0.5820268988609314], "InputChoice3": [1.0]}
{"LayerChoice1": [0.25898662209510803, 0.5094211101531982], "LayerChoice2": [0.12200288474559784, 0.5820268988609314], "InputChoice3": [1.0]}
{"LayerChoice1": [0.034446779638528824, 0.9377502202987671], "LayerChoice2": [0.09489627182483673, 0.6961398720741272], "InputChoice3": [1.0]}
{"LayerChoice1": [0.034446779638528824, 0.9377502202987671], "LayerChoice2": [0.09489627182483673, 0.6961398720741272], "InputChoice3": [1.0]}
{"LayerChoice1": [0.018403973430395126, 0.9661052823066711], "LayerChoice2": [0.13247451186180115, 0.7167956233024597], "InputChoice3": [1.0]}
{"LayerChoice1": [0.018403973430395126, 0.9661052823066711], "LayerChoice2": [0.13247451186180115, 0.7167956233024597], "InputChoice3": [1.0]}
{"LayerChoice1": [0.02693978324532509, 0.9464499950408936], "LayerChoice2": [0.1342586725950241, 0.7039328813552856], "InputChoice3": [1.0]}
{"LayerChoice1": [0.02693978324532509, 0.9464499950408936], "LayerChoice2": [0.1342586725950241, 0.7039328813552856], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06355128437280655, 0.8646794557571411], "LayerChoice2": [0.1234731525182724, 0.6817578673362732], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06355128437280655, 0.8646794557571411], "LayerChoice2": [0.1234731525182724, 0.6817578673362732], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11895588785409927, 0.7286098003387451], "LayerChoice2": [0.09721360355615616, 0.677011251449585], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11895588785409927, 0.7286098003387451], "LayerChoice2": [0.09721360355615616, 0.677011251449585], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1503525972366333, 0.594916045665741], "LayerChoice2": [0.06166958436369896, 0.746545672416687], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1503525972366333, 0.594916045665741], "LayerChoice2": [0.06166958436369896, 0.746545672416687], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11681437492370605, 0.5602823495864868], "LayerChoice2": [0.06931043416261673, 0.6380529403686523], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11681437492370605, 0.5602823495864868], "LayerChoice2": [0.06931043416261673, 0.6380529403686523], "InputChoice3": [1.0]}
{"LayerChoice1": [0.042488016188144684, 0.9275788068771362], "LayerChoice2": [0.07066362351179123, 0.864369809627533], "InputChoice3": [1.0]}
{"LayerChoice1": [0.042488016188144684, 0.9275788068771362], "LayerChoice2": [0.07066362351179123, 0.864369809627533], "InputChoice3": [1.0]}
{"LayerChoice1": [0.02494112215936184, 0.9634440541267395], "LayerChoice2": [0.07743486762046814, 0.8385919332504272], "InputChoice3": [1.0]}
{"LayerChoice1": [0.02494112215936184, 0.9634440541267395], "LayerChoice2": [0.07743486762046814, 0.8385919332504272], "InputChoice3": [1.0]}
{"LayerChoice1": [0.036875247955322266, 0.9454857707023621], "LayerChoice2": [0.18404994904994965, 0.5855918526649475], "InputChoice3": [1.0]}
{"LayerChoice1": [0.036875247955322266, 0.9454857707023621], "LayerChoice2": [0.18404994904994965, 0.5855918526649475], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06360670179128647, 0.8943222165107727], "LayerChoice2": [0.3094785511493683, 0.3322273790836334], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06360670179128647, 0.8943222165107727], "LayerChoice2": [0.3094785511493683, 0.3322273790836334], "InputChoice3": [1.0]}
{"LayerChoice1": [0.13302859663963318, 0.771475613117218], "LayerChoice2": [0.005853685550391674, 0.9241384267807007], "InputChoice3": [1.0]}
{"LayerChoice1": [0.13302859663963318, 0.771475613117218], "LayerChoice2": [0.005853685550391674, 0.9241384267807007], "InputChoice3": [1.0]}
{"LayerChoice1": [0.16082289814949036, 0.7193302512168884], "LayerChoice2": [0.0008709846879355609, 0.9805907607078552], "InputChoice3": [1.0]}
{"LayerChoice1": [0.16082289814949036, 0.7193302512168884], "LayerChoice2": [0.0008709846879355609, 0.9805907607078552], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10243792831897736, 0.7758437991142273], "LayerChoice2": [0.0006800976698286831, 0.9821012616157532], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10243792831897736, 0.7758437991142273], "LayerChoice2": [0.0006800976698286831, 0.9821012616157532], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1669166088104248, 0.6269804239273071], "LayerChoice2": [0.001289533218368888, 0.9677082300186157], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1669166088104248, 0.6269804239273071], "LayerChoice2": [0.001289533218368888, 0.9677082300186157], "InputChoice3": [1.0]}
{"LayerChoice1": [0.177451029419899, 0.624711811542511], "LayerChoice2": [0.0035432574804872274, 0.9360023140907288], "InputChoice3": [1.0]}
{"LayerChoice1": [0.177451029419899, 0.624711811542511], "LayerChoice2": [0.0035432574804872274, 0.9360023140907288], "InputChoice3": [1.0]}
{"LayerChoice1": [0.4062937796115875, 0.39108672738075256], "LayerChoice2": [0.010217479430139065, 0.9027064442634583], "InputChoice3": [1.0]}
{"LayerChoice1": [0.4062937796115875, 0.39108672738075256], "LayerChoice2": [0.010217479430139065, 0.9027064442634583], "InputChoice3": [1.0]}
{"LayerChoice1": [0.002058188896626234, 0.9740762114524841], "LayerChoice2": [0.027852308005094528, 0.8409036993980408], "InputChoice3": [1.0]}
{"LayerChoice1": [0.002058188896626234, 0.9740762114524841], "LayerChoice2": [0.027852308005094528, 0.8409036993980408], "InputChoice3": [1.0]}
{"LayerChoice1": [0.00022376094420906156, 0.9908938407897949], "LayerChoice2": [0.06658121943473816, 0.7843828201293945], "InputChoice3": [1.0]}
{"LayerChoice1": [0.00022376094420906156, 0.9908938407897949], "LayerChoice2": [0.06658121943473816, 0.7843828201293945], "InputChoice3": [1.0]}
{"LayerChoice1": [0.00024322717217728496, 0.988875150680542], "LayerChoice2": [0.20131684839725494, 0.5457236766815186], "InputChoice3": [1.0]}
{"LayerChoice1": [0.00024322717217728496, 0.988875150680542], "LayerChoice2": [0.20131684839725494, 0.5457236766815186], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0008077370002865791, 0.9772794246673584], "LayerChoice2": [0.18789279460906982, 0.5969619750976562], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0008077370002865791, 0.9772794246673584], "LayerChoice2": [0.18789279460906982, 0.5969619750976562], "InputChoice3": [1.0]}
{"LayerChoice1": [0.003911605570465326, 0.9453687071800232], "LayerChoice2": [0.02109389565885067, 0.8697527050971985], "InputChoice3": [1.0]}
{"LayerChoice1": [0.003911605570465326, 0.9453687071800232], "LayerChoice2": [0.02109389565885067, 0.8697527050971985], "InputChoice3": [1.0]}
{"LayerChoice1": [0.017654091119766235, 0.8744088411331177], "LayerChoice2": [0.009415926411747932, 0.9130730032920837], "InputChoice3": [1.0]}
{"LayerChoice1": [0.017654091119766235, 0.8744088411331177], "LayerChoice2": [0.009415926411747932, 0.9130730032920837], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06170758232474327, 0.7262011766433716], "LayerChoice2": [0.0099410992115736, 0.9075729846954346], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06170758232474327, 0.7262011766433716], "LayerChoice2": [0.0099410992115736, 0.9075729846954346], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1471518576145172, 0.45247188210487366], "LayerChoice2": [0.016525939106941223, 0.8528898358345032], "InputChoice3": [1.0]}
{"LayerChoice1": [0.1471518576145172, 0.45247188210487366], "LayerChoice2": [0.016525939106941223, 0.8528898358345032], "InputChoice3": [1.0]}
{"LayerChoice1": [0.31645989418029785, 0.45930224657058716], "LayerChoice2": [0.034564439207315445, 0.8045353889465332], "InputChoice3": [1.0]}
{"LayerChoice1": [0.31645989418029785, 0.45930224657058716], "LayerChoice2": [0.034564439207315445, 0.8045353889465332], "InputChoice3": [1.0]}
{"LayerChoice1": [0.27753520011901855, 0.6470338702201843], "LayerChoice2": [0.06879964470863342, 0.753038227558136], "InputChoice3": [1.0]}
{"LayerChoice1": [0.27753520011901855, 0.6470338702201843], "LayerChoice2": [0.06879964470863342, 0.753038227558136], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10113956779241562, 0.8557873368263245], "LayerChoice2": [0.11123000830411911, 0.6985005736351013], "InputChoice3": [1.0]}
{"LayerChoice1": [0.10113956779241562, 0.8557873368263245], "LayerChoice2": [0.11123000830411911, 0.6985005736351013], "InputChoice3": [1.0]}
{"LayerChoice1": [0.030492283403873444, 0.9367921352386475], "LayerChoice2": [0.20879502594470978, 0.5640308260917664], "InputChoice3": [1.0]}
{"LayerChoice1": [0.030492283403873444, 0.9367921352386475], "LayerChoice2": [0.20879502594470978, 0.5640308260917664], "InputChoice3": [1.0]}
{"LayerChoice1": [0.030874749645590782, 0.9165729880332947], "LayerChoice2": [0.31847208738327026, 0.40526410937309265], "InputChoice3": [1.0]}
{"LayerChoice1": [0.030874749645590782, 0.9165729880332947], "LayerChoice2": [0.31847208738327026, 0.40526410937309265], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04697832837700844, 0.8701344132423401], "LayerChoice2": [0.0003070813836529851, 0.9890515208244324], "InputChoice3": [1.0]}
{"LayerChoice1": [0.04697832837700844, 0.8701344132423401], "LayerChoice2": [0.0003070813836529851, 0.9890515208244324], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07882529497146606, 0.8000483512878418], "LayerChoice2": [1.2083853107469622e-05, 0.9972614049911499], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07882529497146606, 0.8000483512878418], "LayerChoice2": [1.2083853107469622e-05, 0.9972614049911499], "InputChoice3": [1.0]}
{"LayerChoice1": [0.19728022813796997, 0.5460306406021118], "LayerChoice2": [6.190281965245958e-06, 0.997385561466217], "InputChoice3": [1.0]}
{"LayerChoice1": [0.19728022813796997, 0.5460306406021118], "LayerChoice2": [6.190281965245958e-06, 0.997385561466217], "InputChoice3": [1.0]}
{"LayerChoice1": [0.02268129400908947, 0.9120339155197144], "LayerChoice2": [1.2138058991695289e-05, 0.99616938829422], "InputChoice3": [1.0]}
{"LayerChoice1": [0.02268129400908947, 0.9120339155197144], "LayerChoice2": [1.2138058991695289e-05, 0.99616938829422], "InputChoice3": [1.0]}
{"LayerChoice1": [0.011008036322891712, 0.9471985101699829], "LayerChoice2": [4.396834992803633e-05, 0.9934953451156616], "InputChoice3": [1.0]}
{"LayerChoice1": [0.011008036322891712, 0.9471985101699829], "LayerChoice2": [4.396834992803633e-05, 0.9934953451156616], "InputChoice3": [1.0]}
{"LayerChoice1": [0.014104172587394714, 0.9320058226585388], "LayerChoice2": [0.0001937191264005378, 0.9875691533088684], "InputChoice3": [1.0]}
{"LayerChoice1": [0.014104172587394714, 0.9320058226585388], "LayerChoice2": [0.0001937191264005378, 0.9875691533088684], "InputChoice3": [1.0]}
{"LayerChoice1": [0.026419606059789658, 0.8964026570320129], "LayerChoice2": [0.0008263883064500988, 0.9740638732910156], "InputChoice3": [1.0]}
{"LayerChoice1": [0.026419606059789658, 0.8964026570320129], "LayerChoice2": [0.0008263883064500988, 0.9740638732910156], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06288397312164307, 0.8128820657730103], "LayerChoice2": [0.0030337341595441103, 0.9472675323486328], "InputChoice3": [1.0]}
{"LayerChoice1": [0.06288397312164307, 0.8128820657730103], "LayerChoice2": [0.0030337341595441103, 0.9472675323486328], "InputChoice3": [1.0]}
{"LayerChoice1": [0.19334326684474945, 0.6048167943954468], "LayerChoice2": [0.009358227252960205, 0.8979243040084839], "InputChoice3": [1.0]}
{"LayerChoice1": [0.19334326684474945, 0.6048167943954468], "LayerChoice2": [0.009358227252960205, 0.8979243040084839], "InputChoice3": [1.0]}
{"LayerChoice1": [0.16567184031009674, 0.7179728746414185], "LayerChoice2": [0.02266479842364788, 0.8641979694366455], "InputChoice3": [1.0]}
{"LayerChoice1": [0.16567184031009674, 0.7179728746414185], "LayerChoice2": [0.02266479842364788, 0.8641979694366455], "InputChoice3": [1.0]}
{"LayerChoice1": [0.2567600607872009, 0.594975471496582], "LayerChoice2": [0.04920189082622528, 0.764580488204956], "InputChoice3": [1.0]}
{"LayerChoice1": [0.2567600607872009, 0.594975471496582], "LayerChoice2": [0.04920189082622528, 0.764580488204956], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09292306751012802, 0.7126979231834412], "LayerChoice2": [0.09896288067102432, 0.6247758865356445], "InputChoice3": [1.0]}
{"LayerChoice1": [0.09292306751012802, 0.7126979231834412], "LayerChoice2": [0.09896288067102432, 0.6247758865356445], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05911533907055855, 0.7592290639877319], "LayerChoice2": [0.11090098321437836, 0.6551622748374939], "InputChoice3": [1.0]}
{"LayerChoice1": [0.05911533907055855, 0.7592290639877319], "LayerChoice2": [0.11090098321437836, 0.6551622748374939], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07016114890575409, 0.7581115961074829], "LayerChoice2": [0.07297755777835846, 0.8061025738716125], "InputChoice3": [1.0]}
{"LayerChoice1": [0.07016114890575409, 0.7581115961074829], "LayerChoice2": [0.07297755777835846, 0.8061025738716125], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11147508025169373, 0.6604486703872681], "LayerChoice2": [0.07747003436088562, 0.7618592381477356], "InputChoice3": [1.0]}
{"LayerChoice1": [0.11147508025169373, 0.6604486703872681], "LayerChoice2": [0.07747003436088562, 0.7618592381477356], "InputChoice3": [1.0]}
{"LayerChoice1": [0.2785463035106659, 0.5070289373397827], "LayerChoice2": [0.1167619600892067, 0.6605208516120911], "InputChoice3": [1.0]}
{"LayerChoice1": [0.2785463035106659, 0.5070289373397827], "LayerChoice2": [0.1167619600892067, 0.6605208516120911], "InputChoice3": [1.0]}
{"LayerChoice1": [0.00144239142537117, 0.9941326975822449], "LayerChoice2": [0.03977465257048607, 0.9100613594055176], "InputChoice3": [1.0]}
{"LayerChoice1": [0.00144239142537117, 0.9941326975822449], "LayerChoice2": [0.03977465257048607, 0.9100613594055176], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0001685043389443308, 0.9986924529075623], "LayerChoice2": [0.032541755586862564, 0.8942809104919434], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0001685043389443308, 0.9986924529075623], "LayerChoice2": [0.032541755586862564, 0.8942809104919434], "InputChoice3": [1.0]}
{"LayerChoice1": [0.000168206897797063, 0.9980977177619934], "LayerChoice2": [0.03874313458800316, 0.7849517464637756], "InputChoice3": [1.0]}
{"LayerChoice1": [0.000168206897797063, 0.9980977177619934], "LayerChoice2": [0.03874313458800316, 0.7849517464637756], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0004910185234621167, 0.9937912821769714], "LayerChoice2": [0.05360586941242218, 0.6840946674346924], "InputChoice3": [1.0]}
{"LayerChoice1": [0.0004910185234621167, 0.9937912821769714], "LayerChoice2": [0.05360586941242218, 0.6840946674346924], "InputChoice3": [1.0]}
{"LayerChoice1": [0.002110752509906888, 0.976581335067749], "LayerChoice2": [0.07904241234064102, 0.6251699328422546], "InputChoice3": [1.0]}

Просмотреть файл

@ -1,53 +0,0 @@
{
"name": "nasnni-vis-ts",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.3",
"@material-ui/icons": "^4.9.1",
"cytoscape": "^3.14.0",
"cytoscape-dagre": "^2.2.2",
"cytoscape-panzoom": "^2.5.3",
"express": "^4.17.1",
"lodash": "^4.17.15",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.4.0",
"typeface-roboto": "^0.0.75",
"typescript": "~3.7.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "react-scripts test",
"backend": "node server.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/cytoscape": "^3.14.0",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.149",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0"
},
"proxy": "http://localhost:8080"
}

Двоичные данные
ts/nasui/public/icon.png

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.2 KiB

Просмотреть файл

@ -1,24 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<title>NNI NAS Board</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>

Просмотреть файл

@ -1,27 +0,0 @@
const express = require('express');
const path = require('path');
const fs = require('fs');
const app = express();
const argv = require('minimist')(process.argv.slice(2));
const port = argv.port || 8080;
const logdir = argv.logdir || './mockdata';
app.use(express.static(path.join(__dirname, 'build')));
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
app.get('/refresh', (req, res) => {
const graph = fs.readFileSync(path.join(logdir, 'graph.json'), 'utf8');
const log = fs.readFileSync(path.join(logdir, 'log'), 'utf-8')
.split('\n')
.filter(Boolean)
.map(JSON.parse);
res.send({
'graph': JSON.parse(graph),
'log': log,
});
});
app.listen(port, '0.0.0.0', () => {
console.log(`NNI NAS board is running on port ${port}, logdir is ${logdir}.`);
});

Просмотреть файл

@ -1,38 +0,0 @@
svg {
overflow: hidden;
}
.node {
white-space: nowrap;
}
.node.input rect, .node.output rect {
fill: #9d0f0f;
}
.node.hub rect {
fill: #0f309d;
}
.node.blob rect {
fill: #0F9D58;
}
.node text {
fill: #fff;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
font-weight: 500;
}
.cluster rect {
stroke: #333;
fill: #000;
fill-opacity: 0.1;
stroke-width: 1.5px;
}
.edgePath path.path {
stroke: #333;
stroke-width: 1.5px;
fill: none;
}

Просмотреть файл

@ -1,366 +0,0 @@
import React, { ChangeEvent } from 'react';
import './App.css';
import 'typeface-roboto';
import { createStyles, withStyles } from '@material-ui/core/styles';
import AppBar from '@material-ui/core/AppBar';
import Button from '@material-ui/core/Button';
import Grid from '@material-ui/core/Grid';
import IconButton from '@material-ui/core/IconButton';
import Slider from '@material-ui/core/Slider';
import Toolbar from '@material-ui/core/Toolbar';
import Typography from '@material-ui/core/Typography';
import RefreshIcon from '@material-ui/icons/Refresh';
import SettingsIcon from '@material-ui/icons/Settings';
import CloseIcon from '@material-ui/icons/Close';
import ShuffleIcon from '@material-ui/icons/Shuffle';
import Snackbar from '@material-ui/core/Snackbar';
import FormControl from '@material-ui/core/FormControl';
import FormControlLabel from '@material-ui/core/FormControlLabel';
import FormGroup from '@material-ui/core/FormGroup';
import Checkbox from '@material-ui/core/Checkbox';
import Dialog from '@material-ui/core/Dialog';
import DialogTitle from '@material-ui/core/DialogTitle';
import DialogContent from '@material-ui/core/DialogContent';
import DialogActions from '@material-ui/core/DialogActions';
import MuiExpansionPanel from '@material-ui/core/ExpansionPanel';
import MuiExpansionPanelSummary from '@material-ui/core/ExpansionPanelSummary';
import MuiExpansionPanelDetails from '@material-ui/core/ExpansionPanelDetails';
import ExpandMoreIcon from '@material-ui/icons/ExpandMore';
import List from '@material-ui/core/List';
import ListItem from '@material-ui/core/ListItem';
import Backdrop from '@material-ui/core/Backdrop';
import Tooltip from '@material-ui/core/Tooltip';
import Chart from './Chart';
import { Graph } from './graphUtils';
const styles = createStyles({
bottomAppBar: {
top: 'auto',
bottom: 0,
zIndex: 'auto',
},
title: {
flexGrow: 1,
textAlign: 'left'
},
panel: {
position: 'absolute',
top: 76,
right: 16,
width: 400,
},
listItem: {
paddingLeft: 0,
paddingRight: 0,
paddingTop: 2,
paddingBottom: 2,
fontSize: '0.8em',
wordBreak: 'break-all',
},
listSubtitle: {
fontWeight: 600,
paddingLeft: 0,
paddingRight: 0,
fontSize: '0.9em',
},
listTitle: {
lineHeight: 1.1,
wordBreak: 'break-all'
},
backdrop: {
color: '#fff',
zIndex: 100,
},
snackbar: {
bottom: 76
}
});
const ExpansionPanel = withStyles({
root: {
'&$expanded': {
margin: 'auto',
},
},
expanded: {},
})(MuiExpansionPanel);
const ExpansionPanelSummary = withStyles({
root: {},
content: {
'&$expanded': {
margin: '12px 0',
},
},
expanded: {},
})(MuiExpansionPanelSummary);
const ExpansionPanelDetails = withStyles(theme => ({
root: {
paddingTop: 0,
paddingBottom: theme.spacing(1),
},
}))(MuiExpansionPanelDetails);
type AppState = {
graph: Graph | undefined,
graphData: any,
logData: any[],
sliderValue: number,
maxSliderValue: number,
sliderStep: number,
settingsOpen: boolean,
hideSidechainNodes: boolean,
hidePrimitiveNodes: boolean,
snackbarOpen: boolean,
selectedNode: string,
loading: boolean,
layout: boolean,
}
type AppProps = {
classes: any
}
class App extends React.Component<AppProps, AppState> {
constructor(props: any) {
super(props);
this.state = {
graph: undefined,
graphData: undefined,
logData: [],
sliderValue: 0,
maxSliderValue: 0,
sliderStep: 1,
settingsOpen: false,
hideSidechainNodes: true,
hidePrimitiveNodes: true,
selectedNode: '',
loading: false,
snackbarOpen: false,
layout: false,
};
this.refresh = this.refresh.bind(this);
}
componentDidMount() {
this.refresh();
}
refresh() {
this.setState({ loading: true });
fetch('/refresh')
.then((response) => { return response.json() })
.then((data) => {
const graph = new Graph(data.graph, this.state.hideSidechainNodes);
this.setState({
graphData: data.graph,
graph: graph,
logData: data.log,
maxSliderValue: data.log.length - 1,
sliderStep: Math.max(1, Math.floor(data.log.length / 20)),
sliderValue: Math.min(data.log.length, this.state.sliderValue),
loading: false,
snackbarOpen: graph.nodes.length > 100
});
});
}
private renderExpansionPanel() {
const { classes } = this.props;
const { selectedNode, graph } = this.state;
if (graph === undefined)
return null;
const info = graph.nodeSummary(selectedNode);
if (info === undefined)
return null;
const subtitle = info.op ?
(info.op === 'IO Node' ? info.op : `Operation: ${info.op}`) :
`Subgraph: ${info.nodeCount} nodes, ${info.edgeCount} edges`;
return (
<ExpansionPanel className={classes.panel}>
<ExpansionPanelSummary
expandIcon={<ExpandMoreIcon />}
>
<Typography variant='subtitle1' className={classes.listTitle}><b>{info.name}</b><br />{subtitle}</Typography>
</ExpansionPanelSummary>
<ExpansionPanelDetails>
<List dense={true} style={{
maxHeight: window.innerHeight * .5,
overflowY: 'auto',
paddingTop: 0,
width: '100%'
}}>
{
info.attributes &&
<React.Fragment>
<ListItem className={classes.listSubtitle}>Attributes</ListItem>
<ListItem className={classes.listItem}>{info.attributes}</ListItem>
</React.Fragment>
}
{
info.inputs.length > 0 &&
<React.Fragment>
<ListItem className={classes.listSubtitle}>Inputs ({info.inputs.length})</ListItem>
{
info.inputs.map((item, i) => <ListItem className={classes.listItem} key={`input${i}`}>{item}</ListItem>)
}
</React.Fragment>
}
{
info.outputs.length > 0 &&
<React.Fragment>
<ListItem className={classes.listSubtitle}>Outputs ({info.outputs.length})</ListItem>
{
info.outputs.map((item, i) => <ListItem className={classes.listItem} key={`output${i}`}>{item}</ListItem>)
}
</React.Fragment>
}
</List>
</ExpansionPanelDetails>
</ExpansionPanel>
);
}
render() {
const { classes } = this.props;
const { sliderValue, maxSliderValue, sliderStep, settingsOpen, loading, snackbarOpen } = this.state;
const handleSliderChange = (event: ChangeEvent<{}>, value: number | number[]) => {
this.setState({ sliderValue: value as number });
};
const handleSettingsDialogToggle = (value: boolean) => () => {
this.setState({ settingsOpen: value });
};
const handleSettingsChange = (name: string) => (event: React.ChangeEvent<HTMLInputElement>) => {
this.setState({
...this.state,
[name]: event.target.checked
}, () => {
this.setState({
graph: new Graph(this.state.graphData, this.state.hideSidechainNodes),
})
});
};
const handleSelectionChange = (node: string) => {
this.setState({
selectedNode: node
});
};
const handleLoadingState = (state: boolean) => () => {
this.setState({ loading: state });
};
const handleSnackbarClose = () => {
this.setState({ snackbarOpen: false });
};
const handleLayoutStateChanged = (state: boolean) => () => {
this.setState({ layout: state });
};
return (
<div className='App'>
<Chart
width={window.innerWidth}
height={window.innerHeight}
graph={this.state.graph}
activation={sliderValue < this.state.logData.length ? this.state.logData[sliderValue] : undefined}
handleSelectionChange={handleSelectionChange}
onRefresh={handleLoadingState(true)}
onRefreshComplete={handleLoadingState(false)}
layout={this.state.layout}
onLayoutComplete={handleLayoutStateChanged(false)}
/>
<AppBar position='fixed' color='primary'>
<Toolbar>
<Typography variant='h6' className={classes.title}>
NNI NAS Board
</Typography>
<Tooltip title="Re-layout graph">
<IconButton color='inherit' onClick={handleLayoutStateChanged(true)}>
<ShuffleIcon />
</IconButton>
</Tooltip>
<Tooltip title="Refresh">
<IconButton color='inherit' onClick={this.refresh}>
<RefreshIcon />
</IconButton>
</Tooltip>
<Tooltip title="Settings">
<IconButton color='inherit' onClick={handleSettingsDialogToggle(true)}>
<SettingsIcon />
</IconButton>
</Tooltip>
</Toolbar>
</AppBar>
<AppBar position='fixed' color='default' className={classes.bottomAppBar}>
<Toolbar variant='dense'>
<Grid container spacing={2} alignItems='center'>
<Grid item xs>
<Slider
value={sliderValue}
max={maxSliderValue}
min={0}
step={sliderStep}
onChange={handleSliderChange}
/>
</Grid>
<Grid item>
<Typography variant='body1'>
{sliderValue}/{maxSliderValue}
</Typography>
</Grid>
</Grid>
</Toolbar>
</AppBar>
<Dialog onClose={handleSettingsDialogToggle(false)} open={settingsOpen}>
<DialogTitle>Settings</DialogTitle>
<DialogContent>
<FormControl component='fieldset'>
<FormGroup>
<FormControlLabel
control={<Checkbox checked={this.state.hideSidechainNodes}
onChange={handleSettingsChange('hideSidechainNodes')}
value='hideSidechainNodes' />}
label='Hide sidechain nodes'
/>
{ // TODO: hide primitive nodes
/* <FormControlLabel
control={<Checkbox checked={this.state.hidePrimitiveNodes}
onChange={handleSettingsChange('hidePrimitiveNodes')}
value='hidePrimitiveNodes' />}
label='Hide primitive nodes'
/> */}
</FormGroup>
</FormControl>
</DialogContent>
<DialogActions>
<Button onClick={handleSettingsDialogToggle(false)} color='primary'>
Close
</Button>
</DialogActions>
</Dialog>
{this.renderExpansionPanel()}
<Snackbar
className={classes.snackbar}
anchorOrigin={{
vertical: 'bottom',
horizontal: 'left',
}}
open={snackbarOpen}
message='Graph is too large. Might induce performance issue.'
onClose={handleSnackbarClose}
action={
<IconButton size='small' color='inherit' onClick={handleSnackbarClose}>
<CloseIcon fontSize='small' />
</IconButton>
}
/>
{
loading && <Backdrop className={classes.backdrop} open={true}>
<Typography>Loading...</Typography>
</Backdrop>
}
</div>
);
}
}
export default withStyles(styles)(App);

Просмотреть файл

@ -1,309 +0,0 @@
import React, { createRef } from 'react';
import cytoscape from 'cytoscape';
import dagre from 'cytoscape-dagre';
import lodash from 'lodash';
import { Graph, NodeTs } from './graphUtils';
cytoscape.use(dagre);
type ChartProps = {
width: number,
height: number,
graph: Graph | undefined,
activation: any,
handleSelectionChange: (_: string) => void,
onRefresh: () => void,
onRefreshComplete: () => void,
layout: boolean,
onLayoutComplete: () => void,
}
const styles = [
{
selector: ':active',
style: {
'overlay-opacity': 0.1,
}
},
{
selector: 'node',
style: {
'shape': 'round-rectangle',
'width': 'label',
'height': 'label',
'content': 'data(label)',
'text-wrap': 'wrap',
'text-valign': 'center',
'text-halign': 'center',
'font-family': '"Roboto", "Helvetica", "Arial", sans-serif',
'font-size': 20,
'padding-left': '8px',
'padding-right': '8px',
'padding-top': '8px',
'padding-bottom': '8px',
'background-color': '#000',
'background-opacity': 0.02,
'border-color': '#555',
'border-width': '2px',
}
},
{
selector: 'node.op',
style: {
'background-color': '#fafafa',
'background-opacity': 1,
}
},
{
selector: 'node:selected',
style: {
'border-width': '4px',
'border-color': '#101010',
}
},
{
selector: 'edge',
style: {
'curve-style': 'bezier',
'target-arrow-shape': 'triangle',
'line-color': '#555',
'target-arrow-color': '#555'
}
},
{
selector: 'node.compound',
style: {
'shape': 'roundrectangle',
'text-valign': 'top',
'padding-top': '30px',
'padding-bottom': '10px',
'padding-right': '10px',
'padding-left': '10px',
}
}
];
export default class Chart extends React.Component<ChartProps> {
container = createRef<HTMLDivElement>();
zoom: any;
collapseInstance: any;
cyInstance: cytoscape.Core | null = null;
expandSet: Set<string> = new Set<string>();
elemWeight: Map<string, number> = new Map<string, number>();
graphEl: any[] = [];
private firstUpdate = true;
componentDidMount() {
this.cyInstance = cytoscape({
container: this.container.current,
elements: [],
style: styles as any,
wheelSensitivity: 0.1,
});
let singleClickedNodes = new Set<string>();
this.cyInstance!.off('click');
this.cyInstance!.on('click', (e: cytoscape.EventObject) => {
if (e.target.id) {
let nodeId = e.target.id();
if (singleClickedNodes.has(nodeId)) {
singleClickedNodes.delete(nodeId);
e.target.trigger('dblclick');
} else {
singleClickedNodes.add(nodeId);
setTimeout(() => { singleClickedNodes.delete(nodeId); }, 300);
}
}
});
this.cyInstance!.on('dblclick', (e: cytoscape.EventObject) => {
const nodeId = e.target.id();
const node = this.props.graph!.getNodeById(nodeId);
if (node !== undefined && node.isParent()) {
if (this.expandSet.has(nodeId)) {
this.expandSet.delete(nodeId);
} else {
this.expandSet.add(nodeId);
}
this.renderGraph(false);
}
});
this.cyInstance!.on('select', (e: cytoscape.EventObject) => {
this.props.handleSelectionChange(e.target.id());
});
this.renderGraph(true);
}
componentDidUpdate(prevProps: ChartProps) {
if (prevProps.graph === this.props.graph) {
if (prevProps.width === this.props.width &&
prevProps.height === this.props.height) {
if (this.props.layout) {
this.props.onLayoutComplete();
this.reLayout();
}
if (prevProps.activation !== this.props.activation) {
// perhaps only display step is changed
this.applyMutableWeight();
}
} else {
// something changed, re-render
this.renderGraph(false);
}
} else {
// re-calculate collapse
this.renderGraph(true, this.firstUpdate);
this.firstUpdate = false;
}
}
private graphElements() {
let graphElements: any[] = [];
const { graph } = this.props;
if (graph === undefined)
return [];
const collapseMap = new Map<string, string>();
const traverse = (node: NodeTs, top: NodeTs | undefined) => {
collapseMap.set(node.id, top === undefined ? node.id : top.id);
if (node.id && (top === undefined || node === top)) {
// not root and will display
const isCompound = node.isParent() && this.expandSet.has(node.id);
let data: any = {
id: node.id,
label: node.op ? node.op : node.tail,
};
if (node.parent !== undefined)
data.parent = node.parent.id;
const classes = [];
if (isCompound) classes.push('compound');
if (node.op) classes.push('op');
graphElements.push({
data: data,
classes: classes
});
}
for (const child of node.children)
traverse(child, node.id && top === undefined && !this.expandSet.has(node.id) ? node : top);
}
traverse(graph.root, undefined);
graph.edges.forEach(edge => {
const [srcCollapse, trgCollapse] = [edge.source, edge.target].map((node) => collapseMap.get(node.id)!);
if (edge.source !== edge.target && srcCollapse === trgCollapse) {
return;
}
graphElements.push({
data: {
id: edge.id,
source: srcCollapse,
target: trgCollapse
}
});
});
return graphElements;
}
private applyMutableWeight() {
const { graph, activation } = this.props;
if (graph === undefined || activation === undefined)
return;
const weights = graph.weightFromMutables(activation);
weights.forEach((weight, elem) => {
if (this.elemWeight.get(elem) !== weight) {
this.cyInstance!.getElementById(elem).style({
opacity: 0.2 + 0.8 * weight
});
}
});
this.elemWeight = weights;
}
private graphElDifference(prev: any[], next: any[]): [Set<string>, any] {
const tracedElements = new Set(prev.map(ele => ele.data.id));
const prevMap = new Map(prev.map(ele => [ele.data.id, ele]));
const nextMap = new Map(next.map(ele => [ele.data.id, ele]));
const addedEles: any = [];
nextMap.forEach((val, k) => {
const prevEle = prevMap.get(k);
if (prevEle === undefined) {
addedEles.push(val);
} else if (!lodash.isEqual(val, prevEle)) {
tracedElements.delete(k);
addedEles.push(val);
} else {
tracedElements.delete(k);
}
});
return [tracedElements, addedEles];
}
private reLayout() {
this.props.onRefresh();
const _render = () => {
const layout: any = {
name: 'dagre'
};
this.cyInstance!.layout(layout).run();
this.props.onRefreshComplete();
};
setTimeout(_render, 100);
}
private renderGraph(graphChanged: boolean, fit: boolean = false) {
const { graph } = this.props;
if (graph === undefined)
return;
this.props.onRefresh();
const _render = () => {
if (graphChanged)
this.expandSet = lodash.cloneDeep(graph.defaultExpandSet);
const graphEl = this.graphElements();
const [remove, add] = this.graphElDifference(this.graphEl, graphEl);
const layout: any = {
name: 'dagre'
};
if (graphEl.length > 100) {
if (remove.size > 0) {
const removedEles = this.cyInstance!.elements().filter(ele => remove.has(ele.id()));
this.cyInstance!.remove(removedEles);
}
if (add.length > 0) {
const eles = this.cyInstance!.add(add);
this.cyInstance!.json({
elements: graphEl
});
if (!fit) {
layout.fit = false;
}
eles.layout(layout).run();
}
} else {
this.cyInstance!.json({
elements: graphEl
});
this.cyInstance!.layout(layout).run();
}
this.applyMutableWeight();
this.graphEl = graphEl;
this.props.onRefreshComplete();
};
if (graph.nodes.length > 100)
setTimeout(_render, 100);
else
_render();
}
render() {
return (
<div className='container' ref={this.container}
style={{
left: 0,
top: 0,
position: 'absolute',
width: this.props.width - 15,
height: this.props.height,
overflow: 'hidden'
}}>
</div>
);
}
}

Просмотреть файл

@ -1,26 +0,0 @@
import { Graph } from '../graphUtils';
import * as fs from 'fs';
describe('Graph utils test', () => {
it('Graph constructor darts', () => {
const graph = new Graph(JSON.parse(fs.readFileSync('assets/darts/graph.json').toString()), true);
const activation = JSON.parse(fs.readFileSync('assets/darts/log').toString().split('\n')[0]);
expect(graph.nodes.length).toEqual(1842);
expect(graph.edges.length).toEqual(927);
const weights = graph.weightFromMutables(activation);
expect(weights.get('["CNN/ModuleList[cells]/Cell[1]/ModuleList[mutable_ops]/Node[0]/InputChoice[input_switch]/input.228",' +
'"CNN/ModuleList[cells]/Cell[1]/ModuleList[mutable_ops]/Node[1]/ModuleList[ops]/' +
'LayerChoice[2]/PoolBN[maxpool]/MaxPool2d[pool]/input.229"]')).toBeCloseTo(0.125, 3);
});
it('Graph constructor naive', () => {
const graph = new Graph(JSON.parse(fs.readFileSync('assets/naive/graph.json').toString()), true);
expect(graph.nodes.length).toEqual(51);
expect(graph.edges.length).toEqual(37);
expect(graph.mutableEdges.get('LayerChoice1')![0].length).toEqual(5);
expect(graph.mutableEdges.get('LayerChoice1')![1].length).toEqual(5);
expect(graph.mutableEdges.get('LayerChoice2')![0].length).toEqual(5);
expect(graph.mutableEdges.get('LayerChoice2')![1].length).toEqual(5);
expect(graph.mutableEdges.get('InputChoice3')![0].length).toEqual(4);
});
});

Просмотреть файл

@ -1,426 +0,0 @@
function path2module(path: any[]): string {
return path.map(p => p.name ? `${p.type}[${p.name}]` : p.type).join('/');
}
function opName(rawName: string): string {
if (rawName.includes('::')) {
return rawName.split('::')[1];
} else {
return rawName;
}
}
export class NodeTs {
readonly id: string;
readonly tail: string;
parent: NodeTs | undefined;
children: NodeTs[];
op: string;
attributes: string;
constructor(id: string, tail: string, op: string, attributes: string) {
this.children = [];
this.id = id;
this.tail = tail;
this.parent = undefined;
this.op = op;
this.attributes = attributes;
}
descendants(leafOnly: boolean): NodeTs[] {
// return all descendants includinng itself
const result: NodeTs[] = [];
if (!leafOnly || this.isChildless())
result.push(this);
for (const child of this.children) {
const childDesc = child.descendants(leafOnly);
if (childDesc.length > 0)
result.push(...childDesc);
}
return result;
}
isChildless(): boolean {
return this.children.length === 0;
}
isParent(): boolean {
return this.children.length > 0;
}
toString(): string {
return `Node(id=${this.id})`;
}
};
export class Edge {
readonly source: NodeTs;
readonly target: NodeTs;
readonly id: string;
constructor(source: NodeTs, target: NodeTs) {
this.source = source;
this.target = target;
this.id = JSON.stringify([this.source.id, this.target.id]);
}
toString(): string {
return `Edge(${this.source} -> ${this.target})`;
}
};
interface NodeSummary {
name: string,
nodeCount: number,
edgeCount: number,
inputs: string[],
outputs: string[],
attributes: string,
op: string
};
export class Graph {
root: NodeTs;
nodes: NodeTs[];
edges: Edge[];
defaultExpandSet: Set<string>;
mutableEdges: Map<string, Edge[][]>;
private id2idx: Map<string, number>;
private edgeId2idx: Map<string, number>;
private forwardGraph: Map<string, string[]>;
private backwardGraph: Map<string, string[]>;
private node2edge: Map<string, Edge[]>;
private build() {
this.id2idx.clear();
this.nodes.forEach((node, i) => {
this.id2idx.set(node.id, i);
});
this.edgeId2idx.clear();
this.edges.forEach((edge, i) => {
this.edgeId2idx.set(edge.id, i);
});
this.forwardGraph.clear();
this.backwardGraph.clear();
this.node2edge.clear();
this.edges.forEach(edge => {
if (!this.forwardGraph.has(edge.source.id))
this.forwardGraph.set(edge.source.id, []);
this.forwardGraph.get(edge.source.id)!.push(edge.target.id);
if (!this.backwardGraph.has(edge.target.id))
this.backwardGraph.set(edge.target.id, []);
this.backwardGraph.get(edge.target.id)!.push(edge.source.id);
if (!this.node2edge.has(edge.source.id))
this.node2edge.set(edge.source.id, []);
if (!this.node2edge.has(edge.target.id))
this.node2edge.set(edge.target.id, []);
this.node2edge.get(edge.source.id)!.push(edge);
this.node2edge.get(edge.target.id)!.push(edge);
});
this.root.children = this.nodes.filter(node => node.parent === undefined);
// won't set parent for these nodes, leave them as undefined
this.nodes.forEach(node => {
node.children = node.children.filter(child => this.getNodeById(child.id) !== undefined);
});
}
getNodeById(id: string): NodeTs | undefined {
const idx = this.id2idx.get(id);
if (idx === undefined) return undefined;
return this.nodes[idx];
}
getEdgeById(source: string, target: string): Edge | undefined {
const idx = this.edgeId2idx.get(JSON.stringify([source, target]));
if (idx === undefined) return undefined;
return this.edges[idx];
}
constructor(graphData: any, eliminateSidechains: boolean) {
this.id2idx = new Map<string, number>();
this.edgeId2idx = new Map<string, number>();
this.forwardGraph = new Map<string, string[]>();
this.backwardGraph = new Map<string, string[]>();
this.node2edge = new Map<string, Edge[]>();
this.root = new NodeTs('', '', '', '');
const cluster = new Map<string, NodeTs>();
const parentMap = new Map<string, string>();
this.nodes = graphData.node.map((node: any): NodeTs => {
const split = node.name.split('/');
const attr = node.hasOwnProperty('attr') ? atob(node.attr.attr.s) : '';
if (split.length === 1) {
return new NodeTs(node.name, node.name, opName(node.op), attr);
} else {
parentMap.set(node.name, split.slice(0, -1).join('/'));
// create clusters
for (let i = 1; i < split.length; ++i) {
const name = split.slice(0, i).join('/');
if (!cluster.has(name)) {
const parent = i > 1 ? split.slice(0, i - 1).join('/') : '';
const tail = split[i - 1];
cluster.set(name, new NodeTs(name, tail, '', ''));
parentMap.set(name, parent);
}
}
return new NodeTs(node.name, split.slice(-1)[0], opName(node.op), attr);
}
});
cluster.forEach(node => this.nodes.push(node));
this.nodes.forEach((node, i) => {
this.id2idx.set(node.id, i);
});
parentMap.forEach((parent, child) => {
const [childNode, parentNode] = [child, parent].map(this.getNodeById.bind(this));
if (childNode !== undefined && parentNode !== undefined) {
childNode.parent = parentNode;
parentNode.children.push(childNode);
}
});
// build edges
this.edges = [];
graphData.node.forEach((node: any) => {
if (!node.hasOwnProperty('input')) return;
const target = this.getNodeById(node.name);
if (target === undefined) return;
node.input.forEach((input: string) => {
const source = this.getNodeById(input);
if (source !== undefined) {
this.edges.push(new Edge(source, target));
}
})
})
this.build();
if (eliminateSidechains) {
this.eliminateSidechains();
}
this.defaultExpandSet = this.getDefaultExpandSet(graphData.mutable);
this.mutableEdges = this.inferMutableEdges(graphData.mutable);
}
private eliminateSidechains(): void {
const sources = this.nodes
.map(node => node.id)
.filter(id => id.startsWith('input'));
const visitedNodes = new Set(sources);
const dfsStack = sources;
while (dfsStack.length > 0) {
const u = dfsStack.pop()!;
if (this.forwardGraph.has(u)) {
this.forwardGraph.get(u)!.forEach((v: string) => {
if (!visitedNodes.has(v)) {
visitedNodes.add(v);
dfsStack.push(v);
}
});
}
}
const compoundCheck = (node: NodeTs) => {
if (node.isChildless())
return visitedNodes.has(node.id);
for (const child of node.children)
if (compoundCheck(child))
visitedNodes.add(node.id);
return visitedNodes.has(node.id);
}
compoundCheck(this.root);
this.nodes = this.nodes.filter(node => visitedNodes.has(node.id));
this.edges = this.edges.filter(edge =>
visitedNodes.has(edge.source.id) && visitedNodes.has(edge.target.id));
this.build();
}
private getDefaultExpandSet(graphDataMutable: any): Set<string> {
// if multiple, only expand first
const whitelistModuleList = Object.values(graphDataMutable)
.filter(Boolean)
.map((paths: any) => path2module(paths[0]));
const whitelistModule = new Set(whitelistModuleList);
const result = new Set<string>();
const dfs = (node: NodeTs): number => {
// node with mutableCount greater than 0 won't be collapsed
let mutableCount = 0;
if (node.id === '') {
// root node
mutableCount++;
} else if (whitelistModule.has(node.id)) {
mutableCount++;
} else if (node.parent !== undefined && whitelistModule.has(node.parent.id)) {
mutableCount++;
}
mutableCount += node.children.map(child => dfs(child)).reduce((a, b) => a + b, 0);
if (mutableCount > 0 && node.isParent())
result.add(node.id);
return mutableCount;
};
dfs(this.root);
return result;
}
private inferMutableModule(moduleName: string): Edge[][] {
let inputs: string[] | undefined = undefined;
let listConstructNode: string | undefined = undefined;
const moduleNode = this.getNodeById(moduleName);
if (moduleNode === undefined) return [];
for (const node of moduleNode.children)
if (node.op === 'ListConstruct') {
inputs = this.backwardGraph.get(node.id);
listConstructNode = node.id;
break;
}
if (inputs === undefined || listConstructNode === undefined)
return [];
return inputs.map((input: string): Edge[] => {
const visitedNodes = new Set<string>();
const edgeSet: Edge[] = [];
const dfs = (node: string, backward: boolean) => {
const nodeData = this.getNodeById(node)!;
if (visitedNodes.has(node)) return;
visitedNodes.add(node);
if (nodeData.parent === undefined || !nodeData.parent.id.startsWith(moduleName)) {
// in another module now
return;
}
const g = backward ? this.backwardGraph : this.forwardGraph;
const glist = g.get(node);
if (glist !== undefined) {
glist
.forEach((to: string) => {
edgeSet.push(backward ?
this.getEdgeById(to, node)! :
this.getEdgeById(node, to)!);
dfs(to, backward);
});
}
};
edgeSet.push(this.getEdgeById(input, listConstructNode!)!);
dfs(input, true);
visitedNodes.clear();
dfs(listConstructNode!, false);
return edgeSet;
});
}
private inferMutableEdges(graphDataMutable: any): Map<string, Edge[][]> {
const result = new Map<string, Edge[][]>();
Object.entries(graphDataMutable).forEach(obj => {
const [key, paths] = obj;
const modules = (paths as any[]).map(path2module);
const moduleEdge = modules.map(this.inferMutableModule.bind(this));
const edges: Edge[][] = [];
for (let i = 0; ; ++i) {
if (moduleEdge.filter(me => i < me.length).length === 0)
break;
edges.push([]);
moduleEdge
.filter(me => i < me.length)
.forEach(me => edges[i].push(...me[i]));
}
result.set(key, edges);
});
return result;
}
private connectedEdges(node: string): Edge[] {
const result = this.node2edge.get(node);
if (result === undefined)
return [];
return result;
}
nodeSummary(node: NodeTs | string): NodeSummary | undefined {
if (typeof node === 'string') {
const nodeData = this.getNodeById(node);
if (nodeData === undefined) return undefined;
return this.nodeSummary(nodeData);
}
const descendants = node.descendants(false);
const descendantSet = new Set(descendants.map(node => node.id));
const inputs = new Set<string>();
const outputs = new Set<string>();
let domesticEdges = 0;
for (const edge of this.edges) {
const [source, target] = [edge.source.id, edge.target.id];
if (descendantSet.has(target) && !descendantSet.has(source))
inputs.add(source);
if (descendantSet.has(source) && !descendantSet.has(target))
outputs.add(target);
if (descendantSet.has(source) && descendantSet.has(target))
domesticEdges++;
}
return {
name: node.id,
nodeCount: descendants.length,
edgeCount: domesticEdges,
inputs: Array.from(inputs),
outputs: Array.from(outputs),
attributes: node.attributes,
op: node.op
}
}
weightFromMutables(mutable: any): Map<string, number> {
const elemWeight = new Map<string, number>();
Object.entries(mutable).forEach(entry => {
const elemWeightPartial = new Map<string, number>();
const key = entry[0];
const weights = entry[1] as number[];
this.mutableEdges.get(key)!.forEach((edges: any, i: number) => {
edges.forEach((edge: any) => {
if (elemWeightPartial.has(edge.id)) {
elemWeightPartial.set(edge.id, elemWeightPartial.get(edge.id)! + weights[i]);
} else {
elemWeightPartial.set(edge.id, weights[i]);
}
})
});
elemWeightPartial.forEach((v, k) => {
if (elemWeight.has(k)) {
elemWeight.set(k, Math.min(elemWeight.get(k)!, v));
} else {
elemWeight.set(k, v);
}
});
});
this.nodes.forEach(node => {
const edges = this.connectedEdges(node.id);
const relatedEdges = edges.filter(edge => elemWeight.has(edge.id));
if (relatedEdges.length > 0) {
if (relatedEdges.length < edges.length) {
elemWeight.set(node.id, 1.);
} else {
// all related edge
const nw = edges.map(edge => elemWeight.get(edge.id)!)
.reduce((a, b) => Math.max(a, b));
elemWeight.set(node.id, nw);
}
}
});
elemWeight.forEach((v, k) => elemWeight.set(k, Math.min(v, 1.)));
// set compound weight
const gatherWeightsFromChildren = (node: NodeTs): number | undefined => {
if (node.isParent()) {
const childrenWeights =
node.children.map(gatherWeightsFromChildren)
.filter(val => val !== undefined);
if (childrenWeights.length > 0) {
const nw = childrenWeights.reduce((a, b) => Math.max(a!, b!));
elemWeight.set(node.id, nw!);
return nw;
} else {
return undefined;
}
} else {
return elemWeight.get(node.id);
}
};
gatherWeightsFromChildren(this.root);
return elemWeight;
}
};

Просмотреть файл

@ -1,13 +0,0 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}

Просмотреть файл

@ -1,12 +0,0 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
ReactDOM.render(<App />, document.getElementById('root'));
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();

1
ts/nasui/src/react-app-env.d.ts поставляемый
Просмотреть файл

@ -1 +0,0 @@
/// <reference types="react-scripts" />

Просмотреть файл

@ -1,149 +0,0 @@
// This optional code is used to register a service worker.
// register() is not called by default.
// This lets the app load faster on subsequent visits in production, and gives
// it offline capabilities. However, it also means that developers (and users)
// will only see deployed updates on subsequent visits to a page, after all the
// existing tabs open on the page have been closed, since previously cached
// resources are updated in the background.
// To learn more about the benefits of this model and instructions on how to
// opt-in, read https://bit.ly/CRA-PWA
const isLocalhost = Boolean(
window.location.hostname === 'localhost' ||
// [::1] is the IPv6 localhost address.
window.location.hostname === '[::1]' ||
// 127.0.0.0/8 are considered localhost for IPv4.
window.location.hostname.match(
/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
)
);
type Config = {
onSuccess?: (registration: ServiceWorkerRegistration) => void;
onUpdate?: (registration: ServiceWorkerRegistration) => void;
};
export function register(config?: Config) {
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
// The URL constructor is available in all browsers that support SW.
const publicUrl = new URL(
process.env.PUBLIC_URL,
window.location.href
);
if (publicUrl.origin !== window.location.origin) {
// Our service worker won't work if PUBLIC_URL is on a different origin
// from what our page is served on. This might happen if a CDN is used to
// serve assets; see https://github.com/facebook/create-react-app/issues/2374
return;
}
window.addEventListener('load', () => {
const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
if (isLocalhost) {
// This is running on localhost. Let's check if a service worker still exists or not.
checkValidServiceWorker(swUrl, config);
// Add some additional logging to localhost, pointing developers to the
// service worker/PWA documentation.
navigator.serviceWorker.ready.then(() => {
console.log(
'This web app is being served cache-first by a service ' +
'worker. To learn more, visit https://bit.ly/CRA-PWA'
);
});
} else {
// Is not localhost. Just register service worker
registerValidSW(swUrl, config);
}
});
}
}
function registerValidSW(swUrl: string, config?: Config) {
navigator.serviceWorker
.register(swUrl)
.then(registration => {
registration.onupdatefound = () => {
const installingWorker = registration.installing;
if (installingWorker == null) {
return;
}
installingWorker.onstatechange = () => {
if (installingWorker.state === 'installed') {
if (navigator.serviceWorker.controller) {
// At this point, the updated precached content has been fetched,
// but the previous service worker will still serve the older
// content until all client tabs are closed.
console.log(
'New content is available and will be used when all ' +
'tabs for this page are closed. See https://bit.ly/CRA-PWA.'
);
// Execute callback
if (config && config.onUpdate) {
config.onUpdate(registration);
}
} else {
// At this point, everything has been precached.
// It's the perfect time to display a
// "Content is cached for offline use." message.
console.log('Content is cached for offline use.');
// Execute callback
if (config && config.onSuccess) {
config.onSuccess(registration);
}
}
}
};
};
})
.catch(error => {
console.error('Error during service worker registration:', error);
});
}
function checkValidServiceWorker(swUrl: string, config?: Config) {
// Check if the service worker can be found. If it can't reload the page.
fetch(swUrl, {
headers: { 'Service-Worker': 'script' }
})
.then(response => {
// Ensure service worker exists, and that we really are getting a JS file.
const contentType = response.headers.get('content-type');
if (
response.status === 404 ||
(contentType != null && contentType.indexOf('javascript') === -1)
) {
// No service worker found. Probably a different app. Reload the page.
navigator.serviceWorker.ready.then(registration => {
registration.unregister().then(() => {
window.location.reload();
});
});
} else {
// Service worker found. Proceed as normal.
registerValidSW(swUrl, config);
}
})
.catch(() => {
console.log(
'No internet connection found. App is running in offline mode.'
);
});
}
export function unregister() {
if ('serviceWorker' in navigator) {
navigator.serviceWorker.ready
.then(registration => {
registration.unregister();
})
.catch(error => {
console.error(error.message);
});
}
}

Просмотреть файл

@ -1,29 +0,0 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"typeRoots": [
"./types",
"./node_modules/@types"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": [
"src"
]
}

1
ts/nasui/types/cytoscape-dagre/index.d.ts поставляемый
Просмотреть файл

@ -1 +0,0 @@
declare module 'cytoscape-dagre';

Разница между файлами не показана из-за своего большого размера Загрузить разницу