Skip to content

Instantly share code, notes, and snippets.

@bearpaw
Last active March 10, 2017 01:47
Show Gist options
  • Save bearpaw/cd964a49ec772bf7915e40d20fd82836 to your computer and use it in GitHub Desktop.
Save bearpaw/cd964a49ec772bf7915e40d20fd82836 to your computer and use it in GitHub Desktop.
Import numpy and matplotlib library
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Weight initialization example: ReLU\n",
"A sample example demonstrate [Xavier initialization](http://jmlr.org/proceedings/papers/v9/glorot10a/glorot10a.pdf) vs. [MSR initialization](https://arxiv.org/abs/1502.01852) with ReLU activation function.\n",
"\n",
"### Step 1: Generate dummy dataset and build a plain model"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"require 'torch'\n",
"require 'nn'\n",
"Plot = require 'itorch.Plot'\n",
"\n",
"-- Create fake dataset\n",
"x = torch.Tensor(10, 50):uniform(-1, 1)\n",
"\n",
"-- Build model\n",
"model = nn.Sequential()\n",
" :add(nn.Linear(50, 500))\n",
" :add(nn.ReLU(true))\n",
"\n",
"for i = 2,20 do\n",
" model:add(nn.Linear(500, 500))\n",
" :add(nn.ReLU(true))\n",
"end"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Step 2: Use Xavier method to initialize the weights. Plot the activation of each ReLU layer."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false,
"scrolled": false
},
"outputs": [
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"90ac4a97-417d-4903-c98b-ed9a675d4918\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '90ac4a97-417d-4903-c98b-ed9a675d4918'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"0f817134-8a06-4a03-ca81-ef30cfe9a750\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"1b2b02d9-3646-4ab9-caa9-a669ac920aac\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2609,95,92,109,111,86,88,83,108,90,90,84,85,72,73,84,75,65,79,62,60,64,49,52,51,36,34,35,28,31,32,22,26,27,25,17,22,20,14,16,11,12,10,12,12,5,4,6,3,4,7,5,0,2,1,0,1,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"1b2b02d9-3646-4ab9-caa9-a669ac920aac\",\"doc\":null,\"tags\":[]}},{\"id\":\"12b1f31e-8f35-47c8-c71e-51a7ac187abf\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"12b1f31e-8f35-47c8-c71e-51a7ac187abf\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"1a477802-4c63-4199-c153-7e6b3973fb12\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"1a477802-4c63-4199-c153-7e6b3973fb12\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"22ad9f2c-f3f4-4470-c459-aaf010f09368\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"1a477802-4c63-4199-c153-7e6b3973fb12\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"1b2b02d9-3646-4ab9-caa9-a669ac920aac\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"12b1f31e-8f35-47c8-c71e-51a7ac187abf\"},\"selection_glyph\":null,\"id\":\"22ad9f2c-f3f4-4470-c459-aaf010f09368\",\"tags\":[]}},{\"id\":\"2f79d0ae-336f-4b57-cb29-565af26475f4\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1b2b02d9-3646-4ab9-caa9-a669ac920aac\"}}],\"id\":\"2f79d0ae-336f-4b57-cb29-565af26475f4\",\"tags\":[],\"doc\":null}},{\"id\":\"e0b42cff-87b8-4a28-cad0-9ac042194cb2\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1b2b02d9-3646-4ab9-caa9-a669ac920aac\"}}],\"id\":\"e0b42cff-87b8-4a28-cad0-9ac042194cb2\",\"tags\":[],\"doc\":null}},{\"id\":\"10b4e680-057a-4a1f-cafe-dea08590c4af\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"10b4e680-057a-4a1f-cafe-dea08590c4af\",\"geometries\":[],\"doc\":null}},{\"id\":\"b87a236e-39de-4871-c8d4-3339d14ca9fe\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"b87a236e-39de-4871-c8d4-3339d14ca9fe\",\"tags\":[],\"doc\":null}},{\"id\":\"81fcbe51-b5ee-4db9-cdc0-b8a407dd40eb\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"81fcbe51-b5ee-4db9-cdc0-b8a407dd40eb\",\"tags\":[],\"doc\":null}},{\"id\":\"dc92eb86-db89-4bee-cb2f-cecbba231d70\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"b87a236e-39de-4871-c8d4-3339d14ca9fe\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"81fcbe51-b5ee-4db9-cdc0-b8a407dd40eb\"},\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"dc92eb86-db89-4bee-cb2f-cecbba231d70\",\"doc\":null,\"tags\":[]}},{\"id\":\"fbfc8de8-bb8e-45f2-c544-0110242eab1d\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"81fcbe51-b5ee-4db9-cdc0-b8a407dd40eb\"},\"id\":\"fbfc8de8-bb8e-45f2-c544-0110242eab1d\",\"doc\":null,\"tags\":[]}},{\"id\":\"3ec781e8-420c-4d75-cdcb-dee6b0d0068c\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"3ec781e8-420c-4d75-cdcb-dee6b0d0068c\",\"tags\":[],\"doc\":null}},{\"id\":\"d3c40fd8-8b54-4e08-cecf-70e347496f7d\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"d3c40fd8-8b54-4e08-cecf-70e347496f7d\",\"tags\":[],\"doc\":null}},{\"id\":\"295bbb71-c767-4e62-cea9-fd82614afb58\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"3ec781e8-420c-4d75-cdcb-dee6b0d0068c\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d3c40fd8-8b54-4e08-cecf-70e347496f7d\"},\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"295bbb71-c767-4e62-cea9-fd82614afb58\",\"doc\":null,\"tags\":[]}},{\"id\":\"676a8e95-a689-4ce2-ccdf-bc8ad9f32418\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d3c40fd8-8b54-4e08-cecf-70e347496f7d\"},\"id\":\"676a8e95-a689-4ce2-ccdf-bc8ad9f32418\",\"doc\":null,\"tags\":[]}},{\"id\":\"525beeef-1526-4bb9-cbcf-5fed4d9e2200\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"525beeef-1526-4bb9-cbcf-5fed4d9e2200\",\"doc\":null,\"tags\":[]}},{\"id\":\"fb8d1727-b786-45ce-c531-9c54b5609220\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"fb8d1727-b786-45ce-c531-9c54b5609220\",\"doc\":null,\"tags\":[]}},{\"id\":\"598729a1-0cf7-497a-c946-bb2b6c2bb0b4\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"598729a1-0cf7-497a-c946-bb2b6c2bb0b4\",\"tags\":[],\"doc\":null}},{\"id\":\"294bc1d6-012f-4c1b-ccc7-8ff65da8cfb9\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"294bc1d6-012f-4c1b-ccc7-8ff65da8cfb9\",\"tags\":[],\"doc\":null}},{\"id\":\"8065d0d8-e099-4afe-ca1c-cd2fa32b7fc2\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"8065d0d8-e099-4afe-ca1c-cd2fa32b7fc2\",\"tags\":[],\"doc\":null}},{\"id\":\"b8bff12f-b404-43d6-c3ca-4404aedee39e\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"b8bff12f-b404-43d6-c3ca-4404aedee39e\",\"tags\":[],\"doc\":null}},{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"2f79d0ae-336f-4b57-cb29-565af26475f4\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"10b4e680-057a-4a1f-cafe-dea08590c4af\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"dc92eb86-db89-4bee-cb2f-cecbba231d70\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"22ad9f2c-f3f4-4470-c459-aaf010f09368\"},{\"type\":\"LinearAxis\",\"id\":\"dc92eb86-db89-4bee-cb2f-cecbba231d70\"},{\"type\":\"Grid\",\"id\":\"fbfc8de8-bb8e-45f2-c544-0110242eab1d\"},{\"type\":\"LinearAxis\",\"id\":\"295bbb71-c767-4e62-cea9-fd82614afb58\"},{\"type\":\"Grid\",\"id\":\"676a8e95-a689-4ce2-ccdf-bc8ad9f32418\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"525beeef-1526-4bb9-cbcf-5fed4d9e2200\"},{\"type\":\"WheelZoomTool\",\"id\":\"fb8d1727-b786-45ce-c531-9c54b5609220\"},{\"type\":\"BoxZoomTool\",\"id\":\"598729a1-0cf7-497a-c946-bb2b6c2bb0b4\"},{\"type\":\"PreviewSaveTool\",\"id\":\"294bc1d6-012f-4c1b-ccc7-8ff65da8cfb9\"},{\"type\":\"ResizeTool\",\"id\":\"8065d0d8-e099-4afe-ca1c-cd2fa32b7fc2\"},{\"type\":\"ResetTool\",\"id\":\"b8bff12f-b404-43d6-c3ca-4404aedee39e\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"295bbb71-c767-4e62-cea9-fd82614afb58\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"e0b42cff-87b8-4a28-cad0-9ac042194cb2\"},\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#90ac4a97-417d-4903-c98b-ed9a675d4918\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#90ac4a97-417d-4903-c98b-ed9a675d4918\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"0f817134-8a06-4a03-ca81-ef30cfe9a750\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"1b2b02d9-3646-4ab9-caa9-a669ac920aac\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2609,95,92,109,111,86,88,83,108,90,90,84,85,72,73,84,75,65,79,62,60,64,49,52,51,36,34,35,28,31,32,22,26,27,25,17,22,20,14,16,11,12,10,12,12,5,4,6,3,4,7,5,0,2,1,0,1,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"1b2b02d9-3646-4ab9-caa9-a669ac920aac\",\"doc\":null,\"tags\":[]}},{\"id\":\"12b1f31e-8f35-47c8-c71e-51a7ac187abf\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"12b1f31e-8f35-47c8-c71e-51a7ac187abf\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"1a477802-4c63-4199-c153-7e6b3973fb12\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"1a477802-4c63-4199-c153-7e6b3973fb12\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"22ad9f2c-f3f4-4470-c459-aaf010f09368\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"1a477802-4c63-4199-c153-7e6b3973fb12\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"1b2b02d9-3646-4ab9-caa9-a669ac920aac\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"12b1f31e-8f35-47c8-c71e-51a7ac187abf\"},\"selection_glyph\":null,\"id\":\"22ad9f2c-f3f4-4470-c459-aaf010f09368\",\"tags\":[]}},{\"id\":\"2f79d0ae-336f-4b57-cb29-565af26475f4\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1b2b02d9-3646-4ab9-caa9-a669ac920aac\"}}],\"id\":\"2f79d0ae-336f-4b57-cb29-565af26475f4\",\"tags\":[],\"doc\":null}},{\"id\":\"e0b42cff-87b8-4a28-cad0-9ac042194cb2\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1b2b02d9-3646-4ab9-caa9-a669ac920aac\"}}],\"id\":\"e0b42cff-87b8-4a28-cad0-9ac042194cb2\",\"tags\":[],\"doc\":null}},{\"id\":\"10b4e680-057a-4a1f-cafe-dea08590c4af\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"10b4e680-057a-4a1f-cafe-dea08590c4af\",\"geometries\":[],\"doc\":null}},{\"id\":\"b87a236e-39de-4871-c8d4-3339d14ca9fe\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"b87a236e-39de-4871-c8d4-3339d14ca9fe\",\"tags\":[],\"doc\":null}},{\"id\":\"81fcbe51-b5ee-4db9-cdc0-b8a407dd40eb\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"81fcbe51-b5ee-4db9-cdc0-b8a407dd40eb\",\"tags\":[],\"doc\":null}},{\"id\":\"dc92eb86-db89-4bee-cb2f-cecbba231d70\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"b87a236e-39de-4871-c8d4-3339d14ca9fe\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"81fcbe51-b5ee-4db9-cdc0-b8a407dd40eb\"},\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"dc92eb86-db89-4bee-cb2f-cecbba231d70\",\"doc\":null,\"tags\":[]}},{\"id\":\"fbfc8de8-bb8e-45f2-c544-0110242eab1d\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"81fcbe51-b5ee-4db9-cdc0-b8a407dd40eb\"},\"id\":\"fbfc8de8-bb8e-45f2-c544-0110242eab1d\",\"doc\":null,\"tags\":[]}},{\"id\":\"3ec781e8-420c-4d75-cdcb-dee6b0d0068c\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"3ec781e8-420c-4d75-cdcb-dee6b0d0068c\",\"tags\":[],\"doc\":null}},{\"id\":\"d3c40fd8-8b54-4e08-cecf-70e347496f7d\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"d3c40fd8-8b54-4e08-cecf-70e347496f7d\",\"tags\":[],\"doc\":null}},{\"id\":\"295bbb71-c767-4e62-cea9-fd82614afb58\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"3ec781e8-420c-4d75-cdcb-dee6b0d0068c\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d3c40fd8-8b54-4e08-cecf-70e347496f7d\"},\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"295bbb71-c767-4e62-cea9-fd82614afb58\",\"doc\":null,\"tags\":[]}},{\"id\":\"676a8e95-a689-4ce2-ccdf-bc8ad9f32418\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d3c40fd8-8b54-4e08-cecf-70e347496f7d\"},\"id\":\"676a8e95-a689-4ce2-ccdf-bc8ad9f32418\",\"doc\":null,\"tags\":[]}},{\"id\":\"525beeef-1526-4bb9-cbcf-5fed4d9e2200\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"525beeef-1526-4bb9-cbcf-5fed4d9e2200\",\"doc\":null,\"tags\":[]}},{\"id\":\"fb8d1727-b786-45ce-c531-9c54b5609220\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"fb8d1727-b786-45ce-c531-9c54b5609220\",\"doc\":null,\"tags\":[]}},{\"id\":\"598729a1-0cf7-497a-c946-bb2b6c2bb0b4\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"598729a1-0cf7-497a-c946-bb2b6c2bb0b4\",\"tags\":[],\"doc\":null}},{\"id\":\"294bc1d6-012f-4c1b-ccc7-8ff65da8cfb9\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"294bc1d6-012f-4c1b-ccc7-8ff65da8cfb9\",\"tags\":[],\"doc\":null}},{\"id\":\"8065d0d8-e099-4afe-ca1c-cd2fa32b7fc2\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"8065d0d8-e099-4afe-ca1c-cd2fa32b7fc2\",\"tags\":[],\"doc\":null}},{\"id\":\"b8bff12f-b404-43d6-c3ca-4404aedee39e\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"b8bff12f-b404-43d6-c3ca-4404aedee39e\",\"tags\":[],\"doc\":null}},{\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"2f79d0ae-336f-4b57-cb29-565af26475f4\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"10b4e680-057a-4a1f-cafe-dea08590c4af\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"dc92eb86-db89-4bee-cb2f-cecbba231d70\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"22ad9f2c-f3f4-4470-c459-aaf010f09368\"},{\"type\":\"LinearAxis\",\"id\":\"dc92eb86-db89-4bee-cb2f-cecbba231d70\"},{\"type\":\"Grid\",\"id\":\"fbfc8de8-bb8e-45f2-c544-0110242eab1d\"},{\"type\":\"LinearAxis\",\"id\":\"295bbb71-c767-4e62-cea9-fd82614afb58\"},{\"type\":\"Grid\",\"id\":\"676a8e95-a689-4ce2-ccdf-bc8ad9f32418\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"525beeef-1526-4bb9-cbcf-5fed4d9e2200\"},{\"type\":\"WheelZoomTool\",\"id\":\"fb8d1727-b786-45ce-c531-9c54b5609220\"},{\"type\":\"BoxZoomTool\",\"id\":\"598729a1-0cf7-497a-c946-bb2b6c2bb0b4\"},{\"type\":\"PreviewSaveTool\",\"id\":\"294bc1d6-012f-4c1b-ccc7-8ff65da8cfb9\"},{\"type\":\"ResizeTool\",\"id\":\"8065d0d8-e099-4afe-ca1c-cd2fa32b7fc2\"},{\"type\":\"ResetTool\",\"id\":\"b8bff12f-b404-43d6-c3ca-4404aedee39e\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"295bbb71-c767-4e62-cea9-fd82614afb58\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"e0b42cff-87b8-4a28-cad0-9ac042194cb2\"},\"id\":\"0f817134-8a06-4a03-ca81-ef30cfe9a750\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#90ac4a97-417d-4903-c98b-ed9a675d4918\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#90ac4a97-417d-4903-c98b-ed9a675d4918\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"90ac4a97-417d-4903-c98b-ed9a675d4918\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"90ac4a97-417d-4903-c98b-ed9a675d4918\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '90ac4a97-417d-4903-c98b-ed9a675d4918'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"22748664-18c5-491a-c983-aa6519a2cf3d\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"dfc5d210-21c2-4941-c9e8-e315d3e43f11\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2609,95,92,109,111,86,88,83,108,90,90,84,85,72,73,84,75,65,79,62,60,64,49,52,51,36,34,35,28,31,32,22,26,27,25,17,22,20,14,16,11,12,10,12,12,5,4,6,3,4,7,5,0,2,1,0,1,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"dfc5d210-21c2-4941-c9e8-e315d3e43f11\",\"doc\":null,\"tags\":[]}},{\"id\":\"dbcc3eaa-b727-47b6-c720-42663355dce0\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"dbcc3eaa-b727-47b6-c720-42663355dce0\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"5009ef23-82c9-4a61-ca83-74682f17fda2\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"5009ef23-82c9-4a61-ca83-74682f17fda2\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"cb31dc76-94d6-465b-c6f7-be2f9280a00e\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"5009ef23-82c9-4a61-ca83-74682f17fda2\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"dfc5d210-21c2-4941-c9e8-e315d3e43f11\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"dbcc3eaa-b727-47b6-c720-42663355dce0\"},\"selection_glyph\":null,\"id\":\"cb31dc76-94d6-465b-c6f7-be2f9280a00e\",\"tags\":[]}},{\"id\":\"2ce6d563-645b-437e-c3e5-955c0880629e\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"dfc5d210-21c2-4941-c9e8-e315d3e43f11\"}}],\"id\":\"2ce6d563-645b-437e-c3e5-955c0880629e\",\"tags\":[],\"doc\":null}},{\"id\":\"ae9bdc2a-8636-481f-c89f-c93e65dd2be2\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"dfc5d210-21c2-4941-c9e8-e315d3e43f11\"}}],\"id\":\"ae9bdc2a-8636-481f-c89f-c93e65dd2be2\",\"tags\":[],\"doc\":null}},{\"id\":\"6ea307e2-93aa-4cdd-cc53-0fe234bdd645\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"6ea307e2-93aa-4cdd-cc53-0fe234bdd645\",\"geometries\":[],\"doc\":null}},{\"id\":\"16ca4d4e-69df-4fa1-cf2a-9b4b1287e209\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"16ca4d4e-69df-4fa1-cf2a-9b4b1287e209\",\"tags\":[],\"doc\":null}},{\"id\":\"bc15cc70-ce9e-41f7-c15e-cf43818825f6\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"bc15cc70-ce9e-41f7-c15e-cf43818825f6\",\"tags\":[],\"doc\":null}},{\"id\":\"f58a716c-0919-4ed1-ce81-4532f5591c71\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"16ca4d4e-69df-4fa1-cf2a-9b4b1287e209\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"bc15cc70-ce9e-41f7-c15e-cf43818825f6\"},\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"f58a716c-0919-4ed1-ce81-4532f5591c71\",\"doc\":null,\"tags\":[]}},{\"id\":\"7d0e3034-00f9-433f-c303-8ee9f15f43eb\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"bc15cc70-ce9e-41f7-c15e-cf43818825f6\"},\"id\":\"7d0e3034-00f9-433f-c303-8ee9f15f43eb\",\"doc\":null,\"tags\":[]}},{\"id\":\"3f6751a2-733b-4934-c931-1d1d86374e94\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"3f6751a2-733b-4934-c931-1d1d86374e94\",\"tags\":[],\"doc\":null}},{\"id\":\"916b9db1-7745-489e-c89f-1f690cc20823\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"916b9db1-7745-489e-c89f-1f690cc20823\",\"tags\":[],\"doc\":null}},{\"id\":\"1abaa17f-bd72-4876-c83c-1f031df8990d\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"3f6751a2-733b-4934-c931-1d1d86374e94\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"916b9db1-7745-489e-c89f-1f690cc20823\"},\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"1abaa17f-bd72-4876-c83c-1f031df8990d\",\"doc\":null,\"tags\":[]}},{\"id\":\"6b9474d1-8d60-4850-c806-e7a23f5fff7f\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"916b9db1-7745-489e-c89f-1f690cc20823\"},\"id\":\"6b9474d1-8d60-4850-c806-e7a23f5fff7f\",\"doc\":null,\"tags\":[]}},{\"id\":\"a49f8f88-172c-43fc-c36e-1e4be944b303\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"a49f8f88-172c-43fc-c36e-1e4be944b303\",\"doc\":null,\"tags\":[]}},{\"id\":\"4c92973d-d7fe-41e5-c1dd-b80d028b6905\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"4c92973d-d7fe-41e5-c1dd-b80d028b6905\",\"doc\":null,\"tags\":[]}},{\"id\":\"c1b533d8-3c18-4cdd-cc47-403647fe1018\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c1b533d8-3c18-4cdd-cc47-403647fe1018\",\"tags\":[],\"doc\":null}},{\"id\":\"f7004df0-ddf7-4d03-cdb8-4fa1de6e3bcf\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"f7004df0-ddf7-4d03-cdb8-4fa1de6e3bcf\",\"tags\":[],\"doc\":null}},{\"id\":\"fc73a7e6-7404-4f02-cf0e-21bbb4c021ef\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"fc73a7e6-7404-4f02-cf0e-21bbb4c021ef\",\"tags\":[],\"doc\":null}},{\"id\":\"3341b4ae-cbb7-4b06-cb09-af6b68284b67\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"3341b4ae-cbb7-4b06-cb09-af6b68284b67\",\"tags\":[],\"doc\":null}},{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"2ce6d563-645b-437e-c3e5-955c0880629e\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"6ea307e2-93aa-4cdd-cc53-0fe234bdd645\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"f58a716c-0919-4ed1-ce81-4532f5591c71\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"cb31dc76-94d6-465b-c6f7-be2f9280a00e\"},{\"type\":\"LinearAxis\",\"id\":\"f58a716c-0919-4ed1-ce81-4532f5591c71\"},{\"type\":\"Grid\",\"id\":\"7d0e3034-00f9-433f-c303-8ee9f15f43eb\"},{\"type\":\"LinearAxis\",\"id\":\"1abaa17f-bd72-4876-c83c-1f031df8990d\"},{\"type\":\"Grid\",\"id\":\"6b9474d1-8d60-4850-c806-e7a23f5fff7f\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"a49f8f88-172c-43fc-c36e-1e4be944b303\"},{\"type\":\"WheelZoomTool\",\"id\":\"4c92973d-d7fe-41e5-c1dd-b80d028b6905\"},{\"type\":\"BoxZoomTool\",\"id\":\"c1b533d8-3c18-4cdd-cc47-403647fe1018\"},{\"type\":\"PreviewSaveTool\",\"id\":\"f7004df0-ddf7-4d03-cdb8-4fa1de6e3bcf\"},{\"type\":\"ResizeTool\",\"id\":\"fc73a7e6-7404-4f02-cf0e-21bbb4c021ef\"},{\"type\":\"ResetTool\",\"id\":\"3341b4ae-cbb7-4b06-cb09-af6b68284b67\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 1\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"1abaa17f-bd72-4876-c83c-1f031df8990d\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"ae9bdc2a-8636-481f-c89f-c93e65dd2be2\"},\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#90ac4a97-417d-4903-c98b-ed9a675d4918\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#90ac4a97-417d-4903-c98b-ed9a675d4918\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"22748664-18c5-491a-c983-aa6519a2cf3d\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"dfc5d210-21c2-4941-c9e8-e315d3e43f11\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2609,95,92,109,111,86,88,83,108,90,90,84,85,72,73,84,75,65,79,62,60,64,49,52,51,36,34,35,28,31,32,22,26,27,25,17,22,20,14,16,11,12,10,12,12,5,4,6,3,4,7,5,0,2,1,0,1,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"dfc5d210-21c2-4941-c9e8-e315d3e43f11\",\"doc\":null,\"tags\":[]}},{\"id\":\"dbcc3eaa-b727-47b6-c720-42663355dce0\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"dbcc3eaa-b727-47b6-c720-42663355dce0\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"5009ef23-82c9-4a61-ca83-74682f17fda2\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"5009ef23-82c9-4a61-ca83-74682f17fda2\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"cb31dc76-94d6-465b-c6f7-be2f9280a00e\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"5009ef23-82c9-4a61-ca83-74682f17fda2\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"dfc5d210-21c2-4941-c9e8-e315d3e43f11\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"dbcc3eaa-b727-47b6-c720-42663355dce0\"},\"selection_glyph\":null,\"id\":\"cb31dc76-94d6-465b-c6f7-be2f9280a00e\",\"tags\":[]}},{\"id\":\"2ce6d563-645b-437e-c3e5-955c0880629e\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"dfc5d210-21c2-4941-c9e8-e315d3e43f11\"}}],\"id\":\"2ce6d563-645b-437e-c3e5-955c0880629e\",\"tags\":[],\"doc\":null}},{\"id\":\"ae9bdc2a-8636-481f-c89f-c93e65dd2be2\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"dfc5d210-21c2-4941-c9e8-e315d3e43f11\"}}],\"id\":\"ae9bdc2a-8636-481f-c89f-c93e65dd2be2\",\"tags\":[],\"doc\":null}},{\"id\":\"6ea307e2-93aa-4cdd-cc53-0fe234bdd645\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"6ea307e2-93aa-4cdd-cc53-0fe234bdd645\",\"geometries\":[],\"doc\":null}},{\"id\":\"16ca4d4e-69df-4fa1-cf2a-9b4b1287e209\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"16ca4d4e-69df-4fa1-cf2a-9b4b1287e209\",\"tags\":[],\"doc\":null}},{\"id\":\"bc15cc70-ce9e-41f7-c15e-cf43818825f6\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"bc15cc70-ce9e-41f7-c15e-cf43818825f6\",\"tags\":[],\"doc\":null}},{\"id\":\"f58a716c-0919-4ed1-ce81-4532f5591c71\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"16ca4d4e-69df-4fa1-cf2a-9b4b1287e209\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"bc15cc70-ce9e-41f7-c15e-cf43818825f6\"},\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"f58a716c-0919-4ed1-ce81-4532f5591c71\",\"doc\":null,\"tags\":[]}},{\"id\":\"7d0e3034-00f9-433f-c303-8ee9f15f43eb\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"bc15cc70-ce9e-41f7-c15e-cf43818825f6\"},\"id\":\"7d0e3034-00f9-433f-c303-8ee9f15f43eb\",\"doc\":null,\"tags\":[]}},{\"id\":\"3f6751a2-733b-4934-c931-1d1d86374e94\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"3f6751a2-733b-4934-c931-1d1d86374e94\",\"tags\":[],\"doc\":null}},{\"id\":\"916b9db1-7745-489e-c89f-1f690cc20823\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"916b9db1-7745-489e-c89f-1f690cc20823\",\"tags\":[],\"doc\":null}},{\"id\":\"1abaa17f-bd72-4876-c83c-1f031df8990d\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"3f6751a2-733b-4934-c931-1d1d86374e94\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"916b9db1-7745-489e-c89f-1f690cc20823\"},\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"1abaa17f-bd72-4876-c83c-1f031df8990d\",\"doc\":null,\"tags\":[]}},{\"id\":\"6b9474d1-8d60-4850-c806-e7a23f5fff7f\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"916b9db1-7745-489e-c89f-1f690cc20823\"},\"id\":\"6b9474d1-8d60-4850-c806-e7a23f5fff7f\",\"doc\":null,\"tags\":[]}},{\"id\":\"a49f8f88-172c-43fc-c36e-1e4be944b303\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"a49f8f88-172c-43fc-c36e-1e4be944b303\",\"doc\":null,\"tags\":[]}},{\"id\":\"4c92973d-d7fe-41e5-c1dd-b80d028b6905\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"4c92973d-d7fe-41e5-c1dd-b80d028b6905\",\"doc\":null,\"tags\":[]}},{\"id\":\"c1b533d8-3c18-4cdd-cc47-403647fe1018\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c1b533d8-3c18-4cdd-cc47-403647fe1018\",\"tags\":[],\"doc\":null}},{\"id\":\"f7004df0-ddf7-4d03-cdb8-4fa1de6e3bcf\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"f7004df0-ddf7-4d03-cdb8-4fa1de6e3bcf\",\"tags\":[],\"doc\":null}},{\"id\":\"fc73a7e6-7404-4f02-cf0e-21bbb4c021ef\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"fc73a7e6-7404-4f02-cf0e-21bbb4c021ef\",\"tags\":[],\"doc\":null}},{\"id\":\"3341b4ae-cbb7-4b06-cb09-af6b68284b67\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"3341b4ae-cbb7-4b06-cb09-af6b68284b67\",\"tags\":[],\"doc\":null}},{\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"2ce6d563-645b-437e-c3e5-955c0880629e\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"6ea307e2-93aa-4cdd-cc53-0fe234bdd645\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"f58a716c-0919-4ed1-ce81-4532f5591c71\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"cb31dc76-94d6-465b-c6f7-be2f9280a00e\"},{\"type\":\"LinearAxis\",\"id\":\"f58a716c-0919-4ed1-ce81-4532f5591c71\"},{\"type\":\"Grid\",\"id\":\"7d0e3034-00f9-433f-c303-8ee9f15f43eb\"},{\"type\":\"LinearAxis\",\"id\":\"1abaa17f-bd72-4876-c83c-1f031df8990d\"},{\"type\":\"Grid\",\"id\":\"6b9474d1-8d60-4850-c806-e7a23f5fff7f\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"a49f8f88-172c-43fc-c36e-1e4be944b303\"},{\"type\":\"WheelZoomTool\",\"id\":\"4c92973d-d7fe-41e5-c1dd-b80d028b6905\"},{\"type\":\"BoxZoomTool\",\"id\":\"c1b533d8-3c18-4cdd-cc47-403647fe1018\"},{\"type\":\"PreviewSaveTool\",\"id\":\"f7004df0-ddf7-4d03-cdb8-4fa1de6e3bcf\"},{\"type\":\"ResizeTool\",\"id\":\"fc73a7e6-7404-4f02-cf0e-21bbb4c021ef\"},{\"type\":\"ResetTool\",\"id\":\"3341b4ae-cbb7-4b06-cb09-af6b68284b67\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 1\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"1abaa17f-bd72-4876-c83c-1f031df8990d\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"ae9bdc2a-8636-481f-c89f-c93e65dd2be2\"},\"id\":\"22748664-18c5-491a-c983-aa6519a2cf3d\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#90ac4a97-417d-4903-c98b-ed9a675d4918\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#90ac4a97-417d-4903-c98b-ed9a675d4918\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"4790005a-184c-44cd-c430-d44d8e4487c9\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"90ac4a97-417d-4903-c98b-ed9a675d4918\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '90ac4a97-417d-4903-c98b-ed9a675d4918'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"9ad64c8d-0dc1-490d-c9da-0dd82bac1e91\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2609,95,92,109,111,86,88,83,108,90,90,84,85,72,73,84,75,65,79,62,60,64,49,52,51,36,34,35,28,31,32,22,26,27,25,17,22,20,14,16,11,12,10,12,12,5,4,6,3,4,7,5,0,2,1,0,1,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"9ad64c8d-0dc1-490d-c9da-0dd82bac1e91\",\"doc\":null,\"tags\":[]}},{\"id\":\"88fe02b4-c305-4443-c4bc-51a48e8ab53c\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"88fe02b4-c305-4443-c4bc-51a48e8ab53c\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"3de3aa81-2bc2-4514-c55b-552a597be5ee\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"3de3aa81-2bc2-4514-c55b-552a597be5ee\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"30478146-1415-43bc-c354-2f11b7f63741\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"3de3aa81-2bc2-4514-c55b-552a597be5ee\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"9ad64c8d-0dc1-490d-c9da-0dd82bac1e91\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"88fe02b4-c305-4443-c4bc-51a48e8ab53c\"},\"selection_glyph\":null,\"id\":\"30478146-1415-43bc-c354-2f11b7f63741\",\"tags\":[]}},{\"id\":\"67fedde7-77f3-4be4-cbee-f8d7e302e1f3\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9ad64c8d-0dc1-490d-c9da-0dd82bac1e91\"}}],\"id\":\"67fedde7-77f3-4be4-cbee-f8d7e302e1f3\",\"tags\":[],\"doc\":null}},{\"id\":\"bf1c741c-5060-4927-c9b9-07391de6e8a4\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9ad64c8d-0dc1-490d-c9da-0dd82bac1e91\"}}],\"id\":\"bf1c741c-5060-4927-c9b9-07391de6e8a4\",\"tags\":[],\"doc\":null}},{\"id\":\"e4375cef-c895-46d0-c6a9-fab205519e72\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"e4375cef-c895-46d0-c6a9-fab205519e72\",\"geometries\":[],\"doc\":null}},{\"id\":\"648b2e60-e405-4c40-cc5b-fff61141078a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"648b2e60-e405-4c40-cc5b-fff61141078a\",\"tags\":[],\"doc\":null}},{\"id\":\"489e075e-014c-4ef5-ce93-ac111bcdfad3\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"489e075e-014c-4ef5-ce93-ac111bcdfad3\",\"tags\":[],\"doc\":null}},{\"id\":\"4323d333-fe4b-47ae-c720-624cf01f3eae\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"648b2e60-e405-4c40-cc5b-fff61141078a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"489e075e-014c-4ef5-ce93-ac111bcdfad3\"},\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"4323d333-fe4b-47ae-c720-624cf01f3eae\",\"doc\":null,\"tags\":[]}},{\"id\":\"1aa638fb-0aeb-4e45-cebe-45eea8d8a6e4\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"489e075e-014c-4ef5-ce93-ac111bcdfad3\"},\"id\":\"1aa638fb-0aeb-4e45-cebe-45eea8d8a6e4\",\"doc\":null,\"tags\":[]}},{\"id\":\"a5b6de1d-d2b3-4e39-ce5e-d76a30234d47\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"a5b6de1d-d2b3-4e39-ce5e-d76a30234d47\",\"tags\":[],\"doc\":null}},{\"id\":\"d8769ff3-60c1-4be2-cbef-3376017c54e6\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"d8769ff3-60c1-4be2-cbef-3376017c54e6\",\"tags\":[],\"doc\":null}},{\"id\":\"5cff97a7-73c3-432a-c325-b8d3f3c8984a\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"a5b6de1d-d2b3-4e39-ce5e-d76a30234d47\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d8769ff3-60c1-4be2-cbef-3376017c54e6\"},\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"5cff97a7-73c3-432a-c325-b8d3f3c8984a\",\"doc\":null,\"tags\":[]}},{\"id\":\"8fece7b3-34f4-4a7d-ca00-df339eec392a\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d8769ff3-60c1-4be2-cbef-3376017c54e6\"},\"id\":\"8fece7b3-34f4-4a7d-ca00-df339eec392a\",\"doc\":null,\"tags\":[]}},{\"id\":\"51b3bdeb-9054-46ac-c68b-ae4a6f851315\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"51b3bdeb-9054-46ac-c68b-ae4a6f851315\",\"doc\":null,\"tags\":[]}},{\"id\":\"4e5f4750-9a88-4fca-cf9f-cd4ce3b7a203\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"4e5f4750-9a88-4fca-cf9f-cd4ce3b7a203\",\"doc\":null,\"tags\":[]}},{\"id\":\"49fd7e0a-99e4-42c9-c230-569e198fd904\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"49fd7e0a-99e4-42c9-c230-569e198fd904\",\"tags\":[],\"doc\":null}},{\"id\":\"71c762a4-7339-4c46-cc34-a9cde1830045\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"71c762a4-7339-4c46-cc34-a9cde1830045\",\"tags\":[],\"doc\":null}},{\"id\":\"c743e878-2950-4f7e-cfc8-7835840a558a\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c743e878-2950-4f7e-cfc8-7835840a558a\",\"tags\":[],\"doc\":null}},{\"id\":\"80916607-4ec3-4111-c1ce-45221464354c\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"80916607-4ec3-4111-c1ce-45221464354c\",\"tags\":[],\"doc\":null}},{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"67fedde7-77f3-4be4-cbee-f8d7e302e1f3\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"e4375cef-c895-46d0-c6a9-fab205519e72\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"4323d333-fe4b-47ae-c720-624cf01f3eae\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"30478146-1415-43bc-c354-2f11b7f63741\"},{\"type\":\"LinearAxis\",\"id\":\"4323d333-fe4b-47ae-c720-624cf01f3eae\"},{\"type\":\"Grid\",\"id\":\"1aa638fb-0aeb-4e45-cebe-45eea8d8a6e4\"},{\"type\":\"LinearAxis\",\"id\":\"5cff97a7-73c3-432a-c325-b8d3f3c8984a\"},{\"type\":\"Grid\",\"id\":\"8fece7b3-34f4-4a7d-ca00-df339eec392a\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"51b3bdeb-9054-46ac-c68b-ae4a6f851315\"},{\"type\":\"WheelZoomTool\",\"id\":\"4e5f4750-9a88-4fca-cf9f-cd4ce3b7a203\"},{\"type\":\"BoxZoomTool\",\"id\":\"49fd7e0a-99e4-42c9-c230-569e198fd904\"},{\"type\":\"PreviewSaveTool\",\"id\":\"71c762a4-7339-4c46-cc34-a9cde1830045\"},{\"type\":\"ResizeTool\",\"id\":\"c743e878-2950-4f7e-cfc8-7835840a558a\"},{\"type\":\"ResetTool\",\"id\":\"80916607-4ec3-4111-c1ce-45221464354c\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 1\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"5cff97a7-73c3-432a-c325-b8d3f3c8984a\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"bf1c741c-5060-4927-c9b9-07391de6e8a4\"},\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#90ac4a97-417d-4903-c98b-ed9a675d4918\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#90ac4a97-417d-4903-c98b-ed9a675d4918\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"9ad64c8d-0dc1-490d-c9da-0dd82bac1e91\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2609,95,92,109,111,86,88,83,108,90,90,84,85,72,73,84,75,65,79,62,60,64,49,52,51,36,34,35,28,31,32,22,26,27,25,17,22,20,14,16,11,12,10,12,12,5,4,6,3,4,7,5,0,2,1,0,1,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"9ad64c8d-0dc1-490d-c9da-0dd82bac1e91\",\"doc\":null,\"tags\":[]}},{\"id\":\"88fe02b4-c305-4443-c4bc-51a48e8ab53c\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"88fe02b4-c305-4443-c4bc-51a48e8ab53c\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"3de3aa81-2bc2-4514-c55b-552a597be5ee\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"3de3aa81-2bc2-4514-c55b-552a597be5ee\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"30478146-1415-43bc-c354-2f11b7f63741\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"3de3aa81-2bc2-4514-c55b-552a597be5ee\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"9ad64c8d-0dc1-490d-c9da-0dd82bac1e91\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"88fe02b4-c305-4443-c4bc-51a48e8ab53c\"},\"selection_glyph\":null,\"id\":\"30478146-1415-43bc-c354-2f11b7f63741\",\"tags\":[]}},{\"id\":\"67fedde7-77f3-4be4-cbee-f8d7e302e1f3\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9ad64c8d-0dc1-490d-c9da-0dd82bac1e91\"}}],\"id\":\"67fedde7-77f3-4be4-cbee-f8d7e302e1f3\",\"tags\":[],\"doc\":null}},{\"id\":\"bf1c741c-5060-4927-c9b9-07391de6e8a4\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9ad64c8d-0dc1-490d-c9da-0dd82bac1e91\"}}],\"id\":\"bf1c741c-5060-4927-c9b9-07391de6e8a4\",\"tags\":[],\"doc\":null}},{\"id\":\"e4375cef-c895-46d0-c6a9-fab205519e72\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"e4375cef-c895-46d0-c6a9-fab205519e72\",\"geometries\":[],\"doc\":null}},{\"id\":\"648b2e60-e405-4c40-cc5b-fff61141078a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"648b2e60-e405-4c40-cc5b-fff61141078a\",\"tags\":[],\"doc\":null}},{\"id\":\"489e075e-014c-4ef5-ce93-ac111bcdfad3\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"489e075e-014c-4ef5-ce93-ac111bcdfad3\",\"tags\":[],\"doc\":null}},{\"id\":\"4323d333-fe4b-47ae-c720-624cf01f3eae\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"648b2e60-e405-4c40-cc5b-fff61141078a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"489e075e-014c-4ef5-ce93-ac111bcdfad3\"},\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"4323d333-fe4b-47ae-c720-624cf01f3eae\",\"doc\":null,\"tags\":[]}},{\"id\":\"1aa638fb-0aeb-4e45-cebe-45eea8d8a6e4\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"489e075e-014c-4ef5-ce93-ac111bcdfad3\"},\"id\":\"1aa638fb-0aeb-4e45-cebe-45eea8d8a6e4\",\"doc\":null,\"tags\":[]}},{\"id\":\"a5b6de1d-d2b3-4e39-ce5e-d76a30234d47\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"a5b6de1d-d2b3-4e39-ce5e-d76a30234d47\",\"tags\":[],\"doc\":null}},{\"id\":\"d8769ff3-60c1-4be2-cbef-3376017c54e6\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"d8769ff3-60c1-4be2-cbef-3376017c54e6\",\"tags\":[],\"doc\":null}},{\"id\":\"5cff97a7-73c3-432a-c325-b8d3f3c8984a\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"a5b6de1d-d2b3-4e39-ce5e-d76a30234d47\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d8769ff3-60c1-4be2-cbef-3376017c54e6\"},\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"5cff97a7-73c3-432a-c325-b8d3f3c8984a\",\"doc\":null,\"tags\":[]}},{\"id\":\"8fece7b3-34f4-4a7d-ca00-df339eec392a\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d8769ff3-60c1-4be2-cbef-3376017c54e6\"},\"id\":\"8fece7b3-34f4-4a7d-ca00-df339eec392a\",\"doc\":null,\"tags\":[]}},{\"id\":\"51b3bdeb-9054-46ac-c68b-ae4a6f851315\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"51b3bdeb-9054-46ac-c68b-ae4a6f851315\",\"doc\":null,\"tags\":[]}},{\"id\":\"4e5f4750-9a88-4fca-cf9f-cd4ce3b7a203\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"4e5f4750-9a88-4fca-cf9f-cd4ce3b7a203\",\"doc\":null,\"tags\":[]}},{\"id\":\"49fd7e0a-99e4-42c9-c230-569e198fd904\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"49fd7e0a-99e4-42c9-c230-569e198fd904\",\"tags\":[],\"doc\":null}},{\"id\":\"71c762a4-7339-4c46-cc34-a9cde1830045\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"71c762a4-7339-4c46-cc34-a9cde1830045\",\"tags\":[],\"doc\":null}},{\"id\":\"c743e878-2950-4f7e-cfc8-7835840a558a\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c743e878-2950-4f7e-cfc8-7835840a558a\",\"tags\":[],\"doc\":null}},{\"id\":\"80916607-4ec3-4111-c1ce-45221464354c\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"80916607-4ec3-4111-c1ce-45221464354c\",\"tags\":[],\"doc\":null}},{\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"67fedde7-77f3-4be4-cbee-f8d7e302e1f3\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"e4375cef-c895-46d0-c6a9-fab205519e72\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"4323d333-fe4b-47ae-c720-624cf01f3eae\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"30478146-1415-43bc-c354-2f11b7f63741\"},{\"type\":\"LinearAxis\",\"id\":\"4323d333-fe4b-47ae-c720-624cf01f3eae\"},{\"type\":\"Grid\",\"id\":\"1aa638fb-0aeb-4e45-cebe-45eea8d8a6e4\"},{\"type\":\"LinearAxis\",\"id\":\"5cff97a7-73c3-432a-c325-b8d3f3c8984a\"},{\"type\":\"Grid\",\"id\":\"8fece7b3-34f4-4a7d-ca00-df339eec392a\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"51b3bdeb-9054-46ac-c68b-ae4a6f851315\"},{\"type\":\"WheelZoomTool\",\"id\":\"4e5f4750-9a88-4fca-cf9f-cd4ce3b7a203\"},{\"type\":\"BoxZoomTool\",\"id\":\"49fd7e0a-99e4-42c9-c230-569e198fd904\"},{\"type\":\"PreviewSaveTool\",\"id\":\"71c762a4-7339-4c46-cc34-a9cde1830045\"},{\"type\":\"ResizeTool\",\"id\":\"c743e878-2950-4f7e-cfc8-7835840a558a\"},{\"type\":\"ResetTool\",\"id\":\"80916607-4ec3-4111-c1ce-45221464354c\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 1\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"5cff97a7-73c3-432a-c325-b8d3f3c8984a\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"bf1c741c-5060-4927-c9b9-07391de6e8a4\"},\"id\":\"edb83bf6-05e3-44b6-c4a2-4de8e78dc2eb\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#90ac4a97-417d-4903-c98b-ed9a675d4918\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#90ac4a97-417d-4903-c98b-ed9a675d4918\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"38bd9b0b-8d2c-432c-c33c-6353b5ddd497\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"54fb40ed-43a2-470e-c73d-0ef9f3665fbd\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '54fb40ed-43a2-470e-c73d-0ef9f3665fbd'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"3d45818a-b5bc-48e0-c871-129881dfe385\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2596,140,133,137,124,123,140,109,118,122,135,95,78,103,76,77,85,67,70,56,66,50,44,32,26,35,30,15,21,19,16,9,11,6,5,7,6,3,1,6,3,2,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"3d45818a-b5bc-48e0-c871-129881dfe385\",\"doc\":null,\"tags\":[]}},{\"id\":\"bb20367c-45be-4187-c160-91a65e1b87ee\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"bb20367c-45be-4187-c160-91a65e1b87ee\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"75deb4e1-de4b-4277-c2b6-03402a290f7d\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"75deb4e1-de4b-4277-c2b6-03402a290f7d\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"c77fc70e-c027-4bdd-cb74-9efe64b30c3f\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"75deb4e1-de4b-4277-c2b6-03402a290f7d\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"3d45818a-b5bc-48e0-c871-129881dfe385\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"bb20367c-45be-4187-c160-91a65e1b87ee\"},\"selection_glyph\":null,\"id\":\"c77fc70e-c027-4bdd-cb74-9efe64b30c3f\",\"tags\":[]}},{\"id\":\"6761a806-b16f-4d65-cdfb-ac8a32d052d3\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3d45818a-b5bc-48e0-c871-129881dfe385\"}}],\"id\":\"6761a806-b16f-4d65-cdfb-ac8a32d052d3\",\"tags\":[],\"doc\":null}},{\"id\":\"94195310-aa19-4ca4-ccff-ddd71d30ae2e\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3d45818a-b5bc-48e0-c871-129881dfe385\"}}],\"id\":\"94195310-aa19-4ca4-ccff-ddd71d30ae2e\",\"tags\":[],\"doc\":null}},{\"id\":\"1a51a132-5544-45d0-c517-c7413397c262\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"1a51a132-5544-45d0-c517-c7413397c262\",\"geometries\":[],\"doc\":null}},{\"id\":\"bb1614d0-945b-49bc-c939-478134e839e5\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"bb1614d0-945b-49bc-c939-478134e839e5\",\"tags\":[],\"doc\":null}},{\"id\":\"ba89f1af-8906-4b2e-cb32-cc24feeefc78\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"ba89f1af-8906-4b2e-cb32-cc24feeefc78\",\"tags\":[],\"doc\":null}},{\"id\":\"6a3bde1f-0946-44d8-c4ae-464b440e8a88\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"bb1614d0-945b-49bc-c939-478134e839e5\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"ba89f1af-8906-4b2e-cb32-cc24feeefc78\"},\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"6a3bde1f-0946-44d8-c4ae-464b440e8a88\",\"doc\":null,\"tags\":[]}},{\"id\":\"c2b03050-7182-4818-c81f-517947bf8a35\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"ba89f1af-8906-4b2e-cb32-cc24feeefc78\"},\"id\":\"c2b03050-7182-4818-c81f-517947bf8a35\",\"doc\":null,\"tags\":[]}},{\"id\":\"70af5f75-a406-4cb3-ccd2-c2d320ffe43a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"70af5f75-a406-4cb3-ccd2-c2d320ffe43a\",\"tags\":[],\"doc\":null}},{\"id\":\"d8f84276-0c60-46a2-c679-e3d3417d7849\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"d8f84276-0c60-46a2-c679-e3d3417d7849\",\"tags\":[],\"doc\":null}},{\"id\":\"78b1c040-27e8-48fc-c89a-a00850c8fc2e\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"70af5f75-a406-4cb3-ccd2-c2d320ffe43a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d8f84276-0c60-46a2-c679-e3d3417d7849\"},\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"78b1c040-27e8-48fc-c89a-a00850c8fc2e\",\"doc\":null,\"tags\":[]}},{\"id\":\"58a0b646-0879-4622-c6ba-6be7f1680868\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d8f84276-0c60-46a2-c679-e3d3417d7849\"},\"id\":\"58a0b646-0879-4622-c6ba-6be7f1680868\",\"doc\":null,\"tags\":[]}},{\"id\":\"90cd3bab-7862-4102-c12a-1a4193098f73\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"90cd3bab-7862-4102-c12a-1a4193098f73\",\"doc\":null,\"tags\":[]}},{\"id\":\"7d2b0a47-170c-4ac1-ca4a-6685398c9c2b\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"7d2b0a47-170c-4ac1-ca4a-6685398c9c2b\",\"doc\":null,\"tags\":[]}},{\"id\":\"79655b13-5385-4dc0-cd9f-9c4590daca1a\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"79655b13-5385-4dc0-cd9f-9c4590daca1a\",\"tags\":[],\"doc\":null}},{\"id\":\"49639db4-a51b-49a2-c935-bff03b70d736\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"49639db4-a51b-49a2-c935-bff03b70d736\",\"tags\":[],\"doc\":null}},{\"id\":\"ae0cac3b-e2e6-4604-c6ee-599419a12508\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"ae0cac3b-e2e6-4604-c6ee-599419a12508\",\"tags\":[],\"doc\":null}},{\"id\":\"68582311-abde-4789-c715-78a4d0c0d2cc\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"68582311-abde-4789-c715-78a4d0c0d2cc\",\"tags\":[],\"doc\":null}},{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"6761a806-b16f-4d65-cdfb-ac8a32d052d3\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"1a51a132-5544-45d0-c517-c7413397c262\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"6a3bde1f-0946-44d8-c4ae-464b440e8a88\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"c77fc70e-c027-4bdd-cb74-9efe64b30c3f\"},{\"type\":\"LinearAxis\",\"id\":\"6a3bde1f-0946-44d8-c4ae-464b440e8a88\"},{\"type\":\"Grid\",\"id\":\"c2b03050-7182-4818-c81f-517947bf8a35\"},{\"type\":\"LinearAxis\",\"id\":\"78b1c040-27e8-48fc-c89a-a00850c8fc2e\"},{\"type\":\"Grid\",\"id\":\"58a0b646-0879-4622-c6ba-6be7f1680868\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"90cd3bab-7862-4102-c12a-1a4193098f73\"},{\"type\":\"WheelZoomTool\",\"id\":\"7d2b0a47-170c-4ac1-ca4a-6685398c9c2b\"},{\"type\":\"BoxZoomTool\",\"id\":\"79655b13-5385-4dc0-cd9f-9c4590daca1a\"},{\"type\":\"PreviewSaveTool\",\"id\":\"49639db4-a51b-49a2-c935-bff03b70d736\"},{\"type\":\"ResizeTool\",\"id\":\"ae0cac3b-e2e6-4604-c6ee-599419a12508\"},{\"type\":\"ResetTool\",\"id\":\"68582311-abde-4789-c715-78a4d0c0d2cc\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"78b1c040-27e8-48fc-c89a-a00850c8fc2e\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"94195310-aa19-4ca4-ccff-ddd71d30ae2e\"},\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"3d45818a-b5bc-48e0-c871-129881dfe385\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2596,140,133,137,124,123,140,109,118,122,135,95,78,103,76,77,85,67,70,56,66,50,44,32,26,35,30,15,21,19,16,9,11,6,5,7,6,3,1,6,3,2,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"3d45818a-b5bc-48e0-c871-129881dfe385\",\"doc\":null,\"tags\":[]}},{\"id\":\"bb20367c-45be-4187-c160-91a65e1b87ee\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"bb20367c-45be-4187-c160-91a65e1b87ee\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"75deb4e1-de4b-4277-c2b6-03402a290f7d\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"75deb4e1-de4b-4277-c2b6-03402a290f7d\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"c77fc70e-c027-4bdd-cb74-9efe64b30c3f\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"75deb4e1-de4b-4277-c2b6-03402a290f7d\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"3d45818a-b5bc-48e0-c871-129881dfe385\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"bb20367c-45be-4187-c160-91a65e1b87ee\"},\"selection_glyph\":null,\"id\":\"c77fc70e-c027-4bdd-cb74-9efe64b30c3f\",\"tags\":[]}},{\"id\":\"6761a806-b16f-4d65-cdfb-ac8a32d052d3\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3d45818a-b5bc-48e0-c871-129881dfe385\"}}],\"id\":\"6761a806-b16f-4d65-cdfb-ac8a32d052d3\",\"tags\":[],\"doc\":null}},{\"id\":\"94195310-aa19-4ca4-ccff-ddd71d30ae2e\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3d45818a-b5bc-48e0-c871-129881dfe385\"}}],\"id\":\"94195310-aa19-4ca4-ccff-ddd71d30ae2e\",\"tags\":[],\"doc\":null}},{\"id\":\"1a51a132-5544-45d0-c517-c7413397c262\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"1a51a132-5544-45d0-c517-c7413397c262\",\"geometries\":[],\"doc\":null}},{\"id\":\"bb1614d0-945b-49bc-c939-478134e839e5\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"bb1614d0-945b-49bc-c939-478134e839e5\",\"tags\":[],\"doc\":null}},{\"id\":\"ba89f1af-8906-4b2e-cb32-cc24feeefc78\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"ba89f1af-8906-4b2e-cb32-cc24feeefc78\",\"tags\":[],\"doc\":null}},{\"id\":\"6a3bde1f-0946-44d8-c4ae-464b440e8a88\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"bb1614d0-945b-49bc-c939-478134e839e5\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"ba89f1af-8906-4b2e-cb32-cc24feeefc78\"},\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"6a3bde1f-0946-44d8-c4ae-464b440e8a88\",\"doc\":null,\"tags\":[]}},{\"id\":\"c2b03050-7182-4818-c81f-517947bf8a35\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"ba89f1af-8906-4b2e-cb32-cc24feeefc78\"},\"id\":\"c2b03050-7182-4818-c81f-517947bf8a35\",\"doc\":null,\"tags\":[]}},{\"id\":\"70af5f75-a406-4cb3-ccd2-c2d320ffe43a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"70af5f75-a406-4cb3-ccd2-c2d320ffe43a\",\"tags\":[],\"doc\":null}},{\"id\":\"d8f84276-0c60-46a2-c679-e3d3417d7849\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"d8f84276-0c60-46a2-c679-e3d3417d7849\",\"tags\":[],\"doc\":null}},{\"id\":\"78b1c040-27e8-48fc-c89a-a00850c8fc2e\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"70af5f75-a406-4cb3-ccd2-c2d320ffe43a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d8f84276-0c60-46a2-c679-e3d3417d7849\"},\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"78b1c040-27e8-48fc-c89a-a00850c8fc2e\",\"doc\":null,\"tags\":[]}},{\"id\":\"58a0b646-0879-4622-c6ba-6be7f1680868\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d8f84276-0c60-46a2-c679-e3d3417d7849\"},\"id\":\"58a0b646-0879-4622-c6ba-6be7f1680868\",\"doc\":null,\"tags\":[]}},{\"id\":\"90cd3bab-7862-4102-c12a-1a4193098f73\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"90cd3bab-7862-4102-c12a-1a4193098f73\",\"doc\":null,\"tags\":[]}},{\"id\":\"7d2b0a47-170c-4ac1-ca4a-6685398c9c2b\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"7d2b0a47-170c-4ac1-ca4a-6685398c9c2b\",\"doc\":null,\"tags\":[]}},{\"id\":\"79655b13-5385-4dc0-cd9f-9c4590daca1a\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"79655b13-5385-4dc0-cd9f-9c4590daca1a\",\"tags\":[],\"doc\":null}},{\"id\":\"49639db4-a51b-49a2-c935-bff03b70d736\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"49639db4-a51b-49a2-c935-bff03b70d736\",\"tags\":[],\"doc\":null}},{\"id\":\"ae0cac3b-e2e6-4604-c6ee-599419a12508\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"ae0cac3b-e2e6-4604-c6ee-599419a12508\",\"tags\":[],\"doc\":null}},{\"id\":\"68582311-abde-4789-c715-78a4d0c0d2cc\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"68582311-abde-4789-c715-78a4d0c0d2cc\",\"tags\":[],\"doc\":null}},{\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"6761a806-b16f-4d65-cdfb-ac8a32d052d3\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"1a51a132-5544-45d0-c517-c7413397c262\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"6a3bde1f-0946-44d8-c4ae-464b440e8a88\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"c77fc70e-c027-4bdd-cb74-9efe64b30c3f\"},{\"type\":\"LinearAxis\",\"id\":\"6a3bde1f-0946-44d8-c4ae-464b440e8a88\"},{\"type\":\"Grid\",\"id\":\"c2b03050-7182-4818-c81f-517947bf8a35\"},{\"type\":\"LinearAxis\",\"id\":\"78b1c040-27e8-48fc-c89a-a00850c8fc2e\"},{\"type\":\"Grid\",\"id\":\"58a0b646-0879-4622-c6ba-6be7f1680868\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"90cd3bab-7862-4102-c12a-1a4193098f73\"},{\"type\":\"WheelZoomTool\",\"id\":\"7d2b0a47-170c-4ac1-ca4a-6685398c9c2b\"},{\"type\":\"BoxZoomTool\",\"id\":\"79655b13-5385-4dc0-cd9f-9c4590daca1a\"},{\"type\":\"PreviewSaveTool\",\"id\":\"49639db4-a51b-49a2-c935-bff03b70d736\"},{\"type\":\"ResizeTool\",\"id\":\"ae0cac3b-e2e6-4604-c6ee-599419a12508\"},{\"type\":\"ResetTool\",\"id\":\"68582311-abde-4789-c715-78a4d0c0d2cc\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"78b1c040-27e8-48fc-c89a-a00850c8fc2e\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"94195310-aa19-4ca4-ccff-ddd71d30ae2e\"},\"id\":\"fb1c0a8c-3974-4ba7-cb54-d027d9fce98f\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"54fb40ed-43a2-470e-c73d-0ef9f3665fbd\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"54fb40ed-43a2-470e-c73d-0ef9f3665fbd\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '54fb40ed-43a2-470e-c73d-0ef9f3665fbd'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"1f07709c-9180-46ad-c656-0a5c28549279\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2596,140,133,137,124,123,140,109,118,122,135,95,78,103,76,77,85,67,70,56,66,50,44,32,26,35,30,15,21,19,16,9,11,6,5,7,6,3,1,6,3,2,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"1f07709c-9180-46ad-c656-0a5c28549279\",\"doc\":null,\"tags\":[]}},{\"id\":\"c9ad566e-7db4-47e1-c7e4-45f268caa4b7\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"c9ad566e-7db4-47e1-c7e4-45f268caa4b7\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"726d9651-26a7-4dbc-cde2-0196622ddb44\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"726d9651-26a7-4dbc-cde2-0196622ddb44\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"86917684-608d-4f6b-cff3-146a5c5197c7\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"726d9651-26a7-4dbc-cde2-0196622ddb44\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"1f07709c-9180-46ad-c656-0a5c28549279\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"c9ad566e-7db4-47e1-c7e4-45f268caa4b7\"},\"selection_glyph\":null,\"id\":\"86917684-608d-4f6b-cff3-146a5c5197c7\",\"tags\":[]}},{\"id\":\"c63eef67-c46d-48fa-c885-6d2dba752924\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1f07709c-9180-46ad-c656-0a5c28549279\"}}],\"id\":\"c63eef67-c46d-48fa-c885-6d2dba752924\",\"tags\":[],\"doc\":null}},{\"id\":\"fa53e8bb-63ea-4b35-cbbb-060d9521a3d0\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1f07709c-9180-46ad-c656-0a5c28549279\"}}],\"id\":\"fa53e8bb-63ea-4b35-cbbb-060d9521a3d0\",\"tags\":[],\"doc\":null}},{\"id\":\"26b910f7-7142-4da8-cdf7-b9d847846dc8\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"26b910f7-7142-4da8-cdf7-b9d847846dc8\",\"geometries\":[],\"doc\":null}},{\"id\":\"7e53a95b-08ef-4339-c32e-16902ef9f67f\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"7e53a95b-08ef-4339-c32e-16902ef9f67f\",\"tags\":[],\"doc\":null}},{\"id\":\"7c1c3b2b-9737-4c82-cc53-e49f48d9a50e\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7c1c3b2b-9737-4c82-cc53-e49f48d9a50e\",\"tags\":[],\"doc\":null}},{\"id\":\"9afa655f-a39a-4528-c531-0b258e1aed23\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"7e53a95b-08ef-4339-c32e-16902ef9f67f\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7c1c3b2b-9737-4c82-cc53-e49f48d9a50e\"},\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"9afa655f-a39a-4528-c531-0b258e1aed23\",\"doc\":null,\"tags\":[]}},{\"id\":\"d0d4b845-1e1d-4bba-cbfe-d0a02a0f6a0b\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7c1c3b2b-9737-4c82-cc53-e49f48d9a50e\"},\"id\":\"d0d4b845-1e1d-4bba-cbfe-d0a02a0f6a0b\",\"doc\":null,\"tags\":[]}},{\"id\":\"b3fb7d0d-10e3-4e01-ce5f-102b01eb5a09\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"b3fb7d0d-10e3-4e01-ce5f-102b01eb5a09\",\"tags\":[],\"doc\":null}},{\"id\":\"170864b3-51c1-48bb-c8b5-822ee5016f7f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"170864b3-51c1-48bb-c8b5-822ee5016f7f\",\"tags\":[],\"doc\":null}},{\"id\":\"4687fd86-8de1-480a-c815-083767da76ca\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"b3fb7d0d-10e3-4e01-ce5f-102b01eb5a09\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"170864b3-51c1-48bb-c8b5-822ee5016f7f\"},\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"4687fd86-8de1-480a-c815-083767da76ca\",\"doc\":null,\"tags\":[]}},{\"id\":\"f4cb1888-616c-45a0-c59e-109620a30fc8\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"170864b3-51c1-48bb-c8b5-822ee5016f7f\"},\"id\":\"f4cb1888-616c-45a0-c59e-109620a30fc8\",\"doc\":null,\"tags\":[]}},{\"id\":\"3dd3c44c-19a3-495b-c93f-c480dbfd62f0\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"3dd3c44c-19a3-495b-c93f-c480dbfd62f0\",\"doc\":null,\"tags\":[]}},{\"id\":\"aa79834e-62fe-4931-c97a-215505fb245f\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"aa79834e-62fe-4931-c97a-215505fb245f\",\"doc\":null,\"tags\":[]}},{\"id\":\"305b746c-3634-4deb-cd6a-06ee12c7e68c\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"305b746c-3634-4deb-cd6a-06ee12c7e68c\",\"tags\":[],\"doc\":null}},{\"id\":\"0e95a6a2-8d86-410c-c12b-7da8a7372f42\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"0e95a6a2-8d86-410c-c12b-7da8a7372f42\",\"tags\":[],\"doc\":null}},{\"id\":\"646beeb2-f4a7-41fc-c111-cf6af0eff6d8\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"646beeb2-f4a7-41fc-c111-cf6af0eff6d8\",\"tags\":[],\"doc\":null}},{\"id\":\"4f4d10f5-e388-4b9b-cbf9-c9449d93716f\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"4f4d10f5-e388-4b9b-cbf9-c9449d93716f\",\"tags\":[],\"doc\":null}},{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"c63eef67-c46d-48fa-c885-6d2dba752924\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"26b910f7-7142-4da8-cdf7-b9d847846dc8\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"9afa655f-a39a-4528-c531-0b258e1aed23\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"86917684-608d-4f6b-cff3-146a5c5197c7\"},{\"type\":\"LinearAxis\",\"id\":\"9afa655f-a39a-4528-c531-0b258e1aed23\"},{\"type\":\"Grid\",\"id\":\"d0d4b845-1e1d-4bba-cbfe-d0a02a0f6a0b\"},{\"type\":\"LinearAxis\",\"id\":\"4687fd86-8de1-480a-c815-083767da76ca\"},{\"type\":\"Grid\",\"id\":\"f4cb1888-616c-45a0-c59e-109620a30fc8\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"3dd3c44c-19a3-495b-c93f-c480dbfd62f0\"},{\"type\":\"WheelZoomTool\",\"id\":\"aa79834e-62fe-4931-c97a-215505fb245f\"},{\"type\":\"BoxZoomTool\",\"id\":\"305b746c-3634-4deb-cd6a-06ee12c7e68c\"},{\"type\":\"PreviewSaveTool\",\"id\":\"0e95a6a2-8d86-410c-c12b-7da8a7372f42\"},{\"type\":\"ResizeTool\",\"id\":\"646beeb2-f4a7-41fc-c111-cf6af0eff6d8\"},{\"type\":\"ResetTool\",\"id\":\"4f4d10f5-e388-4b9b-cbf9-c9449d93716f\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 2\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"4687fd86-8de1-480a-c815-083767da76ca\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"fa53e8bb-63ea-4b35-cbbb-060d9521a3d0\"},\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"1f07709c-9180-46ad-c656-0a5c28549279\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2596,140,133,137,124,123,140,109,118,122,135,95,78,103,76,77,85,67,70,56,66,50,44,32,26,35,30,15,21,19,16,9,11,6,5,7,6,3,1,6,3,2,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"1f07709c-9180-46ad-c656-0a5c28549279\",\"doc\":null,\"tags\":[]}},{\"id\":\"c9ad566e-7db4-47e1-c7e4-45f268caa4b7\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"c9ad566e-7db4-47e1-c7e4-45f268caa4b7\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"726d9651-26a7-4dbc-cde2-0196622ddb44\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"726d9651-26a7-4dbc-cde2-0196622ddb44\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"86917684-608d-4f6b-cff3-146a5c5197c7\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"726d9651-26a7-4dbc-cde2-0196622ddb44\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"1f07709c-9180-46ad-c656-0a5c28549279\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"c9ad566e-7db4-47e1-c7e4-45f268caa4b7\"},\"selection_glyph\":null,\"id\":\"86917684-608d-4f6b-cff3-146a5c5197c7\",\"tags\":[]}},{\"id\":\"c63eef67-c46d-48fa-c885-6d2dba752924\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1f07709c-9180-46ad-c656-0a5c28549279\"}}],\"id\":\"c63eef67-c46d-48fa-c885-6d2dba752924\",\"tags\":[],\"doc\":null}},{\"id\":\"fa53e8bb-63ea-4b35-cbbb-060d9521a3d0\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1f07709c-9180-46ad-c656-0a5c28549279\"}}],\"id\":\"fa53e8bb-63ea-4b35-cbbb-060d9521a3d0\",\"tags\":[],\"doc\":null}},{\"id\":\"26b910f7-7142-4da8-cdf7-b9d847846dc8\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"26b910f7-7142-4da8-cdf7-b9d847846dc8\",\"geometries\":[],\"doc\":null}},{\"id\":\"7e53a95b-08ef-4339-c32e-16902ef9f67f\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"7e53a95b-08ef-4339-c32e-16902ef9f67f\",\"tags\":[],\"doc\":null}},{\"id\":\"7c1c3b2b-9737-4c82-cc53-e49f48d9a50e\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7c1c3b2b-9737-4c82-cc53-e49f48d9a50e\",\"tags\":[],\"doc\":null}},{\"id\":\"9afa655f-a39a-4528-c531-0b258e1aed23\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"7e53a95b-08ef-4339-c32e-16902ef9f67f\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7c1c3b2b-9737-4c82-cc53-e49f48d9a50e\"},\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"9afa655f-a39a-4528-c531-0b258e1aed23\",\"doc\":null,\"tags\":[]}},{\"id\":\"d0d4b845-1e1d-4bba-cbfe-d0a02a0f6a0b\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7c1c3b2b-9737-4c82-cc53-e49f48d9a50e\"},\"id\":\"d0d4b845-1e1d-4bba-cbfe-d0a02a0f6a0b\",\"doc\":null,\"tags\":[]}},{\"id\":\"b3fb7d0d-10e3-4e01-ce5f-102b01eb5a09\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"b3fb7d0d-10e3-4e01-ce5f-102b01eb5a09\",\"tags\":[],\"doc\":null}},{\"id\":\"170864b3-51c1-48bb-c8b5-822ee5016f7f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"170864b3-51c1-48bb-c8b5-822ee5016f7f\",\"tags\":[],\"doc\":null}},{\"id\":\"4687fd86-8de1-480a-c815-083767da76ca\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"b3fb7d0d-10e3-4e01-ce5f-102b01eb5a09\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"170864b3-51c1-48bb-c8b5-822ee5016f7f\"},\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"4687fd86-8de1-480a-c815-083767da76ca\",\"doc\":null,\"tags\":[]}},{\"id\":\"f4cb1888-616c-45a0-c59e-109620a30fc8\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"170864b3-51c1-48bb-c8b5-822ee5016f7f\"},\"id\":\"f4cb1888-616c-45a0-c59e-109620a30fc8\",\"doc\":null,\"tags\":[]}},{\"id\":\"3dd3c44c-19a3-495b-c93f-c480dbfd62f0\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"3dd3c44c-19a3-495b-c93f-c480dbfd62f0\",\"doc\":null,\"tags\":[]}},{\"id\":\"aa79834e-62fe-4931-c97a-215505fb245f\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"aa79834e-62fe-4931-c97a-215505fb245f\",\"doc\":null,\"tags\":[]}},{\"id\":\"305b746c-3634-4deb-cd6a-06ee12c7e68c\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"305b746c-3634-4deb-cd6a-06ee12c7e68c\",\"tags\":[],\"doc\":null}},{\"id\":\"0e95a6a2-8d86-410c-c12b-7da8a7372f42\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"0e95a6a2-8d86-410c-c12b-7da8a7372f42\",\"tags\":[],\"doc\":null}},{\"id\":\"646beeb2-f4a7-41fc-c111-cf6af0eff6d8\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"646beeb2-f4a7-41fc-c111-cf6af0eff6d8\",\"tags\":[],\"doc\":null}},{\"id\":\"4f4d10f5-e388-4b9b-cbf9-c9449d93716f\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"4f4d10f5-e388-4b9b-cbf9-c9449d93716f\",\"tags\":[],\"doc\":null}},{\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"c63eef67-c46d-48fa-c885-6d2dba752924\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"26b910f7-7142-4da8-cdf7-b9d847846dc8\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"9afa655f-a39a-4528-c531-0b258e1aed23\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"86917684-608d-4f6b-cff3-146a5c5197c7\"},{\"type\":\"LinearAxis\",\"id\":\"9afa655f-a39a-4528-c531-0b258e1aed23\"},{\"type\":\"Grid\",\"id\":\"d0d4b845-1e1d-4bba-cbfe-d0a02a0f6a0b\"},{\"type\":\"LinearAxis\",\"id\":\"4687fd86-8de1-480a-c815-083767da76ca\"},{\"type\":\"Grid\",\"id\":\"f4cb1888-616c-45a0-c59e-109620a30fc8\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"3dd3c44c-19a3-495b-c93f-c480dbfd62f0\"},{\"type\":\"WheelZoomTool\",\"id\":\"aa79834e-62fe-4931-c97a-215505fb245f\"},{\"type\":\"BoxZoomTool\",\"id\":\"305b746c-3634-4deb-cd6a-06ee12c7e68c\"},{\"type\":\"PreviewSaveTool\",\"id\":\"0e95a6a2-8d86-410c-c12b-7da8a7372f42\"},{\"type\":\"ResizeTool\",\"id\":\"646beeb2-f4a7-41fc-c111-cf6af0eff6d8\"},{\"type\":\"ResetTool\",\"id\":\"4f4d10f5-e388-4b9b-cbf9-c9449d93716f\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 2\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"4687fd86-8de1-480a-c815-083767da76ca\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"fa53e8bb-63ea-4b35-cbbb-060d9521a3d0\"},\"id\":\"1f4bd097-4ffe-4fdd-cf4e-0f2c2a6b99f4\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"640a6289-e4fe-4237-c22a-04d575afa26a\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"54fb40ed-43a2-470e-c73d-0ef9f3665fbd\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '54fb40ed-43a2-470e-c73d-0ef9f3665fbd'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"859ec279-368f-4bd5-cbfe-edc6559df4c5\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2596,140,133,137,124,123,140,109,118,122,135,95,78,103,76,77,85,67,70,56,66,50,44,32,26,35,30,15,21,19,16,9,11,6,5,7,6,3,1,6,3,2,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"859ec279-368f-4bd5-cbfe-edc6559df4c5\",\"doc\":null,\"tags\":[]}},{\"id\":\"3efc495f-e3c2-448d-c46e-43fafc3c538e\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"3efc495f-e3c2-448d-c46e-43fafc3c538e\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"a2845367-8bc9-4a0d-cab4-c2a59b2b0972\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"a2845367-8bc9-4a0d-cab4-c2a59b2b0972\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"a04ed1b4-3c62-4b65-cbb4-c3d180329b66\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"a2845367-8bc9-4a0d-cab4-c2a59b2b0972\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"859ec279-368f-4bd5-cbfe-edc6559df4c5\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"3efc495f-e3c2-448d-c46e-43fafc3c538e\"},\"selection_glyph\":null,\"id\":\"a04ed1b4-3c62-4b65-cbb4-c3d180329b66\",\"tags\":[]}},{\"id\":\"77eec186-0054-431c-c372-a14b085461d5\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"859ec279-368f-4bd5-cbfe-edc6559df4c5\"}}],\"id\":\"77eec186-0054-431c-c372-a14b085461d5\",\"tags\":[],\"doc\":null}},{\"id\":\"5a5b9abf-c699-4165-c113-4182642f97d5\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"859ec279-368f-4bd5-cbfe-edc6559df4c5\"}}],\"id\":\"5a5b9abf-c699-4165-c113-4182642f97d5\",\"tags\":[],\"doc\":null}},{\"id\":\"595acf0b-a9ae-4013-c05d-28642b4958df\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"595acf0b-a9ae-4013-c05d-28642b4958df\",\"geometries\":[],\"doc\":null}},{\"id\":\"e9c556fc-44be-4b94-cb22-6242330a5b29\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"e9c556fc-44be-4b94-cb22-6242330a5b29\",\"tags\":[],\"doc\":null}},{\"id\":\"63cdae29-d8e5-4d25-cd6f-c002c1bdd632\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"63cdae29-d8e5-4d25-cd6f-c002c1bdd632\",\"tags\":[],\"doc\":null}},{\"id\":\"879eedd4-3204-4e47-ce4f-e4eee7874098\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"e9c556fc-44be-4b94-cb22-6242330a5b29\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"63cdae29-d8e5-4d25-cd6f-c002c1bdd632\"},\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"879eedd4-3204-4e47-ce4f-e4eee7874098\",\"doc\":null,\"tags\":[]}},{\"id\":\"d912b050-9b49-47dd-c708-a95a55d6bb2b\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"63cdae29-d8e5-4d25-cd6f-c002c1bdd632\"},\"id\":\"d912b050-9b49-47dd-c708-a95a55d6bb2b\",\"doc\":null,\"tags\":[]}},{\"id\":\"83cf6174-83d8-4560-c54d-eeb4c0590d89\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"83cf6174-83d8-4560-c54d-eeb4c0590d89\",\"tags\":[],\"doc\":null}},{\"id\":\"c3e338b3-6705-46a9-c67d-b37158e63e27\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"c3e338b3-6705-46a9-c67d-b37158e63e27\",\"tags\":[],\"doc\":null}},{\"id\":\"84082131-4e92-4dae-cd99-46d07a0861bd\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"83cf6174-83d8-4560-c54d-eeb4c0590d89\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"c3e338b3-6705-46a9-c67d-b37158e63e27\"},\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"84082131-4e92-4dae-cd99-46d07a0861bd\",\"doc\":null,\"tags\":[]}},{\"id\":\"3b2ab9be-6086-4d96-cd0b-29e168a85086\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"c3e338b3-6705-46a9-c67d-b37158e63e27\"},\"id\":\"3b2ab9be-6086-4d96-cd0b-29e168a85086\",\"doc\":null,\"tags\":[]}},{\"id\":\"d5b747fd-daeb-4556-c591-a030e515e25b\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"d5b747fd-daeb-4556-c591-a030e515e25b\",\"doc\":null,\"tags\":[]}},{\"id\":\"69164ef6-6c17-4715-c721-37c02b62bef0\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"69164ef6-6c17-4715-c721-37c02b62bef0\",\"doc\":null,\"tags\":[]}},{\"id\":\"5ca795bb-e696-4f46-cf25-a9f5564f16c4\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5ca795bb-e696-4f46-cf25-a9f5564f16c4\",\"tags\":[],\"doc\":null}},{\"id\":\"dead1311-a44a-466b-c6df-2e448c3ddfb8\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"dead1311-a44a-466b-c6df-2e448c3ddfb8\",\"tags\":[],\"doc\":null}},{\"id\":\"68f2fcf8-32da-40e7-c0d0-7a2a27313279\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"68f2fcf8-32da-40e7-c0d0-7a2a27313279\",\"tags\":[],\"doc\":null}},{\"id\":\"5a378944-7b3c-4520-c586-07b43985377b\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5a378944-7b3c-4520-c586-07b43985377b\",\"tags\":[],\"doc\":null}},{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"77eec186-0054-431c-c372-a14b085461d5\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"595acf0b-a9ae-4013-c05d-28642b4958df\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"879eedd4-3204-4e47-ce4f-e4eee7874098\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"a04ed1b4-3c62-4b65-cbb4-c3d180329b66\"},{\"type\":\"LinearAxis\",\"id\":\"879eedd4-3204-4e47-ce4f-e4eee7874098\"},{\"type\":\"Grid\",\"id\":\"d912b050-9b49-47dd-c708-a95a55d6bb2b\"},{\"type\":\"LinearAxis\",\"id\":\"84082131-4e92-4dae-cd99-46d07a0861bd\"},{\"type\":\"Grid\",\"id\":\"3b2ab9be-6086-4d96-cd0b-29e168a85086\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"d5b747fd-daeb-4556-c591-a030e515e25b\"},{\"type\":\"WheelZoomTool\",\"id\":\"69164ef6-6c17-4715-c721-37c02b62bef0\"},{\"type\":\"BoxZoomTool\",\"id\":\"5ca795bb-e696-4f46-cf25-a9f5564f16c4\"},{\"type\":\"PreviewSaveTool\",\"id\":\"dead1311-a44a-466b-c6df-2e448c3ddfb8\"},{\"type\":\"ResizeTool\",\"id\":\"68f2fcf8-32da-40e7-c0d0-7a2a27313279\"},{\"type\":\"ResetTool\",\"id\":\"5a378944-7b3c-4520-c586-07b43985377b\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 2\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"84082131-4e92-4dae-cd99-46d07a0861bd\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"5a5b9abf-c699-4165-c113-4182642f97d5\"},\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"859ec279-368f-4bd5-cbfe-edc6559df4c5\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2596,140,133,137,124,123,140,109,118,122,135,95,78,103,76,77,85,67,70,56,66,50,44,32,26,35,30,15,21,19,16,9,11,6,5,7,6,3,1,6,3,2,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"859ec279-368f-4bd5-cbfe-edc6559df4c5\",\"doc\":null,\"tags\":[]}},{\"id\":\"3efc495f-e3c2-448d-c46e-43fafc3c538e\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"3efc495f-e3c2-448d-c46e-43fafc3c538e\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"a2845367-8bc9-4a0d-cab4-c2a59b2b0972\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"a2845367-8bc9-4a0d-cab4-c2a59b2b0972\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"a04ed1b4-3c62-4b65-cbb4-c3d180329b66\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"a2845367-8bc9-4a0d-cab4-c2a59b2b0972\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"859ec279-368f-4bd5-cbfe-edc6559df4c5\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"3efc495f-e3c2-448d-c46e-43fafc3c538e\"},\"selection_glyph\":null,\"id\":\"a04ed1b4-3c62-4b65-cbb4-c3d180329b66\",\"tags\":[]}},{\"id\":\"77eec186-0054-431c-c372-a14b085461d5\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"859ec279-368f-4bd5-cbfe-edc6559df4c5\"}}],\"id\":\"77eec186-0054-431c-c372-a14b085461d5\",\"tags\":[],\"doc\":null}},{\"id\":\"5a5b9abf-c699-4165-c113-4182642f97d5\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"859ec279-368f-4bd5-cbfe-edc6559df4c5\"}}],\"id\":\"5a5b9abf-c699-4165-c113-4182642f97d5\",\"tags\":[],\"doc\":null}},{\"id\":\"595acf0b-a9ae-4013-c05d-28642b4958df\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"595acf0b-a9ae-4013-c05d-28642b4958df\",\"geometries\":[],\"doc\":null}},{\"id\":\"e9c556fc-44be-4b94-cb22-6242330a5b29\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"e9c556fc-44be-4b94-cb22-6242330a5b29\",\"tags\":[],\"doc\":null}},{\"id\":\"63cdae29-d8e5-4d25-cd6f-c002c1bdd632\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"63cdae29-d8e5-4d25-cd6f-c002c1bdd632\",\"tags\":[],\"doc\":null}},{\"id\":\"879eedd4-3204-4e47-ce4f-e4eee7874098\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"e9c556fc-44be-4b94-cb22-6242330a5b29\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"63cdae29-d8e5-4d25-cd6f-c002c1bdd632\"},\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"879eedd4-3204-4e47-ce4f-e4eee7874098\",\"doc\":null,\"tags\":[]}},{\"id\":\"d912b050-9b49-47dd-c708-a95a55d6bb2b\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"63cdae29-d8e5-4d25-cd6f-c002c1bdd632\"},\"id\":\"d912b050-9b49-47dd-c708-a95a55d6bb2b\",\"doc\":null,\"tags\":[]}},{\"id\":\"83cf6174-83d8-4560-c54d-eeb4c0590d89\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"83cf6174-83d8-4560-c54d-eeb4c0590d89\",\"tags\":[],\"doc\":null}},{\"id\":\"c3e338b3-6705-46a9-c67d-b37158e63e27\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"c3e338b3-6705-46a9-c67d-b37158e63e27\",\"tags\":[],\"doc\":null}},{\"id\":\"84082131-4e92-4dae-cd99-46d07a0861bd\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"83cf6174-83d8-4560-c54d-eeb4c0590d89\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"c3e338b3-6705-46a9-c67d-b37158e63e27\"},\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"84082131-4e92-4dae-cd99-46d07a0861bd\",\"doc\":null,\"tags\":[]}},{\"id\":\"3b2ab9be-6086-4d96-cd0b-29e168a85086\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"c3e338b3-6705-46a9-c67d-b37158e63e27\"},\"id\":\"3b2ab9be-6086-4d96-cd0b-29e168a85086\",\"doc\":null,\"tags\":[]}},{\"id\":\"d5b747fd-daeb-4556-c591-a030e515e25b\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"d5b747fd-daeb-4556-c591-a030e515e25b\",\"doc\":null,\"tags\":[]}},{\"id\":\"69164ef6-6c17-4715-c721-37c02b62bef0\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"69164ef6-6c17-4715-c721-37c02b62bef0\",\"doc\":null,\"tags\":[]}},{\"id\":\"5ca795bb-e696-4f46-cf25-a9f5564f16c4\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5ca795bb-e696-4f46-cf25-a9f5564f16c4\",\"tags\":[],\"doc\":null}},{\"id\":\"dead1311-a44a-466b-c6df-2e448c3ddfb8\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"dead1311-a44a-466b-c6df-2e448c3ddfb8\",\"tags\":[],\"doc\":null}},{\"id\":\"68f2fcf8-32da-40e7-c0d0-7a2a27313279\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"68f2fcf8-32da-40e7-c0d0-7a2a27313279\",\"tags\":[],\"doc\":null}},{\"id\":\"5a378944-7b3c-4520-c586-07b43985377b\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5a378944-7b3c-4520-c586-07b43985377b\",\"tags\":[],\"doc\":null}},{\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"77eec186-0054-431c-c372-a14b085461d5\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"595acf0b-a9ae-4013-c05d-28642b4958df\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"879eedd4-3204-4e47-ce4f-e4eee7874098\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"a04ed1b4-3c62-4b65-cbb4-c3d180329b66\"},{\"type\":\"LinearAxis\",\"id\":\"879eedd4-3204-4e47-ce4f-e4eee7874098\"},{\"type\":\"Grid\",\"id\":\"d912b050-9b49-47dd-c708-a95a55d6bb2b\"},{\"type\":\"LinearAxis\",\"id\":\"84082131-4e92-4dae-cd99-46d07a0861bd\"},{\"type\":\"Grid\",\"id\":\"3b2ab9be-6086-4d96-cd0b-29e168a85086\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"d5b747fd-daeb-4556-c591-a030e515e25b\"},{\"type\":\"WheelZoomTool\",\"id\":\"69164ef6-6c17-4715-c721-37c02b62bef0\"},{\"type\":\"BoxZoomTool\",\"id\":\"5ca795bb-e696-4f46-cf25-a9f5564f16c4\"},{\"type\":\"PreviewSaveTool\",\"id\":\"dead1311-a44a-466b-c6df-2e448c3ddfb8\"},{\"type\":\"ResizeTool\",\"id\":\"68f2fcf8-32da-40e7-c0d0-7a2a27313279\"},{\"type\":\"ResetTool\",\"id\":\"5a378944-7b3c-4520-c586-07b43985377b\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 2\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"84082131-4e92-4dae-cd99-46d07a0861bd\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"5a5b9abf-c699-4165-c113-4182642f97d5\"},\"id\":\"6df259df-00d6-4c1d-cc95-9a45b54cc3c1\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#54fb40ed-43a2-470e-c73d-0ef9f3665fbd\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"374867bb-f5ed-4c03-cc94-c879f6a8e7fd\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"8524d7ff-26bb-47ea-c79d-84963ca7d69f\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '8524d7ff-26bb-47ea-c79d-84963ca7d69f'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"621fe168-14ef-4273-c28b-8b87a11b42a0\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"38328263-8a7c-46bb-c6f9-c44451eaef01\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2693,183,188,176,173,177,180,135,143,121,131,88,93,87,76,60,53,29,51,47,28,20,14,18,6,4,7,4,5,1,3,1,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"38328263-8a7c-46bb-c6f9-c44451eaef01\",\"doc\":null,\"tags\":[]}},{\"id\":\"77dff367-a034-4c70-cc05-f6348dfc3182\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"77dff367-a034-4c70-cc05-f6348dfc3182\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"720ce3f4-adbd-4759-c74d-6d1c03a579fa\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"720ce3f4-adbd-4759-c74d-6d1c03a579fa\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"1ca17190-8551-4779-c7cb-80a9f4e2a7df\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"720ce3f4-adbd-4759-c74d-6d1c03a579fa\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"38328263-8a7c-46bb-c6f9-c44451eaef01\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"77dff367-a034-4c70-cc05-f6348dfc3182\"},\"selection_glyph\":null,\"id\":\"1ca17190-8551-4779-c7cb-80a9f4e2a7df\",\"tags\":[]}},{\"id\":\"2f86fe8e-949c-4a13-caa9-3e5857977ae1\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"38328263-8a7c-46bb-c6f9-c44451eaef01\"}}],\"id\":\"2f86fe8e-949c-4a13-caa9-3e5857977ae1\",\"tags\":[],\"doc\":null}},{\"id\":\"09dfa364-055c-4f2d-cfeb-3c05cb99a532\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"38328263-8a7c-46bb-c6f9-c44451eaef01\"}}],\"id\":\"09dfa364-055c-4f2d-cfeb-3c05cb99a532\",\"tags\":[],\"doc\":null}},{\"id\":\"852ef399-86af-4f40-cff6-91572f09d876\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"852ef399-86af-4f40-cff6-91572f09d876\",\"geometries\":[],\"doc\":null}},{\"id\":\"c7484057-4e31-4147-c105-8a831a95b851\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"c7484057-4e31-4147-c105-8a831a95b851\",\"tags\":[],\"doc\":null}},{\"id\":\"7ca36d43-9f1c-4602-c6f8-e30d7fb8cc4f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7ca36d43-9f1c-4602-c6f8-e30d7fb8cc4f\",\"tags\":[],\"doc\":null}},{\"id\":\"f6d71c74-7cfb-4362-c349-3a585482f586\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"c7484057-4e31-4147-c105-8a831a95b851\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7ca36d43-9f1c-4602-c6f8-e30d7fb8cc4f\"},\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"f6d71c74-7cfb-4362-c349-3a585482f586\",\"doc\":null,\"tags\":[]}},{\"id\":\"351ac447-c818-4f0b-cf4b-2ef056d2039a\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7ca36d43-9f1c-4602-c6f8-e30d7fb8cc4f\"},\"id\":\"351ac447-c818-4f0b-cf4b-2ef056d2039a\",\"doc\":null,\"tags\":[]}},{\"id\":\"68469f62-13e4-4d27-cda5-3d3e095dc96f\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"68469f62-13e4-4d27-cda5-3d3e095dc96f\",\"tags\":[],\"doc\":null}},{\"id\":\"5555784c-21ae-4b1e-cbe6-692d6625e94c\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"5555784c-21ae-4b1e-cbe6-692d6625e94c\",\"tags\":[],\"doc\":null}},{\"id\":\"8e06e78b-290c-40ab-c0e2-f20a21239b49\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"68469f62-13e4-4d27-cda5-3d3e095dc96f\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"5555784c-21ae-4b1e-cbe6-692d6625e94c\"},\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"8e06e78b-290c-40ab-c0e2-f20a21239b49\",\"doc\":null,\"tags\":[]}},{\"id\":\"889063d5-6197-4825-c801-0943a9477086\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"5555784c-21ae-4b1e-cbe6-692d6625e94c\"},\"id\":\"889063d5-6197-4825-c801-0943a9477086\",\"doc\":null,\"tags\":[]}},{\"id\":\"003a2821-2281-4bb6-cb26-fed19c8bdf36\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"003a2821-2281-4bb6-cb26-fed19c8bdf36\",\"doc\":null,\"tags\":[]}},{\"id\":\"3b6f28be-87f8-41e7-c1f7-4faf32e3fce3\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"3b6f28be-87f8-41e7-c1f7-4faf32e3fce3\",\"doc\":null,\"tags\":[]}},{\"id\":\"6f897ac0-ff26-4519-c5f3-08c00d0b87cd\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"6f897ac0-ff26-4519-c5f3-08c00d0b87cd\",\"tags\":[],\"doc\":null}},{\"id\":\"68663a4c-d5b7-41f0-c190-4f71050f6364\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"68663a4c-d5b7-41f0-c190-4f71050f6364\",\"tags\":[],\"doc\":null}},{\"id\":\"13820127-d537-41f7-c15d-06b0f3819c39\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"13820127-d537-41f7-c15d-06b0f3819c39\",\"tags\":[],\"doc\":null}},{\"id\":\"d161191c-007f-4c6b-cc08-aae107767589\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d161191c-007f-4c6b-cc08-aae107767589\",\"tags\":[],\"doc\":null}},{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"2f86fe8e-949c-4a13-caa9-3e5857977ae1\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"852ef399-86af-4f40-cff6-91572f09d876\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"f6d71c74-7cfb-4362-c349-3a585482f586\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"1ca17190-8551-4779-c7cb-80a9f4e2a7df\"},{\"type\":\"LinearAxis\",\"id\":\"f6d71c74-7cfb-4362-c349-3a585482f586\"},{\"type\":\"Grid\",\"id\":\"351ac447-c818-4f0b-cf4b-2ef056d2039a\"},{\"type\":\"LinearAxis\",\"id\":\"8e06e78b-290c-40ab-c0e2-f20a21239b49\"},{\"type\":\"Grid\",\"id\":\"889063d5-6197-4825-c801-0943a9477086\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"003a2821-2281-4bb6-cb26-fed19c8bdf36\"},{\"type\":\"WheelZoomTool\",\"id\":\"3b6f28be-87f8-41e7-c1f7-4faf32e3fce3\"},{\"type\":\"BoxZoomTool\",\"id\":\"6f897ac0-ff26-4519-c5f3-08c00d0b87cd\"},{\"type\":\"PreviewSaveTool\",\"id\":\"68663a4c-d5b7-41f0-c190-4f71050f6364\"},{\"type\":\"ResizeTool\",\"id\":\"13820127-d537-41f7-c15d-06b0f3819c39\"},{\"type\":\"ResetTool\",\"id\":\"d161191c-007f-4c6b-cc08-aae107767589\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"8e06e78b-290c-40ab-c0e2-f20a21239b49\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"09dfa364-055c-4f2d-cfeb-3c05cb99a532\"},\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"621fe168-14ef-4273-c28b-8b87a11b42a0\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"38328263-8a7c-46bb-c6f9-c44451eaef01\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2693,183,188,176,173,177,180,135,143,121,131,88,93,87,76,60,53,29,51,47,28,20,14,18,6,4,7,4,5,1,3,1,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"38328263-8a7c-46bb-c6f9-c44451eaef01\",\"doc\":null,\"tags\":[]}},{\"id\":\"77dff367-a034-4c70-cc05-f6348dfc3182\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"77dff367-a034-4c70-cc05-f6348dfc3182\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"720ce3f4-adbd-4759-c74d-6d1c03a579fa\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"720ce3f4-adbd-4759-c74d-6d1c03a579fa\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"1ca17190-8551-4779-c7cb-80a9f4e2a7df\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"720ce3f4-adbd-4759-c74d-6d1c03a579fa\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"38328263-8a7c-46bb-c6f9-c44451eaef01\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"77dff367-a034-4c70-cc05-f6348dfc3182\"},\"selection_glyph\":null,\"id\":\"1ca17190-8551-4779-c7cb-80a9f4e2a7df\",\"tags\":[]}},{\"id\":\"2f86fe8e-949c-4a13-caa9-3e5857977ae1\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"38328263-8a7c-46bb-c6f9-c44451eaef01\"}}],\"id\":\"2f86fe8e-949c-4a13-caa9-3e5857977ae1\",\"tags\":[],\"doc\":null}},{\"id\":\"09dfa364-055c-4f2d-cfeb-3c05cb99a532\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"38328263-8a7c-46bb-c6f9-c44451eaef01\"}}],\"id\":\"09dfa364-055c-4f2d-cfeb-3c05cb99a532\",\"tags\":[],\"doc\":null}},{\"id\":\"852ef399-86af-4f40-cff6-91572f09d876\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"852ef399-86af-4f40-cff6-91572f09d876\",\"geometries\":[],\"doc\":null}},{\"id\":\"c7484057-4e31-4147-c105-8a831a95b851\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"c7484057-4e31-4147-c105-8a831a95b851\",\"tags\":[],\"doc\":null}},{\"id\":\"7ca36d43-9f1c-4602-c6f8-e30d7fb8cc4f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7ca36d43-9f1c-4602-c6f8-e30d7fb8cc4f\",\"tags\":[],\"doc\":null}},{\"id\":\"f6d71c74-7cfb-4362-c349-3a585482f586\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"c7484057-4e31-4147-c105-8a831a95b851\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7ca36d43-9f1c-4602-c6f8-e30d7fb8cc4f\"},\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"f6d71c74-7cfb-4362-c349-3a585482f586\",\"doc\":null,\"tags\":[]}},{\"id\":\"351ac447-c818-4f0b-cf4b-2ef056d2039a\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7ca36d43-9f1c-4602-c6f8-e30d7fb8cc4f\"},\"id\":\"351ac447-c818-4f0b-cf4b-2ef056d2039a\",\"doc\":null,\"tags\":[]}},{\"id\":\"68469f62-13e4-4d27-cda5-3d3e095dc96f\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"68469f62-13e4-4d27-cda5-3d3e095dc96f\",\"tags\":[],\"doc\":null}},{\"id\":\"5555784c-21ae-4b1e-cbe6-692d6625e94c\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"5555784c-21ae-4b1e-cbe6-692d6625e94c\",\"tags\":[],\"doc\":null}},{\"id\":\"8e06e78b-290c-40ab-c0e2-f20a21239b49\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"68469f62-13e4-4d27-cda5-3d3e095dc96f\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"5555784c-21ae-4b1e-cbe6-692d6625e94c\"},\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"8e06e78b-290c-40ab-c0e2-f20a21239b49\",\"doc\":null,\"tags\":[]}},{\"id\":\"889063d5-6197-4825-c801-0943a9477086\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"5555784c-21ae-4b1e-cbe6-692d6625e94c\"},\"id\":\"889063d5-6197-4825-c801-0943a9477086\",\"doc\":null,\"tags\":[]}},{\"id\":\"003a2821-2281-4bb6-cb26-fed19c8bdf36\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"003a2821-2281-4bb6-cb26-fed19c8bdf36\",\"doc\":null,\"tags\":[]}},{\"id\":\"3b6f28be-87f8-41e7-c1f7-4faf32e3fce3\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"3b6f28be-87f8-41e7-c1f7-4faf32e3fce3\",\"doc\":null,\"tags\":[]}},{\"id\":\"6f897ac0-ff26-4519-c5f3-08c00d0b87cd\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"6f897ac0-ff26-4519-c5f3-08c00d0b87cd\",\"tags\":[],\"doc\":null}},{\"id\":\"68663a4c-d5b7-41f0-c190-4f71050f6364\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"68663a4c-d5b7-41f0-c190-4f71050f6364\",\"tags\":[],\"doc\":null}},{\"id\":\"13820127-d537-41f7-c15d-06b0f3819c39\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"13820127-d537-41f7-c15d-06b0f3819c39\",\"tags\":[],\"doc\":null}},{\"id\":\"d161191c-007f-4c6b-cc08-aae107767589\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d161191c-007f-4c6b-cc08-aae107767589\",\"tags\":[],\"doc\":null}},{\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"2f86fe8e-949c-4a13-caa9-3e5857977ae1\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"852ef399-86af-4f40-cff6-91572f09d876\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"f6d71c74-7cfb-4362-c349-3a585482f586\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"1ca17190-8551-4779-c7cb-80a9f4e2a7df\"},{\"type\":\"LinearAxis\",\"id\":\"f6d71c74-7cfb-4362-c349-3a585482f586\"},{\"type\":\"Grid\",\"id\":\"351ac447-c818-4f0b-cf4b-2ef056d2039a\"},{\"type\":\"LinearAxis\",\"id\":\"8e06e78b-290c-40ab-c0e2-f20a21239b49\"},{\"type\":\"Grid\",\"id\":\"889063d5-6197-4825-c801-0943a9477086\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"003a2821-2281-4bb6-cb26-fed19c8bdf36\"},{\"type\":\"WheelZoomTool\",\"id\":\"3b6f28be-87f8-41e7-c1f7-4faf32e3fce3\"},{\"type\":\"BoxZoomTool\",\"id\":\"6f897ac0-ff26-4519-c5f3-08c00d0b87cd\"},{\"type\":\"PreviewSaveTool\",\"id\":\"68663a4c-d5b7-41f0-c190-4f71050f6364\"},{\"type\":\"ResizeTool\",\"id\":\"13820127-d537-41f7-c15d-06b0f3819c39\"},{\"type\":\"ResetTool\",\"id\":\"d161191c-007f-4c6b-cc08-aae107767589\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"8e06e78b-290c-40ab-c0e2-f20a21239b49\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"09dfa364-055c-4f2d-cfeb-3c05cb99a532\"},\"id\":\"621fe168-14ef-4273-c28b-8b87a11b42a0\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"8524d7ff-26bb-47ea-c79d-84963ca7d69f\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"8524d7ff-26bb-47ea-c79d-84963ca7d69f\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '8524d7ff-26bb-47ea-c79d-84963ca7d69f'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"a4f4fb32-1312-428a-c2e8-29e420e2b269\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"dcd352b8-9937-48fe-c868-47a33fb5b08a\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2693,183,188,176,173,177,180,135,143,121,131,88,93,87,76,60,53,29,51,47,28,20,14,18,6,4,7,4,5,1,3,1,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"dcd352b8-9937-48fe-c868-47a33fb5b08a\",\"doc\":null,\"tags\":[]}},{\"id\":\"e902e374-54d6-4bf9-cbd0-3c7392f8cfd2\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"e902e374-54d6-4bf9-cbd0-3c7392f8cfd2\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"81419d63-6947-4acb-caaf-63392739379b\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"81419d63-6947-4acb-caaf-63392739379b\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"9867469d-da41-4cfb-cc4e-312fe9f17017\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"81419d63-6947-4acb-caaf-63392739379b\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"dcd352b8-9937-48fe-c868-47a33fb5b08a\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"e902e374-54d6-4bf9-cbd0-3c7392f8cfd2\"},\"selection_glyph\":null,\"id\":\"9867469d-da41-4cfb-cc4e-312fe9f17017\",\"tags\":[]}},{\"id\":\"d52203c1-2943-4c80-cce8-0b3e4df41f7c\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"dcd352b8-9937-48fe-c868-47a33fb5b08a\"}}],\"id\":\"d52203c1-2943-4c80-cce8-0b3e4df41f7c\",\"tags\":[],\"doc\":null}},{\"id\":\"0732af29-3486-49d8-c95d-796ef11efdd2\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"dcd352b8-9937-48fe-c868-47a33fb5b08a\"}}],\"id\":\"0732af29-3486-49d8-c95d-796ef11efdd2\",\"tags\":[],\"doc\":null}},{\"id\":\"5069d814-9de0-4e7b-ce2e-1a58addf0f3d\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"5069d814-9de0-4e7b-ce2e-1a58addf0f3d\",\"geometries\":[],\"doc\":null}},{\"id\":\"781e61de-04f2-44ea-c4b8-660d77c0a271\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"781e61de-04f2-44ea-c4b8-660d77c0a271\",\"tags\":[],\"doc\":null}},{\"id\":\"089613ab-625d-4bba-cbe6-a7e427dc751e\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"089613ab-625d-4bba-cbe6-a7e427dc751e\",\"tags\":[],\"doc\":null}},{\"id\":\"a814a037-df3e-4d85-cdc0-eb7f186fd97c\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"781e61de-04f2-44ea-c4b8-660d77c0a271\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"089613ab-625d-4bba-cbe6-a7e427dc751e\"},\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"a814a037-df3e-4d85-cdc0-eb7f186fd97c\",\"doc\":null,\"tags\":[]}},{\"id\":\"7b228708-fb04-4176-c1ce-304bc3855d10\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"089613ab-625d-4bba-cbe6-a7e427dc751e\"},\"id\":\"7b228708-fb04-4176-c1ce-304bc3855d10\",\"doc\":null,\"tags\":[]}},{\"id\":\"7f26662f-9866-430e-c3cb-5a97b8db7579\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"7f26662f-9866-430e-c3cb-5a97b8db7579\",\"tags\":[],\"doc\":null}},{\"id\":\"576cd5e0-b854-47c7-c7aa-6667e860a3bc\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"576cd5e0-b854-47c7-c7aa-6667e860a3bc\",\"tags\":[],\"doc\":null}},{\"id\":\"3fa8ca6a-0825-414d-c166-dadcf7638543\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"7f26662f-9866-430e-c3cb-5a97b8db7579\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"576cd5e0-b854-47c7-c7aa-6667e860a3bc\"},\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"3fa8ca6a-0825-414d-c166-dadcf7638543\",\"doc\":null,\"tags\":[]}},{\"id\":\"e2d133b7-7f3c-409d-c09f-134ef0db5ace\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"576cd5e0-b854-47c7-c7aa-6667e860a3bc\"},\"id\":\"e2d133b7-7f3c-409d-c09f-134ef0db5ace\",\"doc\":null,\"tags\":[]}},{\"id\":\"e6861527-5d16-4a3c-ca77-74299ba4e55f\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"e6861527-5d16-4a3c-ca77-74299ba4e55f\",\"doc\":null,\"tags\":[]}},{\"id\":\"8dcd2416-16f4-4dd1-cd0f-ec1a0a229ed9\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"8dcd2416-16f4-4dd1-cd0f-ec1a0a229ed9\",\"doc\":null,\"tags\":[]}},{\"id\":\"c7e78af2-5429-4dab-cd62-44103d0384dd\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c7e78af2-5429-4dab-cd62-44103d0384dd\",\"tags\":[],\"doc\":null}},{\"id\":\"cd4dc240-48a7-486b-c8d3-f41d24013f2d\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"cd4dc240-48a7-486b-c8d3-f41d24013f2d\",\"tags\":[],\"doc\":null}},{\"id\":\"39eadd4a-b76a-4a44-caec-ddddaeaf56de\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"39eadd4a-b76a-4a44-caec-ddddaeaf56de\",\"tags\":[],\"doc\":null}},{\"id\":\"d9280e83-33bc-4c07-cc82-d5f4e65c802c\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d9280e83-33bc-4c07-cc82-d5f4e65c802c\",\"tags\":[],\"doc\":null}},{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"d52203c1-2943-4c80-cce8-0b3e4df41f7c\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"5069d814-9de0-4e7b-ce2e-1a58addf0f3d\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"a814a037-df3e-4d85-cdc0-eb7f186fd97c\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"9867469d-da41-4cfb-cc4e-312fe9f17017\"},{\"type\":\"LinearAxis\",\"id\":\"a814a037-df3e-4d85-cdc0-eb7f186fd97c\"},{\"type\":\"Grid\",\"id\":\"7b228708-fb04-4176-c1ce-304bc3855d10\"},{\"type\":\"LinearAxis\",\"id\":\"3fa8ca6a-0825-414d-c166-dadcf7638543\"},{\"type\":\"Grid\",\"id\":\"e2d133b7-7f3c-409d-c09f-134ef0db5ace\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"e6861527-5d16-4a3c-ca77-74299ba4e55f\"},{\"type\":\"WheelZoomTool\",\"id\":\"8dcd2416-16f4-4dd1-cd0f-ec1a0a229ed9\"},{\"type\":\"BoxZoomTool\",\"id\":\"c7e78af2-5429-4dab-cd62-44103d0384dd\"},{\"type\":\"PreviewSaveTool\",\"id\":\"cd4dc240-48a7-486b-c8d3-f41d24013f2d\"},{\"type\":\"ResizeTool\",\"id\":\"39eadd4a-b76a-4a44-caec-ddddaeaf56de\"},{\"type\":\"ResetTool\",\"id\":\"d9280e83-33bc-4c07-cc82-d5f4e65c802c\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 3\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"3fa8ca6a-0825-414d-c166-dadcf7638543\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"0732af29-3486-49d8-c95d-796ef11efdd2\"},\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"a4f4fb32-1312-428a-c2e8-29e420e2b269\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"dcd352b8-9937-48fe-c868-47a33fb5b08a\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2693,183,188,176,173,177,180,135,143,121,131,88,93,87,76,60,53,29,51,47,28,20,14,18,6,4,7,4,5,1,3,1,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"dcd352b8-9937-48fe-c868-47a33fb5b08a\",\"doc\":null,\"tags\":[]}},{\"id\":\"e902e374-54d6-4bf9-cbd0-3c7392f8cfd2\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"e902e374-54d6-4bf9-cbd0-3c7392f8cfd2\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"81419d63-6947-4acb-caaf-63392739379b\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"81419d63-6947-4acb-caaf-63392739379b\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"9867469d-da41-4cfb-cc4e-312fe9f17017\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"81419d63-6947-4acb-caaf-63392739379b\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"dcd352b8-9937-48fe-c868-47a33fb5b08a\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"e902e374-54d6-4bf9-cbd0-3c7392f8cfd2\"},\"selection_glyph\":null,\"id\":\"9867469d-da41-4cfb-cc4e-312fe9f17017\",\"tags\":[]}},{\"id\":\"d52203c1-2943-4c80-cce8-0b3e4df41f7c\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"dcd352b8-9937-48fe-c868-47a33fb5b08a\"}}],\"id\":\"d52203c1-2943-4c80-cce8-0b3e4df41f7c\",\"tags\":[],\"doc\":null}},{\"id\":\"0732af29-3486-49d8-c95d-796ef11efdd2\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"dcd352b8-9937-48fe-c868-47a33fb5b08a\"}}],\"id\":\"0732af29-3486-49d8-c95d-796ef11efdd2\",\"tags\":[],\"doc\":null}},{\"id\":\"5069d814-9de0-4e7b-ce2e-1a58addf0f3d\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"5069d814-9de0-4e7b-ce2e-1a58addf0f3d\",\"geometries\":[],\"doc\":null}},{\"id\":\"781e61de-04f2-44ea-c4b8-660d77c0a271\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"781e61de-04f2-44ea-c4b8-660d77c0a271\",\"tags\":[],\"doc\":null}},{\"id\":\"089613ab-625d-4bba-cbe6-a7e427dc751e\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"089613ab-625d-4bba-cbe6-a7e427dc751e\",\"tags\":[],\"doc\":null}},{\"id\":\"a814a037-df3e-4d85-cdc0-eb7f186fd97c\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"781e61de-04f2-44ea-c4b8-660d77c0a271\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"089613ab-625d-4bba-cbe6-a7e427dc751e\"},\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"a814a037-df3e-4d85-cdc0-eb7f186fd97c\",\"doc\":null,\"tags\":[]}},{\"id\":\"7b228708-fb04-4176-c1ce-304bc3855d10\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"089613ab-625d-4bba-cbe6-a7e427dc751e\"},\"id\":\"7b228708-fb04-4176-c1ce-304bc3855d10\",\"doc\":null,\"tags\":[]}},{\"id\":\"7f26662f-9866-430e-c3cb-5a97b8db7579\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"7f26662f-9866-430e-c3cb-5a97b8db7579\",\"tags\":[],\"doc\":null}},{\"id\":\"576cd5e0-b854-47c7-c7aa-6667e860a3bc\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"576cd5e0-b854-47c7-c7aa-6667e860a3bc\",\"tags\":[],\"doc\":null}},{\"id\":\"3fa8ca6a-0825-414d-c166-dadcf7638543\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"7f26662f-9866-430e-c3cb-5a97b8db7579\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"576cd5e0-b854-47c7-c7aa-6667e860a3bc\"},\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"3fa8ca6a-0825-414d-c166-dadcf7638543\",\"doc\":null,\"tags\":[]}},{\"id\":\"e2d133b7-7f3c-409d-c09f-134ef0db5ace\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"576cd5e0-b854-47c7-c7aa-6667e860a3bc\"},\"id\":\"e2d133b7-7f3c-409d-c09f-134ef0db5ace\",\"doc\":null,\"tags\":[]}},{\"id\":\"e6861527-5d16-4a3c-ca77-74299ba4e55f\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"e6861527-5d16-4a3c-ca77-74299ba4e55f\",\"doc\":null,\"tags\":[]}},{\"id\":\"8dcd2416-16f4-4dd1-cd0f-ec1a0a229ed9\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"8dcd2416-16f4-4dd1-cd0f-ec1a0a229ed9\",\"doc\":null,\"tags\":[]}},{\"id\":\"c7e78af2-5429-4dab-cd62-44103d0384dd\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c7e78af2-5429-4dab-cd62-44103d0384dd\",\"tags\":[],\"doc\":null}},{\"id\":\"cd4dc240-48a7-486b-c8d3-f41d24013f2d\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"cd4dc240-48a7-486b-c8d3-f41d24013f2d\",\"tags\":[],\"doc\":null}},{\"id\":\"39eadd4a-b76a-4a44-caec-ddddaeaf56de\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"39eadd4a-b76a-4a44-caec-ddddaeaf56de\",\"tags\":[],\"doc\":null}},{\"id\":\"d9280e83-33bc-4c07-cc82-d5f4e65c802c\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d9280e83-33bc-4c07-cc82-d5f4e65c802c\",\"tags\":[],\"doc\":null}},{\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"d52203c1-2943-4c80-cce8-0b3e4df41f7c\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"5069d814-9de0-4e7b-ce2e-1a58addf0f3d\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"a814a037-df3e-4d85-cdc0-eb7f186fd97c\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"9867469d-da41-4cfb-cc4e-312fe9f17017\"},{\"type\":\"LinearAxis\",\"id\":\"a814a037-df3e-4d85-cdc0-eb7f186fd97c\"},{\"type\":\"Grid\",\"id\":\"7b228708-fb04-4176-c1ce-304bc3855d10\"},{\"type\":\"LinearAxis\",\"id\":\"3fa8ca6a-0825-414d-c166-dadcf7638543\"},{\"type\":\"Grid\",\"id\":\"e2d133b7-7f3c-409d-c09f-134ef0db5ace\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"e6861527-5d16-4a3c-ca77-74299ba4e55f\"},{\"type\":\"WheelZoomTool\",\"id\":\"8dcd2416-16f4-4dd1-cd0f-ec1a0a229ed9\"},{\"type\":\"BoxZoomTool\",\"id\":\"c7e78af2-5429-4dab-cd62-44103d0384dd\"},{\"type\":\"PreviewSaveTool\",\"id\":\"cd4dc240-48a7-486b-c8d3-f41d24013f2d\"},{\"type\":\"ResizeTool\",\"id\":\"39eadd4a-b76a-4a44-caec-ddddaeaf56de\"},{\"type\":\"ResetTool\",\"id\":\"d9280e83-33bc-4c07-cc82-d5f4e65c802c\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 3\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"3fa8ca6a-0825-414d-c166-dadcf7638543\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"0732af29-3486-49d8-c95d-796ef11efdd2\"},\"id\":\"a4f4fb32-1312-428a-c2e8-29e420e2b269\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"3822fa51-ca21-41f1-c105-3bd1aaed4f4b\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"8524d7ff-26bb-47ea-c79d-84963ca7d69f\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '8524d7ff-26bb-47ea-c79d-84963ca7d69f'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"ef639ed0-79d7-47b1-c7a9-72b14a17c566\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"ed206cdd-6216-481c-c8ed-8d5f08a3edea\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2693,183,188,176,173,177,180,135,143,121,131,88,93,87,76,60,53,29,51,47,28,20,14,18,6,4,7,4,5,1,3,1,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"ed206cdd-6216-481c-c8ed-8d5f08a3edea\",\"doc\":null,\"tags\":[]}},{\"id\":\"2dde2aef-94cf-41bf-c1b4-dc9425309739\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"2dde2aef-94cf-41bf-c1b4-dc9425309739\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"9a734023-b12c-4ddc-cd3c-b21bbce40eea\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"9a734023-b12c-4ddc-cd3c-b21bbce40eea\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"c5d8de29-a066-4f43-cfdb-85bd3a586243\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"9a734023-b12c-4ddc-cd3c-b21bbce40eea\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"ed206cdd-6216-481c-c8ed-8d5f08a3edea\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"2dde2aef-94cf-41bf-c1b4-dc9425309739\"},\"selection_glyph\":null,\"id\":\"c5d8de29-a066-4f43-cfdb-85bd3a586243\",\"tags\":[]}},{\"id\":\"b2fe02a8-48f5-49ca-c913-e90b878cf298\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"ed206cdd-6216-481c-c8ed-8d5f08a3edea\"}}],\"id\":\"b2fe02a8-48f5-49ca-c913-e90b878cf298\",\"tags\":[],\"doc\":null}},{\"id\":\"fdba9e03-761a-46c5-c616-a4bb30bf6ab3\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"ed206cdd-6216-481c-c8ed-8d5f08a3edea\"}}],\"id\":\"fdba9e03-761a-46c5-c616-a4bb30bf6ab3\",\"tags\":[],\"doc\":null}},{\"id\":\"4db058ec-f32a-423f-c2e3-4150464d3f26\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"4db058ec-f32a-423f-c2e3-4150464d3f26\",\"geometries\":[],\"doc\":null}},{\"id\":\"9202e3a1-2ff5-46c3-c61f-42bfb64d2041\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"9202e3a1-2ff5-46c3-c61f-42bfb64d2041\",\"tags\":[],\"doc\":null}},{\"id\":\"4dcfb421-12de-42e9-c218-08dbaf70abd6\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"4dcfb421-12de-42e9-c218-08dbaf70abd6\",\"tags\":[],\"doc\":null}},{\"id\":\"23560b0b-3267-4c1a-ccf3-960d3e751db7\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"9202e3a1-2ff5-46c3-c61f-42bfb64d2041\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"4dcfb421-12de-42e9-c218-08dbaf70abd6\"},\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"23560b0b-3267-4c1a-ccf3-960d3e751db7\",\"doc\":null,\"tags\":[]}},{\"id\":\"005b3e91-330a-4b54-cbd5-09603e8fd2c5\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"4dcfb421-12de-42e9-c218-08dbaf70abd6\"},\"id\":\"005b3e91-330a-4b54-cbd5-09603e8fd2c5\",\"doc\":null,\"tags\":[]}},{\"id\":\"1f48dc87-0cdf-4e86-ce55-ef7445ca8630\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"1f48dc87-0cdf-4e86-ce55-ef7445ca8630\",\"tags\":[],\"doc\":null}},{\"id\":\"6b6406e7-a779-4d6b-cd40-f518ad55f8af\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"6b6406e7-a779-4d6b-cd40-f518ad55f8af\",\"tags\":[],\"doc\":null}},{\"id\":\"fa209698-eee6-4e37-ce91-622fb23d561a\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"1f48dc87-0cdf-4e86-ce55-ef7445ca8630\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"6b6406e7-a779-4d6b-cd40-f518ad55f8af\"},\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"fa209698-eee6-4e37-ce91-622fb23d561a\",\"doc\":null,\"tags\":[]}},{\"id\":\"a556f613-de57-4527-c5e7-c6d5e05c96d0\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"6b6406e7-a779-4d6b-cd40-f518ad55f8af\"},\"id\":\"a556f613-de57-4527-c5e7-c6d5e05c96d0\",\"doc\":null,\"tags\":[]}},{\"id\":\"54733f11-fb69-4ee3-ce8d-4aac9274e62c\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"54733f11-fb69-4ee3-ce8d-4aac9274e62c\",\"doc\":null,\"tags\":[]}},{\"id\":\"24d6e89d-16b0-4fad-cfcd-938e07a048b2\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"24d6e89d-16b0-4fad-cfcd-938e07a048b2\",\"doc\":null,\"tags\":[]}},{\"id\":\"6496e80c-2930-4771-c7c3-4d76b5a99164\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"6496e80c-2930-4771-c7c3-4d76b5a99164\",\"tags\":[],\"doc\":null}},{\"id\":\"b307a2f6-0b71-44c9-c475-b84cd872bf05\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"b307a2f6-0b71-44c9-c475-b84cd872bf05\",\"tags\":[],\"doc\":null}},{\"id\":\"11e9f07e-a9b9-4695-c63e-d2e0ea283649\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"11e9f07e-a9b9-4695-c63e-d2e0ea283649\",\"tags\":[],\"doc\":null}},{\"id\":\"83863e46-7f84-4408-c40b-e3f1c979c535\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"83863e46-7f84-4408-c40b-e3f1c979c535\",\"tags\":[],\"doc\":null}},{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"b2fe02a8-48f5-49ca-c913-e90b878cf298\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"4db058ec-f32a-423f-c2e3-4150464d3f26\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"23560b0b-3267-4c1a-ccf3-960d3e751db7\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"c5d8de29-a066-4f43-cfdb-85bd3a586243\"},{\"type\":\"LinearAxis\",\"id\":\"23560b0b-3267-4c1a-ccf3-960d3e751db7\"},{\"type\":\"Grid\",\"id\":\"005b3e91-330a-4b54-cbd5-09603e8fd2c5\"},{\"type\":\"LinearAxis\",\"id\":\"fa209698-eee6-4e37-ce91-622fb23d561a\"},{\"type\":\"Grid\",\"id\":\"a556f613-de57-4527-c5e7-c6d5e05c96d0\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"54733f11-fb69-4ee3-ce8d-4aac9274e62c\"},{\"type\":\"WheelZoomTool\",\"id\":\"24d6e89d-16b0-4fad-cfcd-938e07a048b2\"},{\"type\":\"BoxZoomTool\",\"id\":\"6496e80c-2930-4771-c7c3-4d76b5a99164\"},{\"type\":\"PreviewSaveTool\",\"id\":\"b307a2f6-0b71-44c9-c475-b84cd872bf05\"},{\"type\":\"ResizeTool\",\"id\":\"11e9f07e-a9b9-4695-c63e-d2e0ea283649\"},{\"type\":\"ResetTool\",\"id\":\"83863e46-7f84-4408-c40b-e3f1c979c535\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 3\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"fa209698-eee6-4e37-ce91-622fb23d561a\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"fdba9e03-761a-46c5-c616-a4bb30bf6ab3\"},\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"ef639ed0-79d7-47b1-c7a9-72b14a17c566\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"ed206cdd-6216-481c-c8ed-8d5f08a3edea\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2693,183,188,176,173,177,180,135,143,121,131,88,93,87,76,60,53,29,51,47,28,20,14,18,6,4,7,4,5,1,3,1,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"ed206cdd-6216-481c-c8ed-8d5f08a3edea\",\"doc\":null,\"tags\":[]}},{\"id\":\"2dde2aef-94cf-41bf-c1b4-dc9425309739\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"2dde2aef-94cf-41bf-c1b4-dc9425309739\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"9a734023-b12c-4ddc-cd3c-b21bbce40eea\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"9a734023-b12c-4ddc-cd3c-b21bbce40eea\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"c5d8de29-a066-4f43-cfdb-85bd3a586243\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"9a734023-b12c-4ddc-cd3c-b21bbce40eea\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"ed206cdd-6216-481c-c8ed-8d5f08a3edea\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"2dde2aef-94cf-41bf-c1b4-dc9425309739\"},\"selection_glyph\":null,\"id\":\"c5d8de29-a066-4f43-cfdb-85bd3a586243\",\"tags\":[]}},{\"id\":\"b2fe02a8-48f5-49ca-c913-e90b878cf298\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"ed206cdd-6216-481c-c8ed-8d5f08a3edea\"}}],\"id\":\"b2fe02a8-48f5-49ca-c913-e90b878cf298\",\"tags\":[],\"doc\":null}},{\"id\":\"fdba9e03-761a-46c5-c616-a4bb30bf6ab3\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"ed206cdd-6216-481c-c8ed-8d5f08a3edea\"}}],\"id\":\"fdba9e03-761a-46c5-c616-a4bb30bf6ab3\",\"tags\":[],\"doc\":null}},{\"id\":\"4db058ec-f32a-423f-c2e3-4150464d3f26\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"4db058ec-f32a-423f-c2e3-4150464d3f26\",\"geometries\":[],\"doc\":null}},{\"id\":\"9202e3a1-2ff5-46c3-c61f-42bfb64d2041\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"9202e3a1-2ff5-46c3-c61f-42bfb64d2041\",\"tags\":[],\"doc\":null}},{\"id\":\"4dcfb421-12de-42e9-c218-08dbaf70abd6\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"4dcfb421-12de-42e9-c218-08dbaf70abd6\",\"tags\":[],\"doc\":null}},{\"id\":\"23560b0b-3267-4c1a-ccf3-960d3e751db7\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"9202e3a1-2ff5-46c3-c61f-42bfb64d2041\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"4dcfb421-12de-42e9-c218-08dbaf70abd6\"},\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"23560b0b-3267-4c1a-ccf3-960d3e751db7\",\"doc\":null,\"tags\":[]}},{\"id\":\"005b3e91-330a-4b54-cbd5-09603e8fd2c5\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"4dcfb421-12de-42e9-c218-08dbaf70abd6\"},\"id\":\"005b3e91-330a-4b54-cbd5-09603e8fd2c5\",\"doc\":null,\"tags\":[]}},{\"id\":\"1f48dc87-0cdf-4e86-ce55-ef7445ca8630\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"1f48dc87-0cdf-4e86-ce55-ef7445ca8630\",\"tags\":[],\"doc\":null}},{\"id\":\"6b6406e7-a779-4d6b-cd40-f518ad55f8af\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"6b6406e7-a779-4d6b-cd40-f518ad55f8af\",\"tags\":[],\"doc\":null}},{\"id\":\"fa209698-eee6-4e37-ce91-622fb23d561a\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"1f48dc87-0cdf-4e86-ce55-ef7445ca8630\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"6b6406e7-a779-4d6b-cd40-f518ad55f8af\"},\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"fa209698-eee6-4e37-ce91-622fb23d561a\",\"doc\":null,\"tags\":[]}},{\"id\":\"a556f613-de57-4527-c5e7-c6d5e05c96d0\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"6b6406e7-a779-4d6b-cd40-f518ad55f8af\"},\"id\":\"a556f613-de57-4527-c5e7-c6d5e05c96d0\",\"doc\":null,\"tags\":[]}},{\"id\":\"54733f11-fb69-4ee3-ce8d-4aac9274e62c\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"54733f11-fb69-4ee3-ce8d-4aac9274e62c\",\"doc\":null,\"tags\":[]}},{\"id\":\"24d6e89d-16b0-4fad-cfcd-938e07a048b2\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"24d6e89d-16b0-4fad-cfcd-938e07a048b2\",\"doc\":null,\"tags\":[]}},{\"id\":\"6496e80c-2930-4771-c7c3-4d76b5a99164\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"6496e80c-2930-4771-c7c3-4d76b5a99164\",\"tags\":[],\"doc\":null}},{\"id\":\"b307a2f6-0b71-44c9-c475-b84cd872bf05\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"b307a2f6-0b71-44c9-c475-b84cd872bf05\",\"tags\":[],\"doc\":null}},{\"id\":\"11e9f07e-a9b9-4695-c63e-d2e0ea283649\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"11e9f07e-a9b9-4695-c63e-d2e0ea283649\",\"tags\":[],\"doc\":null}},{\"id\":\"83863e46-7f84-4408-c40b-e3f1c979c535\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"83863e46-7f84-4408-c40b-e3f1c979c535\",\"tags\":[],\"doc\":null}},{\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"b2fe02a8-48f5-49ca-c913-e90b878cf298\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"4db058ec-f32a-423f-c2e3-4150464d3f26\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"23560b0b-3267-4c1a-ccf3-960d3e751db7\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"c5d8de29-a066-4f43-cfdb-85bd3a586243\"},{\"type\":\"LinearAxis\",\"id\":\"23560b0b-3267-4c1a-ccf3-960d3e751db7\"},{\"type\":\"Grid\",\"id\":\"005b3e91-330a-4b54-cbd5-09603e8fd2c5\"},{\"type\":\"LinearAxis\",\"id\":\"fa209698-eee6-4e37-ce91-622fb23d561a\"},{\"type\":\"Grid\",\"id\":\"a556f613-de57-4527-c5e7-c6d5e05c96d0\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"54733f11-fb69-4ee3-ce8d-4aac9274e62c\"},{\"type\":\"WheelZoomTool\",\"id\":\"24d6e89d-16b0-4fad-cfcd-938e07a048b2\"},{\"type\":\"BoxZoomTool\",\"id\":\"6496e80c-2930-4771-c7c3-4d76b5a99164\"},{\"type\":\"PreviewSaveTool\",\"id\":\"b307a2f6-0b71-44c9-c475-b84cd872bf05\"},{\"type\":\"ResizeTool\",\"id\":\"11e9f07e-a9b9-4695-c63e-d2e0ea283649\"},{\"type\":\"ResetTool\",\"id\":\"83863e46-7f84-4408-c40b-e3f1c979c535\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 3\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"fa209698-eee6-4e37-ce91-622fb23d561a\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"fdba9e03-761a-46c5-c616-a4bb30bf6ab3\"},\"id\":\"ef639ed0-79d7-47b1-c7a9-72b14a17c566\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8524d7ff-26bb-47ea-c79d-84963ca7d69f\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"cd2db6ca-9f16-483e-c809-02a50c7a87cf\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"dfcb2093-dab2-406a-c037-c5acb2c9087c\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'dfcb2093-dab2-406a-c037-c5acb2c9087c'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"2d5f0fa2-45de-489c-c80f-3a284921e719\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2821,250,248,212,198,205,184,151,126,98,101,77,72,48,39,37,34,26,23,19,5,8,5,8,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"2d5f0fa2-45de-489c-c80f-3a284921e719\",\"doc\":null,\"tags\":[]}},{\"id\":\"946b547e-c9ec-47d7-c70c-f8dba3f7bb6e\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"946b547e-c9ec-47d7-c70c-f8dba3f7bb6e\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"19dfee05-f41d-4712-c72b-28b63b83a61a\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"19dfee05-f41d-4712-c72b-28b63b83a61a\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"bdf7a075-d2b5-41e2-c151-7bb1aac9ef46\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"19dfee05-f41d-4712-c72b-28b63b83a61a\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"2d5f0fa2-45de-489c-c80f-3a284921e719\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"946b547e-c9ec-47d7-c70c-f8dba3f7bb6e\"},\"selection_glyph\":null,\"id\":\"bdf7a075-d2b5-41e2-c151-7bb1aac9ef46\",\"tags\":[]}},{\"id\":\"c8127d0d-9c5b-45b6-c520-b6358e936b4c\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"2d5f0fa2-45de-489c-c80f-3a284921e719\"}}],\"id\":\"c8127d0d-9c5b-45b6-c520-b6358e936b4c\",\"tags\":[],\"doc\":null}},{\"id\":\"8de6f979-f1dd-44f2-c48e-67e2322f1c48\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"2d5f0fa2-45de-489c-c80f-3a284921e719\"}}],\"id\":\"8de6f979-f1dd-44f2-c48e-67e2322f1c48\",\"tags\":[],\"doc\":null}},{\"id\":\"b03c92e6-75d7-4ba7-cb45-7bf209d0fa0c\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"b03c92e6-75d7-4ba7-cb45-7bf209d0fa0c\",\"geometries\":[],\"doc\":null}},{\"id\":\"73e92ee0-dc65-4137-c18d-34a3381c4052\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"73e92ee0-dc65-4137-c18d-34a3381c4052\",\"tags\":[],\"doc\":null}},{\"id\":\"72d1e3bd-3fd3-4a3c-cac3-aedcf9b0550e\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"72d1e3bd-3fd3-4a3c-cac3-aedcf9b0550e\",\"tags\":[],\"doc\":null}},{\"id\":\"6d4bb37b-d0fb-47cc-c704-2b7ff6bfc2cb\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"73e92ee0-dc65-4137-c18d-34a3381c4052\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"72d1e3bd-3fd3-4a3c-cac3-aedcf9b0550e\"},\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"6d4bb37b-d0fb-47cc-c704-2b7ff6bfc2cb\",\"doc\":null,\"tags\":[]}},{\"id\":\"442e3b75-f8a9-401d-c09a-f29a9fd2bd54\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"72d1e3bd-3fd3-4a3c-cac3-aedcf9b0550e\"},\"id\":\"442e3b75-f8a9-401d-c09a-f29a9fd2bd54\",\"doc\":null,\"tags\":[]}},{\"id\":\"9ce24391-45bb-4be7-cb2a-059464107515\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"9ce24391-45bb-4be7-cb2a-059464107515\",\"tags\":[],\"doc\":null}},{\"id\":\"b05b74bc-be85-4ff9-cfd0-eac697af0391\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"b05b74bc-be85-4ff9-cfd0-eac697af0391\",\"tags\":[],\"doc\":null}},{\"id\":\"81e7c1c2-2756-4c06-cc7d-afc5e76081be\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"9ce24391-45bb-4be7-cb2a-059464107515\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"b05b74bc-be85-4ff9-cfd0-eac697af0391\"},\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"81e7c1c2-2756-4c06-cc7d-afc5e76081be\",\"doc\":null,\"tags\":[]}},{\"id\":\"b4f24390-ccf7-440f-c4d8-d750fec3b4cc\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"b05b74bc-be85-4ff9-cfd0-eac697af0391\"},\"id\":\"b4f24390-ccf7-440f-c4d8-d750fec3b4cc\",\"doc\":null,\"tags\":[]}},{\"id\":\"67d1d42a-5835-4fac-cf39-5639ed59f3a5\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"67d1d42a-5835-4fac-cf39-5639ed59f3a5\",\"doc\":null,\"tags\":[]}},{\"id\":\"2ec5695e-0b33-4846-c837-8246d7857d35\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"2ec5695e-0b33-4846-c837-8246d7857d35\",\"doc\":null,\"tags\":[]}},{\"id\":\"df53d30f-15e2-48ed-c856-9e298e3679ba\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"df53d30f-15e2-48ed-c856-9e298e3679ba\",\"tags\":[],\"doc\":null}},{\"id\":\"320898a3-5b5a-4053-c07b-fd9abc6e8b57\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"320898a3-5b5a-4053-c07b-fd9abc6e8b57\",\"tags\":[],\"doc\":null}},{\"id\":\"73463324-11ff-4df5-cd22-77221d2d2b08\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"73463324-11ff-4df5-cd22-77221d2d2b08\",\"tags\":[],\"doc\":null}},{\"id\":\"d81c44e7-a25b-4575-c503-b2b26e019215\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d81c44e7-a25b-4575-c503-b2b26e019215\",\"tags\":[],\"doc\":null}},{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"c8127d0d-9c5b-45b6-c520-b6358e936b4c\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"b03c92e6-75d7-4ba7-cb45-7bf209d0fa0c\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"6d4bb37b-d0fb-47cc-c704-2b7ff6bfc2cb\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"bdf7a075-d2b5-41e2-c151-7bb1aac9ef46\"},{\"type\":\"LinearAxis\",\"id\":\"6d4bb37b-d0fb-47cc-c704-2b7ff6bfc2cb\"},{\"type\":\"Grid\",\"id\":\"442e3b75-f8a9-401d-c09a-f29a9fd2bd54\"},{\"type\":\"LinearAxis\",\"id\":\"81e7c1c2-2756-4c06-cc7d-afc5e76081be\"},{\"type\":\"Grid\",\"id\":\"b4f24390-ccf7-440f-c4d8-d750fec3b4cc\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"67d1d42a-5835-4fac-cf39-5639ed59f3a5\"},{\"type\":\"WheelZoomTool\",\"id\":\"2ec5695e-0b33-4846-c837-8246d7857d35\"},{\"type\":\"BoxZoomTool\",\"id\":\"df53d30f-15e2-48ed-c856-9e298e3679ba\"},{\"type\":\"PreviewSaveTool\",\"id\":\"320898a3-5b5a-4053-c07b-fd9abc6e8b57\"},{\"type\":\"ResizeTool\",\"id\":\"73463324-11ff-4df5-cd22-77221d2d2b08\"},{\"type\":\"ResetTool\",\"id\":\"d81c44e7-a25b-4575-c503-b2b26e019215\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"81e7c1c2-2756-4c06-cc7d-afc5e76081be\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"8de6f979-f1dd-44f2-c48e-67e2322f1c48\"},\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#dfcb2093-dab2-406a-c037-c5acb2c9087c\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#dfcb2093-dab2-406a-c037-c5acb2c9087c\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"2d5f0fa2-45de-489c-c80f-3a284921e719\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2821,250,248,212,198,205,184,151,126,98,101,77,72,48,39,37,34,26,23,19,5,8,5,8,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"2d5f0fa2-45de-489c-c80f-3a284921e719\",\"doc\":null,\"tags\":[]}},{\"id\":\"946b547e-c9ec-47d7-c70c-f8dba3f7bb6e\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"946b547e-c9ec-47d7-c70c-f8dba3f7bb6e\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"19dfee05-f41d-4712-c72b-28b63b83a61a\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"19dfee05-f41d-4712-c72b-28b63b83a61a\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"bdf7a075-d2b5-41e2-c151-7bb1aac9ef46\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"19dfee05-f41d-4712-c72b-28b63b83a61a\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"2d5f0fa2-45de-489c-c80f-3a284921e719\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"946b547e-c9ec-47d7-c70c-f8dba3f7bb6e\"},\"selection_glyph\":null,\"id\":\"bdf7a075-d2b5-41e2-c151-7bb1aac9ef46\",\"tags\":[]}},{\"id\":\"c8127d0d-9c5b-45b6-c520-b6358e936b4c\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"2d5f0fa2-45de-489c-c80f-3a284921e719\"}}],\"id\":\"c8127d0d-9c5b-45b6-c520-b6358e936b4c\",\"tags\":[],\"doc\":null}},{\"id\":\"8de6f979-f1dd-44f2-c48e-67e2322f1c48\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"2d5f0fa2-45de-489c-c80f-3a284921e719\"}}],\"id\":\"8de6f979-f1dd-44f2-c48e-67e2322f1c48\",\"tags\":[],\"doc\":null}},{\"id\":\"b03c92e6-75d7-4ba7-cb45-7bf209d0fa0c\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"b03c92e6-75d7-4ba7-cb45-7bf209d0fa0c\",\"geometries\":[],\"doc\":null}},{\"id\":\"73e92ee0-dc65-4137-c18d-34a3381c4052\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"73e92ee0-dc65-4137-c18d-34a3381c4052\",\"tags\":[],\"doc\":null}},{\"id\":\"72d1e3bd-3fd3-4a3c-cac3-aedcf9b0550e\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"72d1e3bd-3fd3-4a3c-cac3-aedcf9b0550e\",\"tags\":[],\"doc\":null}},{\"id\":\"6d4bb37b-d0fb-47cc-c704-2b7ff6bfc2cb\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"73e92ee0-dc65-4137-c18d-34a3381c4052\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"72d1e3bd-3fd3-4a3c-cac3-aedcf9b0550e\"},\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"6d4bb37b-d0fb-47cc-c704-2b7ff6bfc2cb\",\"doc\":null,\"tags\":[]}},{\"id\":\"442e3b75-f8a9-401d-c09a-f29a9fd2bd54\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"72d1e3bd-3fd3-4a3c-cac3-aedcf9b0550e\"},\"id\":\"442e3b75-f8a9-401d-c09a-f29a9fd2bd54\",\"doc\":null,\"tags\":[]}},{\"id\":\"9ce24391-45bb-4be7-cb2a-059464107515\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"9ce24391-45bb-4be7-cb2a-059464107515\",\"tags\":[],\"doc\":null}},{\"id\":\"b05b74bc-be85-4ff9-cfd0-eac697af0391\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"b05b74bc-be85-4ff9-cfd0-eac697af0391\",\"tags\":[],\"doc\":null}},{\"id\":\"81e7c1c2-2756-4c06-cc7d-afc5e76081be\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"9ce24391-45bb-4be7-cb2a-059464107515\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"b05b74bc-be85-4ff9-cfd0-eac697af0391\"},\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"81e7c1c2-2756-4c06-cc7d-afc5e76081be\",\"doc\":null,\"tags\":[]}},{\"id\":\"b4f24390-ccf7-440f-c4d8-d750fec3b4cc\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"b05b74bc-be85-4ff9-cfd0-eac697af0391\"},\"id\":\"b4f24390-ccf7-440f-c4d8-d750fec3b4cc\",\"doc\":null,\"tags\":[]}},{\"id\":\"67d1d42a-5835-4fac-cf39-5639ed59f3a5\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"67d1d42a-5835-4fac-cf39-5639ed59f3a5\",\"doc\":null,\"tags\":[]}},{\"id\":\"2ec5695e-0b33-4846-c837-8246d7857d35\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"2ec5695e-0b33-4846-c837-8246d7857d35\",\"doc\":null,\"tags\":[]}},{\"id\":\"df53d30f-15e2-48ed-c856-9e298e3679ba\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"df53d30f-15e2-48ed-c856-9e298e3679ba\",\"tags\":[],\"doc\":null}},{\"id\":\"320898a3-5b5a-4053-c07b-fd9abc6e8b57\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"320898a3-5b5a-4053-c07b-fd9abc6e8b57\",\"tags\":[],\"doc\":null}},{\"id\":\"73463324-11ff-4df5-cd22-77221d2d2b08\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"73463324-11ff-4df5-cd22-77221d2d2b08\",\"tags\":[],\"doc\":null}},{\"id\":\"d81c44e7-a25b-4575-c503-b2b26e019215\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d81c44e7-a25b-4575-c503-b2b26e019215\",\"tags\":[],\"doc\":null}},{\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"c8127d0d-9c5b-45b6-c520-b6358e936b4c\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"b03c92e6-75d7-4ba7-cb45-7bf209d0fa0c\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"6d4bb37b-d0fb-47cc-c704-2b7ff6bfc2cb\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"bdf7a075-d2b5-41e2-c151-7bb1aac9ef46\"},{\"type\":\"LinearAxis\",\"id\":\"6d4bb37b-d0fb-47cc-c704-2b7ff6bfc2cb\"},{\"type\":\"Grid\",\"id\":\"442e3b75-f8a9-401d-c09a-f29a9fd2bd54\"},{\"type\":\"LinearAxis\",\"id\":\"81e7c1c2-2756-4c06-cc7d-afc5e76081be\"},{\"type\":\"Grid\",\"id\":\"b4f24390-ccf7-440f-c4d8-d750fec3b4cc\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"67d1d42a-5835-4fac-cf39-5639ed59f3a5\"},{\"type\":\"WheelZoomTool\",\"id\":\"2ec5695e-0b33-4846-c837-8246d7857d35\"},{\"type\":\"BoxZoomTool\",\"id\":\"df53d30f-15e2-48ed-c856-9e298e3679ba\"},{\"type\":\"PreviewSaveTool\",\"id\":\"320898a3-5b5a-4053-c07b-fd9abc6e8b57\"},{\"type\":\"ResizeTool\",\"id\":\"73463324-11ff-4df5-cd22-77221d2d2b08\"},{\"type\":\"ResetTool\",\"id\":\"d81c44e7-a25b-4575-c503-b2b26e019215\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"81e7c1c2-2756-4c06-cc7d-afc5e76081be\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"8de6f979-f1dd-44f2-c48e-67e2322f1c48\"},\"id\":\"e60871d9-a5a5-4b46-cbe4-21f392c55cc4\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#dfcb2093-dab2-406a-c037-c5acb2c9087c\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#dfcb2093-dab2-406a-c037-c5acb2c9087c\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"dfcb2093-dab2-406a-c037-c5acb2c9087c\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"dfcb2093-dab2-406a-c037-c5acb2c9087c\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'dfcb2093-dab2-406a-c037-c5acb2c9087c'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"9c238f85-9a92-4dd3-cdf4-7247f041e224\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2821,250,248,212,198,205,184,151,126,98,101,77,72,48,39,37,34,26,23,19,5,8,5,8,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"9c238f85-9a92-4dd3-cdf4-7247f041e224\",\"doc\":null,\"tags\":[]}},{\"id\":\"c3235607-3964-4d5b-cd91-990ba11ba7d3\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"c3235607-3964-4d5b-cd91-990ba11ba7d3\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"bba3dbfc-b056-41ce-c1f0-ccdcfa933979\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"bba3dbfc-b056-41ce-c1f0-ccdcfa933979\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"cf9a1998-bd72-4233-c264-64b58a1ea865\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"bba3dbfc-b056-41ce-c1f0-ccdcfa933979\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"9c238f85-9a92-4dd3-cdf4-7247f041e224\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"c3235607-3964-4d5b-cd91-990ba11ba7d3\"},\"selection_glyph\":null,\"id\":\"cf9a1998-bd72-4233-c264-64b58a1ea865\",\"tags\":[]}},{\"id\":\"6bdc5456-5054-4820-c896-0bda603d1aa3\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9c238f85-9a92-4dd3-cdf4-7247f041e224\"}}],\"id\":\"6bdc5456-5054-4820-c896-0bda603d1aa3\",\"tags\":[],\"doc\":null}},{\"id\":\"253666db-35a1-4a2a-ca06-081bfb1ffcf9\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9c238f85-9a92-4dd3-cdf4-7247f041e224\"}}],\"id\":\"253666db-35a1-4a2a-ca06-081bfb1ffcf9\",\"tags\":[],\"doc\":null}},{\"id\":\"132547f9-471b-4e67-cec2-103187494a64\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"132547f9-471b-4e67-cec2-103187494a64\",\"geometries\":[],\"doc\":null}},{\"id\":\"b7fefa12-fb3a-4be1-cbdb-f623be640eba\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"b7fefa12-fb3a-4be1-cbdb-f623be640eba\",\"tags\":[],\"doc\":null}},{\"id\":\"19bf6371-4bcf-41c4-c1db-9581a31a9e58\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"19bf6371-4bcf-41c4-c1db-9581a31a9e58\",\"tags\":[],\"doc\":null}},{\"id\":\"57556a59-8d49-4fef-cf00-98cf84c1829f\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"b7fefa12-fb3a-4be1-cbdb-f623be640eba\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"19bf6371-4bcf-41c4-c1db-9581a31a9e58\"},\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"57556a59-8d49-4fef-cf00-98cf84c1829f\",\"doc\":null,\"tags\":[]}},{\"id\":\"e681f55b-6433-4b08-cbd5-56851e1ca9b4\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"19bf6371-4bcf-41c4-c1db-9581a31a9e58\"},\"id\":\"e681f55b-6433-4b08-cbd5-56851e1ca9b4\",\"doc\":null,\"tags\":[]}},{\"id\":\"39df18c0-5500-4893-c8f6-7f0d8b823929\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"39df18c0-5500-4893-c8f6-7f0d8b823929\",\"tags\":[],\"doc\":null}},{\"id\":\"e200bde2-7ff2-40dd-c0d6-252146e7b23e\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"e200bde2-7ff2-40dd-c0d6-252146e7b23e\",\"tags\":[],\"doc\":null}},{\"id\":\"2b5dbcd7-364b-4ba2-cb98-a6fc35ee4632\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"39df18c0-5500-4893-c8f6-7f0d8b823929\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e200bde2-7ff2-40dd-c0d6-252146e7b23e\"},\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"2b5dbcd7-364b-4ba2-cb98-a6fc35ee4632\",\"doc\":null,\"tags\":[]}},{\"id\":\"e13a1f18-c2a2-427e-c298-97d44fbc8d35\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e200bde2-7ff2-40dd-c0d6-252146e7b23e\"},\"id\":\"e13a1f18-c2a2-427e-c298-97d44fbc8d35\",\"doc\":null,\"tags\":[]}},{\"id\":\"3dc4d9c7-4686-4505-c5c0-94ae2d145c2c\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"3dc4d9c7-4686-4505-c5c0-94ae2d145c2c\",\"doc\":null,\"tags\":[]}},{\"id\":\"bc0cbae7-ae13-41e4-c125-fc822e16a164\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"bc0cbae7-ae13-41e4-c125-fc822e16a164\",\"doc\":null,\"tags\":[]}},{\"id\":\"9614dfa8-9f73-4906-c9b8-ce004b16bcd7\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"9614dfa8-9f73-4906-c9b8-ce004b16bcd7\",\"tags\":[],\"doc\":null}},{\"id\":\"7ef987d6-b99b-4c16-cc7e-9c4c50cb5cc4\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"7ef987d6-b99b-4c16-cc7e-9c4c50cb5cc4\",\"tags\":[],\"doc\":null}},{\"id\":\"6dab06e5-b677-4483-c434-491c70e78b59\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"6dab06e5-b677-4483-c434-491c70e78b59\",\"tags\":[],\"doc\":null}},{\"id\":\"9749a434-9fdf-409b-c008-777ce997c7b1\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"9749a434-9fdf-409b-c008-777ce997c7b1\",\"tags\":[],\"doc\":null}},{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"6bdc5456-5054-4820-c896-0bda603d1aa3\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"132547f9-471b-4e67-cec2-103187494a64\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"57556a59-8d49-4fef-cf00-98cf84c1829f\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"cf9a1998-bd72-4233-c264-64b58a1ea865\"},{\"type\":\"LinearAxis\",\"id\":\"57556a59-8d49-4fef-cf00-98cf84c1829f\"},{\"type\":\"Grid\",\"id\":\"e681f55b-6433-4b08-cbd5-56851e1ca9b4\"},{\"type\":\"LinearAxis\",\"id\":\"2b5dbcd7-364b-4ba2-cb98-a6fc35ee4632\"},{\"type\":\"Grid\",\"id\":\"e13a1f18-c2a2-427e-c298-97d44fbc8d35\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"3dc4d9c7-4686-4505-c5c0-94ae2d145c2c\"},{\"type\":\"WheelZoomTool\",\"id\":\"bc0cbae7-ae13-41e4-c125-fc822e16a164\"},{\"type\":\"BoxZoomTool\",\"id\":\"9614dfa8-9f73-4906-c9b8-ce004b16bcd7\"},{\"type\":\"PreviewSaveTool\",\"id\":\"7ef987d6-b99b-4c16-cc7e-9c4c50cb5cc4\"},{\"type\":\"ResizeTool\",\"id\":\"6dab06e5-b677-4483-c434-491c70e78b59\"},{\"type\":\"ResetTool\",\"id\":\"9749a434-9fdf-409b-c008-777ce997c7b1\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 4\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"2b5dbcd7-364b-4ba2-cb98-a6fc35ee4632\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"253666db-35a1-4a2a-ca06-081bfb1ffcf9\"},\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#dfcb2093-dab2-406a-c037-c5acb2c9087c\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#dfcb2093-dab2-406a-c037-c5acb2c9087c\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"9c238f85-9a92-4dd3-cdf4-7247f041e224\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2821,250,248,212,198,205,184,151,126,98,101,77,72,48,39,37,34,26,23,19,5,8,5,8,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"9c238f85-9a92-4dd3-cdf4-7247f041e224\",\"doc\":null,\"tags\":[]}},{\"id\":\"c3235607-3964-4d5b-cd91-990ba11ba7d3\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"c3235607-3964-4d5b-cd91-990ba11ba7d3\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"bba3dbfc-b056-41ce-c1f0-ccdcfa933979\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"bba3dbfc-b056-41ce-c1f0-ccdcfa933979\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"cf9a1998-bd72-4233-c264-64b58a1ea865\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"bba3dbfc-b056-41ce-c1f0-ccdcfa933979\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"9c238f85-9a92-4dd3-cdf4-7247f041e224\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"c3235607-3964-4d5b-cd91-990ba11ba7d3\"},\"selection_glyph\":null,\"id\":\"cf9a1998-bd72-4233-c264-64b58a1ea865\",\"tags\":[]}},{\"id\":\"6bdc5456-5054-4820-c896-0bda603d1aa3\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9c238f85-9a92-4dd3-cdf4-7247f041e224\"}}],\"id\":\"6bdc5456-5054-4820-c896-0bda603d1aa3\",\"tags\":[],\"doc\":null}},{\"id\":\"253666db-35a1-4a2a-ca06-081bfb1ffcf9\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9c238f85-9a92-4dd3-cdf4-7247f041e224\"}}],\"id\":\"253666db-35a1-4a2a-ca06-081bfb1ffcf9\",\"tags\":[],\"doc\":null}},{\"id\":\"132547f9-471b-4e67-cec2-103187494a64\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"132547f9-471b-4e67-cec2-103187494a64\",\"geometries\":[],\"doc\":null}},{\"id\":\"b7fefa12-fb3a-4be1-cbdb-f623be640eba\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"b7fefa12-fb3a-4be1-cbdb-f623be640eba\",\"tags\":[],\"doc\":null}},{\"id\":\"19bf6371-4bcf-41c4-c1db-9581a31a9e58\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"19bf6371-4bcf-41c4-c1db-9581a31a9e58\",\"tags\":[],\"doc\":null}},{\"id\":\"57556a59-8d49-4fef-cf00-98cf84c1829f\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"b7fefa12-fb3a-4be1-cbdb-f623be640eba\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"19bf6371-4bcf-41c4-c1db-9581a31a9e58\"},\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"57556a59-8d49-4fef-cf00-98cf84c1829f\",\"doc\":null,\"tags\":[]}},{\"id\":\"e681f55b-6433-4b08-cbd5-56851e1ca9b4\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"19bf6371-4bcf-41c4-c1db-9581a31a9e58\"},\"id\":\"e681f55b-6433-4b08-cbd5-56851e1ca9b4\",\"doc\":null,\"tags\":[]}},{\"id\":\"39df18c0-5500-4893-c8f6-7f0d8b823929\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"39df18c0-5500-4893-c8f6-7f0d8b823929\",\"tags\":[],\"doc\":null}},{\"id\":\"e200bde2-7ff2-40dd-c0d6-252146e7b23e\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"e200bde2-7ff2-40dd-c0d6-252146e7b23e\",\"tags\":[],\"doc\":null}},{\"id\":\"2b5dbcd7-364b-4ba2-cb98-a6fc35ee4632\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"39df18c0-5500-4893-c8f6-7f0d8b823929\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e200bde2-7ff2-40dd-c0d6-252146e7b23e\"},\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"2b5dbcd7-364b-4ba2-cb98-a6fc35ee4632\",\"doc\":null,\"tags\":[]}},{\"id\":\"e13a1f18-c2a2-427e-c298-97d44fbc8d35\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e200bde2-7ff2-40dd-c0d6-252146e7b23e\"},\"id\":\"e13a1f18-c2a2-427e-c298-97d44fbc8d35\",\"doc\":null,\"tags\":[]}},{\"id\":\"3dc4d9c7-4686-4505-c5c0-94ae2d145c2c\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"3dc4d9c7-4686-4505-c5c0-94ae2d145c2c\",\"doc\":null,\"tags\":[]}},{\"id\":\"bc0cbae7-ae13-41e4-c125-fc822e16a164\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"bc0cbae7-ae13-41e4-c125-fc822e16a164\",\"doc\":null,\"tags\":[]}},{\"id\":\"9614dfa8-9f73-4906-c9b8-ce004b16bcd7\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"9614dfa8-9f73-4906-c9b8-ce004b16bcd7\",\"tags\":[],\"doc\":null}},{\"id\":\"7ef987d6-b99b-4c16-cc7e-9c4c50cb5cc4\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"7ef987d6-b99b-4c16-cc7e-9c4c50cb5cc4\",\"tags\":[],\"doc\":null}},{\"id\":\"6dab06e5-b677-4483-c434-491c70e78b59\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"6dab06e5-b677-4483-c434-491c70e78b59\",\"tags\":[],\"doc\":null}},{\"id\":\"9749a434-9fdf-409b-c008-777ce997c7b1\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"9749a434-9fdf-409b-c008-777ce997c7b1\",\"tags\":[],\"doc\":null}},{\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"6bdc5456-5054-4820-c896-0bda603d1aa3\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"132547f9-471b-4e67-cec2-103187494a64\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"57556a59-8d49-4fef-cf00-98cf84c1829f\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"cf9a1998-bd72-4233-c264-64b58a1ea865\"},{\"type\":\"LinearAxis\",\"id\":\"57556a59-8d49-4fef-cf00-98cf84c1829f\"},{\"type\":\"Grid\",\"id\":\"e681f55b-6433-4b08-cbd5-56851e1ca9b4\"},{\"type\":\"LinearAxis\",\"id\":\"2b5dbcd7-364b-4ba2-cb98-a6fc35ee4632\"},{\"type\":\"Grid\",\"id\":\"e13a1f18-c2a2-427e-c298-97d44fbc8d35\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"3dc4d9c7-4686-4505-c5c0-94ae2d145c2c\"},{\"type\":\"WheelZoomTool\",\"id\":\"bc0cbae7-ae13-41e4-c125-fc822e16a164\"},{\"type\":\"BoxZoomTool\",\"id\":\"9614dfa8-9f73-4906-c9b8-ce004b16bcd7\"},{\"type\":\"PreviewSaveTool\",\"id\":\"7ef987d6-b99b-4c16-cc7e-9c4c50cb5cc4\"},{\"type\":\"ResizeTool\",\"id\":\"6dab06e5-b677-4483-c434-491c70e78b59\"},{\"type\":\"ResetTool\",\"id\":\"9749a434-9fdf-409b-c008-777ce997c7b1\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 4\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"2b5dbcd7-364b-4ba2-cb98-a6fc35ee4632\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"253666db-35a1-4a2a-ca06-081bfb1ffcf9\"},\"id\":\"d58eb0af-36cc-4ca7-cc91-07b7c5b4236c\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#dfcb2093-dab2-406a-c037-c5acb2c9087c\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#dfcb2093-dab2-406a-c037-c5acb2c9087c\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"c3e914dd-9ef0-4d30-cdc5-0950b2e84f97\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"dfcb2093-dab2-406a-c037-c5acb2c9087c\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'dfcb2093-dab2-406a-c037-c5acb2c9087c'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"c4ed0338-7dec-4521-c59b-f38ca5145ee8\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"3325eb2e-316d-4a16-caef-3de3fead25d1\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2821,250,248,212,198,205,184,151,126,98,101,77,72,48,39,37,34,26,23,19,5,8,5,8,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"3325eb2e-316d-4a16-caef-3de3fead25d1\",\"doc\":null,\"tags\":[]}},{\"id\":\"513893b6-c1c5-428f-c2c0-0750323fd794\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"513893b6-c1c5-428f-c2c0-0750323fd794\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"79e9d9c4-4a28-4e17-ce72-74f85bda98cb\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"79e9d9c4-4a28-4e17-ce72-74f85bda98cb\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"3f947ee5-3034-420f-c254-64fb6852581e\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"79e9d9c4-4a28-4e17-ce72-74f85bda98cb\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"3325eb2e-316d-4a16-caef-3de3fead25d1\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"513893b6-c1c5-428f-c2c0-0750323fd794\"},\"selection_glyph\":null,\"id\":\"3f947ee5-3034-420f-c254-64fb6852581e\",\"tags\":[]}},{\"id\":\"3060bed5-c949-45a3-c5d9-2dc469b0b7a8\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3325eb2e-316d-4a16-caef-3de3fead25d1\"}}],\"id\":\"3060bed5-c949-45a3-c5d9-2dc469b0b7a8\",\"tags\":[],\"doc\":null}},{\"id\":\"4473ce17-7b5a-40f1-c0fc-671f22f9d9ec\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3325eb2e-316d-4a16-caef-3de3fead25d1\"}}],\"id\":\"4473ce17-7b5a-40f1-c0fc-671f22f9d9ec\",\"tags\":[],\"doc\":null}},{\"id\":\"bfcd134d-ed90-4dd3-cd1e-272608ba7b79\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"bfcd134d-ed90-4dd3-cd1e-272608ba7b79\",\"geometries\":[],\"doc\":null}},{\"id\":\"526b14f2-e959-4543-c5e2-a0977418961b\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"526b14f2-e959-4543-c5e2-a0977418961b\",\"tags\":[],\"doc\":null}},{\"id\":\"f223fef1-7924-46de-c61f-da27bee49a77\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"f223fef1-7924-46de-c61f-da27bee49a77\",\"tags\":[],\"doc\":null}},{\"id\":\"b028db9d-f21f-4c47-cc7f-31598ae7ef89\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"526b14f2-e959-4543-c5e2-a0977418961b\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f223fef1-7924-46de-c61f-da27bee49a77\"},\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"b028db9d-f21f-4c47-cc7f-31598ae7ef89\",\"doc\":null,\"tags\":[]}},{\"id\":\"32f281dd-d787-4ac1-ca05-6634b67774cb\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f223fef1-7924-46de-c61f-da27bee49a77\"},\"id\":\"32f281dd-d787-4ac1-ca05-6634b67774cb\",\"doc\":null,\"tags\":[]}},{\"id\":\"4b176ccc-5fa2-4375-c34f-9a08a2ad51f2\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"4b176ccc-5fa2-4375-c34f-9a08a2ad51f2\",\"tags\":[],\"doc\":null}},{\"id\":\"2c5ed6db-c7a4-4c91-ccb9-01d098f2b9c1\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"2c5ed6db-c7a4-4c91-ccb9-01d098f2b9c1\",\"tags\":[],\"doc\":null}},{\"id\":\"6fcf14a1-c7d6-4475-c45c-4f1a34b2c25c\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"4b176ccc-5fa2-4375-c34f-9a08a2ad51f2\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2c5ed6db-c7a4-4c91-ccb9-01d098f2b9c1\"},\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"6fcf14a1-c7d6-4475-c45c-4f1a34b2c25c\",\"doc\":null,\"tags\":[]}},{\"id\":\"63d903d9-42a6-4eac-cec8-5b80ff5afcb3\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2c5ed6db-c7a4-4c91-ccb9-01d098f2b9c1\"},\"id\":\"63d903d9-42a6-4eac-cec8-5b80ff5afcb3\",\"doc\":null,\"tags\":[]}},{\"id\":\"03bac975-9b9a-438a-c3a9-5a88240f7499\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"03bac975-9b9a-438a-c3a9-5a88240f7499\",\"doc\":null,\"tags\":[]}},{\"id\":\"11587a44-da13-4f1a-cfb0-5c52d1d69230\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"11587a44-da13-4f1a-cfb0-5c52d1d69230\",\"doc\":null,\"tags\":[]}},{\"id\":\"89325772-6ad0-46c7-c6e7-2e863ff20c14\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"89325772-6ad0-46c7-c6e7-2e863ff20c14\",\"tags\":[],\"doc\":null}},{\"id\":\"270f4066-aa4b-4d0d-cd48-c51a0717887b\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"270f4066-aa4b-4d0d-cd48-c51a0717887b\",\"tags\":[],\"doc\":null}},{\"id\":\"c68f8bee-12c0-4034-c085-296b6310d5ad\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c68f8bee-12c0-4034-c085-296b6310d5ad\",\"tags\":[],\"doc\":null}},{\"id\":\"8df64787-ed5a-44e2-c40e-0c4abd36ee08\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"8df64787-ed5a-44e2-c40e-0c4abd36ee08\",\"tags\":[],\"doc\":null}},{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"3060bed5-c949-45a3-c5d9-2dc469b0b7a8\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"bfcd134d-ed90-4dd3-cd1e-272608ba7b79\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"b028db9d-f21f-4c47-cc7f-31598ae7ef89\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"3f947ee5-3034-420f-c254-64fb6852581e\"},{\"type\":\"LinearAxis\",\"id\":\"b028db9d-f21f-4c47-cc7f-31598ae7ef89\"},{\"type\":\"Grid\",\"id\":\"32f281dd-d787-4ac1-ca05-6634b67774cb\"},{\"type\":\"LinearAxis\",\"id\":\"6fcf14a1-c7d6-4475-c45c-4f1a34b2c25c\"},{\"type\":\"Grid\",\"id\":\"63d903d9-42a6-4eac-cec8-5b80ff5afcb3\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"03bac975-9b9a-438a-c3a9-5a88240f7499\"},{\"type\":\"WheelZoomTool\",\"id\":\"11587a44-da13-4f1a-cfb0-5c52d1d69230\"},{\"type\":\"BoxZoomTool\",\"id\":\"89325772-6ad0-46c7-c6e7-2e863ff20c14\"},{\"type\":\"PreviewSaveTool\",\"id\":\"270f4066-aa4b-4d0d-cd48-c51a0717887b\"},{\"type\":\"ResizeTool\",\"id\":\"c68f8bee-12c0-4034-c085-296b6310d5ad\"},{\"type\":\"ResetTool\",\"id\":\"8df64787-ed5a-44e2-c40e-0c4abd36ee08\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 4\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"6fcf14a1-c7d6-4475-c45c-4f1a34b2c25c\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"4473ce17-7b5a-40f1-c0fc-671f22f9d9ec\"},\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#dfcb2093-dab2-406a-c037-c5acb2c9087c\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#dfcb2093-dab2-406a-c037-c5acb2c9087c\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"c4ed0338-7dec-4521-c59b-f38ca5145ee8\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"3325eb2e-316d-4a16-caef-3de3fead25d1\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2821,250,248,212,198,205,184,151,126,98,101,77,72,48,39,37,34,26,23,19,5,8,5,8,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"3325eb2e-316d-4a16-caef-3de3fead25d1\",\"doc\":null,\"tags\":[]}},{\"id\":\"513893b6-c1c5-428f-c2c0-0750323fd794\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"513893b6-c1c5-428f-c2c0-0750323fd794\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"79e9d9c4-4a28-4e17-ce72-74f85bda98cb\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"79e9d9c4-4a28-4e17-ce72-74f85bda98cb\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"3f947ee5-3034-420f-c254-64fb6852581e\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"79e9d9c4-4a28-4e17-ce72-74f85bda98cb\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"3325eb2e-316d-4a16-caef-3de3fead25d1\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"513893b6-c1c5-428f-c2c0-0750323fd794\"},\"selection_glyph\":null,\"id\":\"3f947ee5-3034-420f-c254-64fb6852581e\",\"tags\":[]}},{\"id\":\"3060bed5-c949-45a3-c5d9-2dc469b0b7a8\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3325eb2e-316d-4a16-caef-3de3fead25d1\"}}],\"id\":\"3060bed5-c949-45a3-c5d9-2dc469b0b7a8\",\"tags\":[],\"doc\":null}},{\"id\":\"4473ce17-7b5a-40f1-c0fc-671f22f9d9ec\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3325eb2e-316d-4a16-caef-3de3fead25d1\"}}],\"id\":\"4473ce17-7b5a-40f1-c0fc-671f22f9d9ec\",\"tags\":[],\"doc\":null}},{\"id\":\"bfcd134d-ed90-4dd3-cd1e-272608ba7b79\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"bfcd134d-ed90-4dd3-cd1e-272608ba7b79\",\"geometries\":[],\"doc\":null}},{\"id\":\"526b14f2-e959-4543-c5e2-a0977418961b\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"526b14f2-e959-4543-c5e2-a0977418961b\",\"tags\":[],\"doc\":null}},{\"id\":\"f223fef1-7924-46de-c61f-da27bee49a77\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"f223fef1-7924-46de-c61f-da27bee49a77\",\"tags\":[],\"doc\":null}},{\"id\":\"b028db9d-f21f-4c47-cc7f-31598ae7ef89\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"526b14f2-e959-4543-c5e2-a0977418961b\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f223fef1-7924-46de-c61f-da27bee49a77\"},\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"b028db9d-f21f-4c47-cc7f-31598ae7ef89\",\"doc\":null,\"tags\":[]}},{\"id\":\"32f281dd-d787-4ac1-ca05-6634b67774cb\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f223fef1-7924-46de-c61f-da27bee49a77\"},\"id\":\"32f281dd-d787-4ac1-ca05-6634b67774cb\",\"doc\":null,\"tags\":[]}},{\"id\":\"4b176ccc-5fa2-4375-c34f-9a08a2ad51f2\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"4b176ccc-5fa2-4375-c34f-9a08a2ad51f2\",\"tags\":[],\"doc\":null}},{\"id\":\"2c5ed6db-c7a4-4c91-ccb9-01d098f2b9c1\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"2c5ed6db-c7a4-4c91-ccb9-01d098f2b9c1\",\"tags\":[],\"doc\":null}},{\"id\":\"6fcf14a1-c7d6-4475-c45c-4f1a34b2c25c\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"4b176ccc-5fa2-4375-c34f-9a08a2ad51f2\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2c5ed6db-c7a4-4c91-ccb9-01d098f2b9c1\"},\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"6fcf14a1-c7d6-4475-c45c-4f1a34b2c25c\",\"doc\":null,\"tags\":[]}},{\"id\":\"63d903d9-42a6-4eac-cec8-5b80ff5afcb3\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2c5ed6db-c7a4-4c91-ccb9-01d098f2b9c1\"},\"id\":\"63d903d9-42a6-4eac-cec8-5b80ff5afcb3\",\"doc\":null,\"tags\":[]}},{\"id\":\"03bac975-9b9a-438a-c3a9-5a88240f7499\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"03bac975-9b9a-438a-c3a9-5a88240f7499\",\"doc\":null,\"tags\":[]}},{\"id\":\"11587a44-da13-4f1a-cfb0-5c52d1d69230\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"11587a44-da13-4f1a-cfb0-5c52d1d69230\",\"doc\":null,\"tags\":[]}},{\"id\":\"89325772-6ad0-46c7-c6e7-2e863ff20c14\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"89325772-6ad0-46c7-c6e7-2e863ff20c14\",\"tags\":[],\"doc\":null}},{\"id\":\"270f4066-aa4b-4d0d-cd48-c51a0717887b\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"270f4066-aa4b-4d0d-cd48-c51a0717887b\",\"tags\":[],\"doc\":null}},{\"id\":\"c68f8bee-12c0-4034-c085-296b6310d5ad\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c68f8bee-12c0-4034-c085-296b6310d5ad\",\"tags\":[],\"doc\":null}},{\"id\":\"8df64787-ed5a-44e2-c40e-0c4abd36ee08\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"8df64787-ed5a-44e2-c40e-0c4abd36ee08\",\"tags\":[],\"doc\":null}},{\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"3060bed5-c949-45a3-c5d9-2dc469b0b7a8\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"bfcd134d-ed90-4dd3-cd1e-272608ba7b79\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"b028db9d-f21f-4c47-cc7f-31598ae7ef89\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"3f947ee5-3034-420f-c254-64fb6852581e\"},{\"type\":\"LinearAxis\",\"id\":\"b028db9d-f21f-4c47-cc7f-31598ae7ef89\"},{\"type\":\"Grid\",\"id\":\"32f281dd-d787-4ac1-ca05-6634b67774cb\"},{\"type\":\"LinearAxis\",\"id\":\"6fcf14a1-c7d6-4475-c45c-4f1a34b2c25c\"},{\"type\":\"Grid\",\"id\":\"63d903d9-42a6-4eac-cec8-5b80ff5afcb3\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"03bac975-9b9a-438a-c3a9-5a88240f7499\"},{\"type\":\"WheelZoomTool\",\"id\":\"11587a44-da13-4f1a-cfb0-5c52d1d69230\"},{\"type\":\"BoxZoomTool\",\"id\":\"89325772-6ad0-46c7-c6e7-2e863ff20c14\"},{\"type\":\"PreviewSaveTool\",\"id\":\"270f4066-aa4b-4d0d-cd48-c51a0717887b\"},{\"type\":\"ResizeTool\",\"id\":\"c68f8bee-12c0-4034-c085-296b6310d5ad\"},{\"type\":\"ResetTool\",\"id\":\"8df64787-ed5a-44e2-c40e-0c4abd36ee08\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 4\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"6fcf14a1-c7d6-4475-c45c-4f1a34b2c25c\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"4473ce17-7b5a-40f1-c0fc-671f22f9d9ec\"},\"id\":\"c4ed0338-7dec-4521-c59b-f38ca5145ee8\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#dfcb2093-dab2-406a-c037-c5acb2c9087c\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#dfcb2093-dab2-406a-c037-c5acb2c9087c\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"640aa4fb-7d02-4bf9-cb7b-28e88f363ad5\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"ec0c0876-9125-4495-c44e-5acab49a8107\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'ec0c0876-9125-4495-c44e-5acab49a8107'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"91df9c4f-0c84-46c6-c6c9-2c390dabe814\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2808,324,285,278,254,210,181,148,136,109,72,51,42,36,26,13,13,7,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"91df9c4f-0c84-46c6-c6c9-2c390dabe814\",\"doc\":null,\"tags\":[]}},{\"id\":\"ef3b4e9d-6f72-4413-c4ba-bebcf81b919f\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"ef3b4e9d-6f72-4413-c4ba-bebcf81b919f\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"863b08c1-f84e-4187-c124-7bccb92a0e7f\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"863b08c1-f84e-4187-c124-7bccb92a0e7f\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"6958470b-2edc-4f96-cf44-b223f01d4761\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"863b08c1-f84e-4187-c124-7bccb92a0e7f\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"91df9c4f-0c84-46c6-c6c9-2c390dabe814\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"ef3b4e9d-6f72-4413-c4ba-bebcf81b919f\"},\"selection_glyph\":null,\"id\":\"6958470b-2edc-4f96-cf44-b223f01d4761\",\"tags\":[]}},{\"id\":\"3280775b-bedd-4848-c801-ce53353dd290\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"91df9c4f-0c84-46c6-c6c9-2c390dabe814\"}}],\"id\":\"3280775b-bedd-4848-c801-ce53353dd290\",\"tags\":[],\"doc\":null}},{\"id\":\"da33c948-e4d2-494d-c99a-81eac63abaaa\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"91df9c4f-0c84-46c6-c6c9-2c390dabe814\"}}],\"id\":\"da33c948-e4d2-494d-c99a-81eac63abaaa\",\"tags\":[],\"doc\":null}},{\"id\":\"c78bdc78-110b-478e-c748-780c65553726\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"c78bdc78-110b-478e-c748-780c65553726\",\"geometries\":[],\"doc\":null}},{\"id\":\"f21f21c8-cbc9-427e-c234-5f5e9d7ab7b3\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"f21f21c8-cbc9-427e-c234-5f5e9d7ab7b3\",\"tags\":[],\"doc\":null}},{\"id\":\"d22d4f0d-e035-4ed8-ce47-950619fe1662\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"d22d4f0d-e035-4ed8-ce47-950619fe1662\",\"tags\":[],\"doc\":null}},{\"id\":\"78d21869-59df-45f0-c547-bf9f9bdf9629\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"f21f21c8-cbc9-427e-c234-5f5e9d7ab7b3\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d22d4f0d-e035-4ed8-ce47-950619fe1662\"},\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"78d21869-59df-45f0-c547-bf9f9bdf9629\",\"doc\":null,\"tags\":[]}},{\"id\":\"c575f851-b8d6-45cd-c5d0-c252abceffba\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d22d4f0d-e035-4ed8-ce47-950619fe1662\"},\"id\":\"c575f851-b8d6-45cd-c5d0-c252abceffba\",\"doc\":null,\"tags\":[]}},{\"id\":\"89c7a0e7-6a06-4a60-caea-162ff4ce380a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"89c7a0e7-6a06-4a60-caea-162ff4ce380a\",\"tags\":[],\"doc\":null}},{\"id\":\"921bc471-bbea-4806-c82f-5340be2a2f07\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"921bc471-bbea-4806-c82f-5340be2a2f07\",\"tags\":[],\"doc\":null}},{\"id\":\"b223dc68-b42d-4f14-cfcf-ecd29e775b2b\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"89c7a0e7-6a06-4a60-caea-162ff4ce380a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"921bc471-bbea-4806-c82f-5340be2a2f07\"},\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"b223dc68-b42d-4f14-cfcf-ecd29e775b2b\",\"doc\":null,\"tags\":[]}},{\"id\":\"d559f01f-9105-4460-c475-f522118d6199\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"921bc471-bbea-4806-c82f-5340be2a2f07\"},\"id\":\"d559f01f-9105-4460-c475-f522118d6199\",\"doc\":null,\"tags\":[]}},{\"id\":\"0ed9866c-8b0a-4764-c7d4-41ecb3922c43\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"0ed9866c-8b0a-4764-c7d4-41ecb3922c43\",\"doc\":null,\"tags\":[]}},{\"id\":\"c867edee-1140-4207-c2a3-ef6d97b4a481\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"c867edee-1140-4207-c2a3-ef6d97b4a481\",\"doc\":null,\"tags\":[]}},{\"id\":\"dd137151-f8ab-46dc-c666-b3a3e25ed628\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"dd137151-f8ab-46dc-c666-b3a3e25ed628\",\"tags\":[],\"doc\":null}},{\"id\":\"54ab07d9-4f09-4a4b-caa5-1e1f69c77681\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"54ab07d9-4f09-4a4b-caa5-1e1f69c77681\",\"tags\":[],\"doc\":null}},{\"id\":\"a4762888-11c8-412f-c18a-df01e7905c6a\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"a4762888-11c8-412f-c18a-df01e7905c6a\",\"tags\":[],\"doc\":null}},{\"id\":\"397b005d-922f-461d-c6c6-bcc59a423d5f\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"397b005d-922f-461d-c6c6-bcc59a423d5f\",\"tags\":[],\"doc\":null}},{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"3280775b-bedd-4848-c801-ce53353dd290\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"c78bdc78-110b-478e-c748-780c65553726\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"78d21869-59df-45f0-c547-bf9f9bdf9629\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"6958470b-2edc-4f96-cf44-b223f01d4761\"},{\"type\":\"LinearAxis\",\"id\":\"78d21869-59df-45f0-c547-bf9f9bdf9629\"},{\"type\":\"Grid\",\"id\":\"c575f851-b8d6-45cd-c5d0-c252abceffba\"},{\"type\":\"LinearAxis\",\"id\":\"b223dc68-b42d-4f14-cfcf-ecd29e775b2b\"},{\"type\":\"Grid\",\"id\":\"d559f01f-9105-4460-c475-f522118d6199\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"0ed9866c-8b0a-4764-c7d4-41ecb3922c43\"},{\"type\":\"WheelZoomTool\",\"id\":\"c867edee-1140-4207-c2a3-ef6d97b4a481\"},{\"type\":\"BoxZoomTool\",\"id\":\"dd137151-f8ab-46dc-c666-b3a3e25ed628\"},{\"type\":\"PreviewSaveTool\",\"id\":\"54ab07d9-4f09-4a4b-caa5-1e1f69c77681\"},{\"type\":\"ResizeTool\",\"id\":\"a4762888-11c8-412f-c18a-df01e7905c6a\"},{\"type\":\"ResetTool\",\"id\":\"397b005d-922f-461d-c6c6-bcc59a423d5f\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"b223dc68-b42d-4f14-cfcf-ecd29e775b2b\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"da33c948-e4d2-494d-c99a-81eac63abaaa\"},\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ec0c0876-9125-4495-c44e-5acab49a8107\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ec0c0876-9125-4495-c44e-5acab49a8107\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"91df9c4f-0c84-46c6-c6c9-2c390dabe814\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2808,324,285,278,254,210,181,148,136,109,72,51,42,36,26,13,13,7,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"91df9c4f-0c84-46c6-c6c9-2c390dabe814\",\"doc\":null,\"tags\":[]}},{\"id\":\"ef3b4e9d-6f72-4413-c4ba-bebcf81b919f\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"ef3b4e9d-6f72-4413-c4ba-bebcf81b919f\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"863b08c1-f84e-4187-c124-7bccb92a0e7f\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"863b08c1-f84e-4187-c124-7bccb92a0e7f\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"6958470b-2edc-4f96-cf44-b223f01d4761\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"863b08c1-f84e-4187-c124-7bccb92a0e7f\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"91df9c4f-0c84-46c6-c6c9-2c390dabe814\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"ef3b4e9d-6f72-4413-c4ba-bebcf81b919f\"},\"selection_glyph\":null,\"id\":\"6958470b-2edc-4f96-cf44-b223f01d4761\",\"tags\":[]}},{\"id\":\"3280775b-bedd-4848-c801-ce53353dd290\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"91df9c4f-0c84-46c6-c6c9-2c390dabe814\"}}],\"id\":\"3280775b-bedd-4848-c801-ce53353dd290\",\"tags\":[],\"doc\":null}},{\"id\":\"da33c948-e4d2-494d-c99a-81eac63abaaa\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"91df9c4f-0c84-46c6-c6c9-2c390dabe814\"}}],\"id\":\"da33c948-e4d2-494d-c99a-81eac63abaaa\",\"tags\":[],\"doc\":null}},{\"id\":\"c78bdc78-110b-478e-c748-780c65553726\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"c78bdc78-110b-478e-c748-780c65553726\",\"geometries\":[],\"doc\":null}},{\"id\":\"f21f21c8-cbc9-427e-c234-5f5e9d7ab7b3\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"f21f21c8-cbc9-427e-c234-5f5e9d7ab7b3\",\"tags\":[],\"doc\":null}},{\"id\":\"d22d4f0d-e035-4ed8-ce47-950619fe1662\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"d22d4f0d-e035-4ed8-ce47-950619fe1662\",\"tags\":[],\"doc\":null}},{\"id\":\"78d21869-59df-45f0-c547-bf9f9bdf9629\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"f21f21c8-cbc9-427e-c234-5f5e9d7ab7b3\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d22d4f0d-e035-4ed8-ce47-950619fe1662\"},\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"78d21869-59df-45f0-c547-bf9f9bdf9629\",\"doc\":null,\"tags\":[]}},{\"id\":\"c575f851-b8d6-45cd-c5d0-c252abceffba\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d22d4f0d-e035-4ed8-ce47-950619fe1662\"},\"id\":\"c575f851-b8d6-45cd-c5d0-c252abceffba\",\"doc\":null,\"tags\":[]}},{\"id\":\"89c7a0e7-6a06-4a60-caea-162ff4ce380a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"89c7a0e7-6a06-4a60-caea-162ff4ce380a\",\"tags\":[],\"doc\":null}},{\"id\":\"921bc471-bbea-4806-c82f-5340be2a2f07\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"921bc471-bbea-4806-c82f-5340be2a2f07\",\"tags\":[],\"doc\":null}},{\"id\":\"b223dc68-b42d-4f14-cfcf-ecd29e775b2b\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"89c7a0e7-6a06-4a60-caea-162ff4ce380a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"921bc471-bbea-4806-c82f-5340be2a2f07\"},\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"b223dc68-b42d-4f14-cfcf-ecd29e775b2b\",\"doc\":null,\"tags\":[]}},{\"id\":\"d559f01f-9105-4460-c475-f522118d6199\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"921bc471-bbea-4806-c82f-5340be2a2f07\"},\"id\":\"d559f01f-9105-4460-c475-f522118d6199\",\"doc\":null,\"tags\":[]}},{\"id\":\"0ed9866c-8b0a-4764-c7d4-41ecb3922c43\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"0ed9866c-8b0a-4764-c7d4-41ecb3922c43\",\"doc\":null,\"tags\":[]}},{\"id\":\"c867edee-1140-4207-c2a3-ef6d97b4a481\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"c867edee-1140-4207-c2a3-ef6d97b4a481\",\"doc\":null,\"tags\":[]}},{\"id\":\"dd137151-f8ab-46dc-c666-b3a3e25ed628\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"dd137151-f8ab-46dc-c666-b3a3e25ed628\",\"tags\":[],\"doc\":null}},{\"id\":\"54ab07d9-4f09-4a4b-caa5-1e1f69c77681\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"54ab07d9-4f09-4a4b-caa5-1e1f69c77681\",\"tags\":[],\"doc\":null}},{\"id\":\"a4762888-11c8-412f-c18a-df01e7905c6a\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"a4762888-11c8-412f-c18a-df01e7905c6a\",\"tags\":[],\"doc\":null}},{\"id\":\"397b005d-922f-461d-c6c6-bcc59a423d5f\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"397b005d-922f-461d-c6c6-bcc59a423d5f\",\"tags\":[],\"doc\":null}},{\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"3280775b-bedd-4848-c801-ce53353dd290\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"c78bdc78-110b-478e-c748-780c65553726\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"78d21869-59df-45f0-c547-bf9f9bdf9629\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"6958470b-2edc-4f96-cf44-b223f01d4761\"},{\"type\":\"LinearAxis\",\"id\":\"78d21869-59df-45f0-c547-bf9f9bdf9629\"},{\"type\":\"Grid\",\"id\":\"c575f851-b8d6-45cd-c5d0-c252abceffba\"},{\"type\":\"LinearAxis\",\"id\":\"b223dc68-b42d-4f14-cfcf-ecd29e775b2b\"},{\"type\":\"Grid\",\"id\":\"d559f01f-9105-4460-c475-f522118d6199\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"0ed9866c-8b0a-4764-c7d4-41ecb3922c43\"},{\"type\":\"WheelZoomTool\",\"id\":\"c867edee-1140-4207-c2a3-ef6d97b4a481\"},{\"type\":\"BoxZoomTool\",\"id\":\"dd137151-f8ab-46dc-c666-b3a3e25ed628\"},{\"type\":\"PreviewSaveTool\",\"id\":\"54ab07d9-4f09-4a4b-caa5-1e1f69c77681\"},{\"type\":\"ResizeTool\",\"id\":\"a4762888-11c8-412f-c18a-df01e7905c6a\"},{\"type\":\"ResetTool\",\"id\":\"397b005d-922f-461d-c6c6-bcc59a423d5f\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"b223dc68-b42d-4f14-cfcf-ecd29e775b2b\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"da33c948-e4d2-494d-c99a-81eac63abaaa\"},\"id\":\"30fd2ddb-c8f7-46ca-c670-6aa25554c6fb\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ec0c0876-9125-4495-c44e-5acab49a8107\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ec0c0876-9125-4495-c44e-5acab49a8107\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"ec0c0876-9125-4495-c44e-5acab49a8107\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"ec0c0876-9125-4495-c44e-5acab49a8107\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'ec0c0876-9125-4495-c44e-5acab49a8107'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"06246f87-f902-4754-c7d0-feed166f7c0b\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"4417d5e3-bf7c-4d51-cd3a-f5908d7ec208\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2808,324,285,278,254,210,181,148,136,109,72,51,42,36,26,13,13,7,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"4417d5e3-bf7c-4d51-cd3a-f5908d7ec208\",\"doc\":null,\"tags\":[]}},{\"id\":\"a124dbdf-3b19-4c57-cc5b-931f4961bee3\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"a124dbdf-3b19-4c57-cc5b-931f4961bee3\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"79045edc-cf92-4565-c584-a037ca7929eb\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"79045edc-cf92-4565-c584-a037ca7929eb\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"ec36cdc8-2cbf-486b-c80d-561ab695effc\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"79045edc-cf92-4565-c584-a037ca7929eb\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"4417d5e3-bf7c-4d51-cd3a-f5908d7ec208\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"a124dbdf-3b19-4c57-cc5b-931f4961bee3\"},\"selection_glyph\":null,\"id\":\"ec36cdc8-2cbf-486b-c80d-561ab695effc\",\"tags\":[]}},{\"id\":\"d36e1f19-8f62-48dd-c849-a2d6c32905e9\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"4417d5e3-bf7c-4d51-cd3a-f5908d7ec208\"}}],\"id\":\"d36e1f19-8f62-48dd-c849-a2d6c32905e9\",\"tags\":[],\"doc\":null}},{\"id\":\"657c90bc-9dd7-4288-c255-f18cfe60afb6\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"4417d5e3-bf7c-4d51-cd3a-f5908d7ec208\"}}],\"id\":\"657c90bc-9dd7-4288-c255-f18cfe60afb6\",\"tags\":[],\"doc\":null}},{\"id\":\"6145a1cc-cf02-404f-c06e-2222525c60e9\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"6145a1cc-cf02-404f-c06e-2222525c60e9\",\"geometries\":[],\"doc\":null}},{\"id\":\"24bdd9a0-f4e7-48c3-c86c-17eb692b323d\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"24bdd9a0-f4e7-48c3-c86c-17eb692b323d\",\"tags\":[],\"doc\":null}},{\"id\":\"47e64d60-60e4-4971-c937-04236c0bafe9\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"47e64d60-60e4-4971-c937-04236c0bafe9\",\"tags\":[],\"doc\":null}},{\"id\":\"5953ae0c-56da-4fe1-cf87-b9d1fdc0d506\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"24bdd9a0-f4e7-48c3-c86c-17eb692b323d\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"47e64d60-60e4-4971-c937-04236c0bafe9\"},\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"5953ae0c-56da-4fe1-cf87-b9d1fdc0d506\",\"doc\":null,\"tags\":[]}},{\"id\":\"906289ce-4056-4348-c362-aa79990e2c97\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"47e64d60-60e4-4971-c937-04236c0bafe9\"},\"id\":\"906289ce-4056-4348-c362-aa79990e2c97\",\"doc\":null,\"tags\":[]}},{\"id\":\"9c5dbf2f-183e-4c2b-cc5e-2c52e4e377bd\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"9c5dbf2f-183e-4c2b-cc5e-2c52e4e377bd\",\"tags\":[],\"doc\":null}},{\"id\":\"7a25cd1c-1bb5-4bf7-cb74-097acce1b0ae\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7a25cd1c-1bb5-4bf7-cb74-097acce1b0ae\",\"tags\":[],\"doc\":null}},{\"id\":\"ed06f33a-b049-4053-c0bf-920c0356ca5b\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"9c5dbf2f-183e-4c2b-cc5e-2c52e4e377bd\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7a25cd1c-1bb5-4bf7-cb74-097acce1b0ae\"},\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"ed06f33a-b049-4053-c0bf-920c0356ca5b\",\"doc\":null,\"tags\":[]}},{\"id\":\"3dd562a7-97b6-46fe-c67a-e4eea37c4eaf\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7a25cd1c-1bb5-4bf7-cb74-097acce1b0ae\"},\"id\":\"3dd562a7-97b6-46fe-c67a-e4eea37c4eaf\",\"doc\":null,\"tags\":[]}},{\"id\":\"15cb9663-f9cb-4567-c54c-8cccfec22684\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"15cb9663-f9cb-4567-c54c-8cccfec22684\",\"doc\":null,\"tags\":[]}},{\"id\":\"428771bb-b7c6-4d5e-cd2e-165ac35ab2e1\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"428771bb-b7c6-4d5e-cd2e-165ac35ab2e1\",\"doc\":null,\"tags\":[]}},{\"id\":\"9a4a0b2e-ad32-4045-c035-adaf483fd39f\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"9a4a0b2e-ad32-4045-c035-adaf483fd39f\",\"tags\":[],\"doc\":null}},{\"id\":\"83532b9e-99ca-4951-c94d-8c23bae9a6da\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"83532b9e-99ca-4951-c94d-8c23bae9a6da\",\"tags\":[],\"doc\":null}},{\"id\":\"a1489864-91f0-41f8-c195-65d4e017de0c\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"a1489864-91f0-41f8-c195-65d4e017de0c\",\"tags\":[],\"doc\":null}},{\"id\":\"ea7453d7-5c05-4e89-cec3-72ac5fd3116d\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"ea7453d7-5c05-4e89-cec3-72ac5fd3116d\",\"tags\":[],\"doc\":null}},{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"d36e1f19-8f62-48dd-c849-a2d6c32905e9\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"6145a1cc-cf02-404f-c06e-2222525c60e9\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"5953ae0c-56da-4fe1-cf87-b9d1fdc0d506\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"ec36cdc8-2cbf-486b-c80d-561ab695effc\"},{\"type\":\"LinearAxis\",\"id\":\"5953ae0c-56da-4fe1-cf87-b9d1fdc0d506\"},{\"type\":\"Grid\",\"id\":\"906289ce-4056-4348-c362-aa79990e2c97\"},{\"type\":\"LinearAxis\",\"id\":\"ed06f33a-b049-4053-c0bf-920c0356ca5b\"},{\"type\":\"Grid\",\"id\":\"3dd562a7-97b6-46fe-c67a-e4eea37c4eaf\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"15cb9663-f9cb-4567-c54c-8cccfec22684\"},{\"type\":\"WheelZoomTool\",\"id\":\"428771bb-b7c6-4d5e-cd2e-165ac35ab2e1\"},{\"type\":\"BoxZoomTool\",\"id\":\"9a4a0b2e-ad32-4045-c035-adaf483fd39f\"},{\"type\":\"PreviewSaveTool\",\"id\":\"83532b9e-99ca-4951-c94d-8c23bae9a6da\"},{\"type\":\"ResizeTool\",\"id\":\"a1489864-91f0-41f8-c195-65d4e017de0c\"},{\"type\":\"ResetTool\",\"id\":\"ea7453d7-5c05-4e89-cec3-72ac5fd3116d\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 5\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"ed06f33a-b049-4053-c0bf-920c0356ca5b\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"657c90bc-9dd7-4288-c255-f18cfe60afb6\"},\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ec0c0876-9125-4495-c44e-5acab49a8107\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ec0c0876-9125-4495-c44e-5acab49a8107\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"06246f87-f902-4754-c7d0-feed166f7c0b\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"4417d5e3-bf7c-4d51-cd3a-f5908d7ec208\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2808,324,285,278,254,210,181,148,136,109,72,51,42,36,26,13,13,7,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"4417d5e3-bf7c-4d51-cd3a-f5908d7ec208\",\"doc\":null,\"tags\":[]}},{\"id\":\"a124dbdf-3b19-4c57-cc5b-931f4961bee3\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"a124dbdf-3b19-4c57-cc5b-931f4961bee3\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"79045edc-cf92-4565-c584-a037ca7929eb\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"79045edc-cf92-4565-c584-a037ca7929eb\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"ec36cdc8-2cbf-486b-c80d-561ab695effc\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"79045edc-cf92-4565-c584-a037ca7929eb\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"4417d5e3-bf7c-4d51-cd3a-f5908d7ec208\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"a124dbdf-3b19-4c57-cc5b-931f4961bee3\"},\"selection_glyph\":null,\"id\":\"ec36cdc8-2cbf-486b-c80d-561ab695effc\",\"tags\":[]}},{\"id\":\"d36e1f19-8f62-48dd-c849-a2d6c32905e9\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"4417d5e3-bf7c-4d51-cd3a-f5908d7ec208\"}}],\"id\":\"d36e1f19-8f62-48dd-c849-a2d6c32905e9\",\"tags\":[],\"doc\":null}},{\"id\":\"657c90bc-9dd7-4288-c255-f18cfe60afb6\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"4417d5e3-bf7c-4d51-cd3a-f5908d7ec208\"}}],\"id\":\"657c90bc-9dd7-4288-c255-f18cfe60afb6\",\"tags\":[],\"doc\":null}},{\"id\":\"6145a1cc-cf02-404f-c06e-2222525c60e9\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"6145a1cc-cf02-404f-c06e-2222525c60e9\",\"geometries\":[],\"doc\":null}},{\"id\":\"24bdd9a0-f4e7-48c3-c86c-17eb692b323d\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"24bdd9a0-f4e7-48c3-c86c-17eb692b323d\",\"tags\":[],\"doc\":null}},{\"id\":\"47e64d60-60e4-4971-c937-04236c0bafe9\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"47e64d60-60e4-4971-c937-04236c0bafe9\",\"tags\":[],\"doc\":null}},{\"id\":\"5953ae0c-56da-4fe1-cf87-b9d1fdc0d506\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"24bdd9a0-f4e7-48c3-c86c-17eb692b323d\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"47e64d60-60e4-4971-c937-04236c0bafe9\"},\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"5953ae0c-56da-4fe1-cf87-b9d1fdc0d506\",\"doc\":null,\"tags\":[]}},{\"id\":\"906289ce-4056-4348-c362-aa79990e2c97\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"47e64d60-60e4-4971-c937-04236c0bafe9\"},\"id\":\"906289ce-4056-4348-c362-aa79990e2c97\",\"doc\":null,\"tags\":[]}},{\"id\":\"9c5dbf2f-183e-4c2b-cc5e-2c52e4e377bd\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"9c5dbf2f-183e-4c2b-cc5e-2c52e4e377bd\",\"tags\":[],\"doc\":null}},{\"id\":\"7a25cd1c-1bb5-4bf7-cb74-097acce1b0ae\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7a25cd1c-1bb5-4bf7-cb74-097acce1b0ae\",\"tags\":[],\"doc\":null}},{\"id\":\"ed06f33a-b049-4053-c0bf-920c0356ca5b\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"9c5dbf2f-183e-4c2b-cc5e-2c52e4e377bd\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7a25cd1c-1bb5-4bf7-cb74-097acce1b0ae\"},\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"ed06f33a-b049-4053-c0bf-920c0356ca5b\",\"doc\":null,\"tags\":[]}},{\"id\":\"3dd562a7-97b6-46fe-c67a-e4eea37c4eaf\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7a25cd1c-1bb5-4bf7-cb74-097acce1b0ae\"},\"id\":\"3dd562a7-97b6-46fe-c67a-e4eea37c4eaf\",\"doc\":null,\"tags\":[]}},{\"id\":\"15cb9663-f9cb-4567-c54c-8cccfec22684\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"15cb9663-f9cb-4567-c54c-8cccfec22684\",\"doc\":null,\"tags\":[]}},{\"id\":\"428771bb-b7c6-4d5e-cd2e-165ac35ab2e1\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"428771bb-b7c6-4d5e-cd2e-165ac35ab2e1\",\"doc\":null,\"tags\":[]}},{\"id\":\"9a4a0b2e-ad32-4045-c035-adaf483fd39f\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"9a4a0b2e-ad32-4045-c035-adaf483fd39f\",\"tags\":[],\"doc\":null}},{\"id\":\"83532b9e-99ca-4951-c94d-8c23bae9a6da\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"83532b9e-99ca-4951-c94d-8c23bae9a6da\",\"tags\":[],\"doc\":null}},{\"id\":\"a1489864-91f0-41f8-c195-65d4e017de0c\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"a1489864-91f0-41f8-c195-65d4e017de0c\",\"tags\":[],\"doc\":null}},{\"id\":\"ea7453d7-5c05-4e89-cec3-72ac5fd3116d\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"ea7453d7-5c05-4e89-cec3-72ac5fd3116d\",\"tags\":[],\"doc\":null}},{\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"d36e1f19-8f62-48dd-c849-a2d6c32905e9\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"6145a1cc-cf02-404f-c06e-2222525c60e9\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"5953ae0c-56da-4fe1-cf87-b9d1fdc0d506\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"ec36cdc8-2cbf-486b-c80d-561ab695effc\"},{\"type\":\"LinearAxis\",\"id\":\"5953ae0c-56da-4fe1-cf87-b9d1fdc0d506\"},{\"type\":\"Grid\",\"id\":\"906289ce-4056-4348-c362-aa79990e2c97\"},{\"type\":\"LinearAxis\",\"id\":\"ed06f33a-b049-4053-c0bf-920c0356ca5b\"},{\"type\":\"Grid\",\"id\":\"3dd562a7-97b6-46fe-c67a-e4eea37c4eaf\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"15cb9663-f9cb-4567-c54c-8cccfec22684\"},{\"type\":\"WheelZoomTool\",\"id\":\"428771bb-b7c6-4d5e-cd2e-165ac35ab2e1\"},{\"type\":\"BoxZoomTool\",\"id\":\"9a4a0b2e-ad32-4045-c035-adaf483fd39f\"},{\"type\":\"PreviewSaveTool\",\"id\":\"83532b9e-99ca-4951-c94d-8c23bae9a6da\"},{\"type\":\"ResizeTool\",\"id\":\"a1489864-91f0-41f8-c195-65d4e017de0c\"},{\"type\":\"ResetTool\",\"id\":\"ea7453d7-5c05-4e89-cec3-72ac5fd3116d\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 5\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"ed06f33a-b049-4053-c0bf-920c0356ca5b\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"657c90bc-9dd7-4288-c255-f18cfe60afb6\"},\"id\":\"06246f87-f902-4754-c7d0-feed166f7c0b\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ec0c0876-9125-4495-c44e-5acab49a8107\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ec0c0876-9125-4495-c44e-5acab49a8107\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"cffa73c3-59c8-4fb5-cfc0-3335f4b36ab6\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"ec0c0876-9125-4495-c44e-5acab49a8107\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'ec0c0876-9125-4495-c44e-5acab49a8107'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"16d83f8d-39f0-4a97-ca67-231560a0e5a5\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"e7321643-1bd0-447e-c4e0-586a9bb74bf3\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2808,324,285,278,254,210,181,148,136,109,72,51,42,36,26,13,13,7,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"e7321643-1bd0-447e-c4e0-586a9bb74bf3\",\"doc\":null,\"tags\":[]}},{\"id\":\"f9e10c8b-10fe-4f75-cf7f-5c44aae5acbd\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"f9e10c8b-10fe-4f75-cf7f-5c44aae5acbd\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"6f714043-d69c-4664-c67d-dea4c07143a1\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"6f714043-d69c-4664-c67d-dea4c07143a1\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"c9e0396b-3ade-408a-c024-effbb726f345\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"6f714043-d69c-4664-c67d-dea4c07143a1\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"e7321643-1bd0-447e-c4e0-586a9bb74bf3\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"f9e10c8b-10fe-4f75-cf7f-5c44aae5acbd\"},\"selection_glyph\":null,\"id\":\"c9e0396b-3ade-408a-c024-effbb726f345\",\"tags\":[]}},{\"id\":\"3318c10a-9895-43f7-c305-e32a5244474d\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"e7321643-1bd0-447e-c4e0-586a9bb74bf3\"}}],\"id\":\"3318c10a-9895-43f7-c305-e32a5244474d\",\"tags\":[],\"doc\":null}},{\"id\":\"3e3ee461-82c6-4079-c0a0-5da8a759ad38\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"e7321643-1bd0-447e-c4e0-586a9bb74bf3\"}}],\"id\":\"3e3ee461-82c6-4079-c0a0-5da8a759ad38\",\"tags\":[],\"doc\":null}},{\"id\":\"a47ce4d8-c7f9-4813-c846-09301e8a8224\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"a47ce4d8-c7f9-4813-c846-09301e8a8224\",\"geometries\":[],\"doc\":null}},{\"id\":\"29529925-cc05-402b-c0a4-5404e6c5b8fc\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"29529925-cc05-402b-c0a4-5404e6c5b8fc\",\"tags\":[],\"doc\":null}},{\"id\":\"99068f15-52eb-40c6-c0bd-6fae7b9d4641\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"99068f15-52eb-40c6-c0bd-6fae7b9d4641\",\"tags\":[],\"doc\":null}},{\"id\":\"5122d3b7-c55a-4998-c967-ccac7ab728ae\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"29529925-cc05-402b-c0a4-5404e6c5b8fc\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"99068f15-52eb-40c6-c0bd-6fae7b9d4641\"},\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"5122d3b7-c55a-4998-c967-ccac7ab728ae\",\"doc\":null,\"tags\":[]}},{\"id\":\"3ce5acbc-7f69-44b4-c4a2-dd3f94b5a565\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"99068f15-52eb-40c6-c0bd-6fae7b9d4641\"},\"id\":\"3ce5acbc-7f69-44b4-c4a2-dd3f94b5a565\",\"doc\":null,\"tags\":[]}},{\"id\":\"fb43fa6c-e1eb-428d-c280-7a4a434fd9af\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"fb43fa6c-e1eb-428d-c280-7a4a434fd9af\",\"tags\":[],\"doc\":null}},{\"id\":\"2a0d165c-8bb0-48bb-c8fa-9d11614a91b3\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"2a0d165c-8bb0-48bb-c8fa-9d11614a91b3\",\"tags\":[],\"doc\":null}},{\"id\":\"235fef3c-123e-4e86-ced7-65c6fb93a158\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"fb43fa6c-e1eb-428d-c280-7a4a434fd9af\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2a0d165c-8bb0-48bb-c8fa-9d11614a91b3\"},\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"235fef3c-123e-4e86-ced7-65c6fb93a158\",\"doc\":null,\"tags\":[]}},{\"id\":\"ddf2581e-0d8c-4037-c025-27a433289c6d\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2a0d165c-8bb0-48bb-c8fa-9d11614a91b3\"},\"id\":\"ddf2581e-0d8c-4037-c025-27a433289c6d\",\"doc\":null,\"tags\":[]}},{\"id\":\"236ac5c1-68b9-44be-c48f-ad6e1cbdd3cd\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"236ac5c1-68b9-44be-c48f-ad6e1cbdd3cd\",\"doc\":null,\"tags\":[]}},{\"id\":\"0473b356-325a-4811-c874-db94cf595afe\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"0473b356-325a-4811-c874-db94cf595afe\",\"doc\":null,\"tags\":[]}},{\"id\":\"b8871bcb-dd80-4851-c867-0a1ea937f0da\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"b8871bcb-dd80-4851-c867-0a1ea937f0da\",\"tags\":[],\"doc\":null}},{\"id\":\"3a6034fd-6bb2-40ed-c00f-e75647865dfc\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"3a6034fd-6bb2-40ed-c00f-e75647865dfc\",\"tags\":[],\"doc\":null}},{\"id\":\"59ce0527-19a5-4ce1-cc17-afe5fa6ca4d3\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"59ce0527-19a5-4ce1-cc17-afe5fa6ca4d3\",\"tags\":[],\"doc\":null}},{\"id\":\"7401b029-d989-4536-c5ec-cf3a53e95083\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"7401b029-d989-4536-c5ec-cf3a53e95083\",\"tags\":[],\"doc\":null}},{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"3318c10a-9895-43f7-c305-e32a5244474d\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"a47ce4d8-c7f9-4813-c846-09301e8a8224\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"5122d3b7-c55a-4998-c967-ccac7ab728ae\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"c9e0396b-3ade-408a-c024-effbb726f345\"},{\"type\":\"LinearAxis\",\"id\":\"5122d3b7-c55a-4998-c967-ccac7ab728ae\"},{\"type\":\"Grid\",\"id\":\"3ce5acbc-7f69-44b4-c4a2-dd3f94b5a565\"},{\"type\":\"LinearAxis\",\"id\":\"235fef3c-123e-4e86-ced7-65c6fb93a158\"},{\"type\":\"Grid\",\"id\":\"ddf2581e-0d8c-4037-c025-27a433289c6d\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"236ac5c1-68b9-44be-c48f-ad6e1cbdd3cd\"},{\"type\":\"WheelZoomTool\",\"id\":\"0473b356-325a-4811-c874-db94cf595afe\"},{\"type\":\"BoxZoomTool\",\"id\":\"b8871bcb-dd80-4851-c867-0a1ea937f0da\"},{\"type\":\"PreviewSaveTool\",\"id\":\"3a6034fd-6bb2-40ed-c00f-e75647865dfc\"},{\"type\":\"ResizeTool\",\"id\":\"59ce0527-19a5-4ce1-cc17-afe5fa6ca4d3\"},{\"type\":\"ResetTool\",\"id\":\"7401b029-d989-4536-c5ec-cf3a53e95083\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 5\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"235fef3c-123e-4e86-ced7-65c6fb93a158\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"3e3ee461-82c6-4079-c0a0-5da8a759ad38\"},\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ec0c0876-9125-4495-c44e-5acab49a8107\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ec0c0876-9125-4495-c44e-5acab49a8107\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"16d83f8d-39f0-4a97-ca67-231560a0e5a5\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"e7321643-1bd0-447e-c4e0-586a9bb74bf3\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2808,324,285,278,254,210,181,148,136,109,72,51,42,36,26,13,13,7,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"e7321643-1bd0-447e-c4e0-586a9bb74bf3\",\"doc\":null,\"tags\":[]}},{\"id\":\"f9e10c8b-10fe-4f75-cf7f-5c44aae5acbd\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"f9e10c8b-10fe-4f75-cf7f-5c44aae5acbd\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"6f714043-d69c-4664-c67d-dea4c07143a1\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"6f714043-d69c-4664-c67d-dea4c07143a1\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"c9e0396b-3ade-408a-c024-effbb726f345\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"6f714043-d69c-4664-c67d-dea4c07143a1\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"e7321643-1bd0-447e-c4e0-586a9bb74bf3\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"f9e10c8b-10fe-4f75-cf7f-5c44aae5acbd\"},\"selection_glyph\":null,\"id\":\"c9e0396b-3ade-408a-c024-effbb726f345\",\"tags\":[]}},{\"id\":\"3318c10a-9895-43f7-c305-e32a5244474d\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"e7321643-1bd0-447e-c4e0-586a9bb74bf3\"}}],\"id\":\"3318c10a-9895-43f7-c305-e32a5244474d\",\"tags\":[],\"doc\":null}},{\"id\":\"3e3ee461-82c6-4079-c0a0-5da8a759ad38\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"e7321643-1bd0-447e-c4e0-586a9bb74bf3\"}}],\"id\":\"3e3ee461-82c6-4079-c0a0-5da8a759ad38\",\"tags\":[],\"doc\":null}},{\"id\":\"a47ce4d8-c7f9-4813-c846-09301e8a8224\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"a47ce4d8-c7f9-4813-c846-09301e8a8224\",\"geometries\":[],\"doc\":null}},{\"id\":\"29529925-cc05-402b-c0a4-5404e6c5b8fc\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"29529925-cc05-402b-c0a4-5404e6c5b8fc\",\"tags\":[],\"doc\":null}},{\"id\":\"99068f15-52eb-40c6-c0bd-6fae7b9d4641\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"99068f15-52eb-40c6-c0bd-6fae7b9d4641\",\"tags\":[],\"doc\":null}},{\"id\":\"5122d3b7-c55a-4998-c967-ccac7ab728ae\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"29529925-cc05-402b-c0a4-5404e6c5b8fc\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"99068f15-52eb-40c6-c0bd-6fae7b9d4641\"},\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"5122d3b7-c55a-4998-c967-ccac7ab728ae\",\"doc\":null,\"tags\":[]}},{\"id\":\"3ce5acbc-7f69-44b4-c4a2-dd3f94b5a565\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"99068f15-52eb-40c6-c0bd-6fae7b9d4641\"},\"id\":\"3ce5acbc-7f69-44b4-c4a2-dd3f94b5a565\",\"doc\":null,\"tags\":[]}},{\"id\":\"fb43fa6c-e1eb-428d-c280-7a4a434fd9af\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"fb43fa6c-e1eb-428d-c280-7a4a434fd9af\",\"tags\":[],\"doc\":null}},{\"id\":\"2a0d165c-8bb0-48bb-c8fa-9d11614a91b3\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"2a0d165c-8bb0-48bb-c8fa-9d11614a91b3\",\"tags\":[],\"doc\":null}},{\"id\":\"235fef3c-123e-4e86-ced7-65c6fb93a158\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"fb43fa6c-e1eb-428d-c280-7a4a434fd9af\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2a0d165c-8bb0-48bb-c8fa-9d11614a91b3\"},\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"235fef3c-123e-4e86-ced7-65c6fb93a158\",\"doc\":null,\"tags\":[]}},{\"id\":\"ddf2581e-0d8c-4037-c025-27a433289c6d\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2a0d165c-8bb0-48bb-c8fa-9d11614a91b3\"},\"id\":\"ddf2581e-0d8c-4037-c025-27a433289c6d\",\"doc\":null,\"tags\":[]}},{\"id\":\"236ac5c1-68b9-44be-c48f-ad6e1cbdd3cd\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"236ac5c1-68b9-44be-c48f-ad6e1cbdd3cd\",\"doc\":null,\"tags\":[]}},{\"id\":\"0473b356-325a-4811-c874-db94cf595afe\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"0473b356-325a-4811-c874-db94cf595afe\",\"doc\":null,\"tags\":[]}},{\"id\":\"b8871bcb-dd80-4851-c867-0a1ea937f0da\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"b8871bcb-dd80-4851-c867-0a1ea937f0da\",\"tags\":[],\"doc\":null}},{\"id\":\"3a6034fd-6bb2-40ed-c00f-e75647865dfc\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"3a6034fd-6bb2-40ed-c00f-e75647865dfc\",\"tags\":[],\"doc\":null}},{\"id\":\"59ce0527-19a5-4ce1-cc17-afe5fa6ca4d3\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"59ce0527-19a5-4ce1-cc17-afe5fa6ca4d3\",\"tags\":[],\"doc\":null}},{\"id\":\"7401b029-d989-4536-c5ec-cf3a53e95083\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"7401b029-d989-4536-c5ec-cf3a53e95083\",\"tags\":[],\"doc\":null}},{\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"3318c10a-9895-43f7-c305-e32a5244474d\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"a47ce4d8-c7f9-4813-c846-09301e8a8224\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"5122d3b7-c55a-4998-c967-ccac7ab728ae\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"c9e0396b-3ade-408a-c024-effbb726f345\"},{\"type\":\"LinearAxis\",\"id\":\"5122d3b7-c55a-4998-c967-ccac7ab728ae\"},{\"type\":\"Grid\",\"id\":\"3ce5acbc-7f69-44b4-c4a2-dd3f94b5a565\"},{\"type\":\"LinearAxis\",\"id\":\"235fef3c-123e-4e86-ced7-65c6fb93a158\"},{\"type\":\"Grid\",\"id\":\"ddf2581e-0d8c-4037-c025-27a433289c6d\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"236ac5c1-68b9-44be-c48f-ad6e1cbdd3cd\"},{\"type\":\"WheelZoomTool\",\"id\":\"0473b356-325a-4811-c874-db94cf595afe\"},{\"type\":\"BoxZoomTool\",\"id\":\"b8871bcb-dd80-4851-c867-0a1ea937f0da\"},{\"type\":\"PreviewSaveTool\",\"id\":\"3a6034fd-6bb2-40ed-c00f-e75647865dfc\"},{\"type\":\"ResizeTool\",\"id\":\"59ce0527-19a5-4ce1-cc17-afe5fa6ca4d3\"},{\"type\":\"ResetTool\",\"id\":\"7401b029-d989-4536-c5ec-cf3a53e95083\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 5\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"235fef3c-123e-4e86-ced7-65c6fb93a158\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"3e3ee461-82c6-4079-c0a0-5da8a759ad38\"},\"id\":\"16d83f8d-39f0-4a97-ca67-231560a0e5a5\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ec0c0876-9125-4495-c44e-5acab49a8107\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ec0c0876-9125-4495-c44e-5acab49a8107\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"8efa90b1-040e-4267-c28c-307cfc8796e9\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"8d023e15-7372-48e5-c830-3a7001776575\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '8d023e15-7372-48e5-c830-3a7001776575'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"83f817e7-253e-4a11-ca0e-450ccc7e8673\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2881,365,338,326,261,243,187,138,94,75,49,20,8,4,1,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"83f817e7-253e-4a11-ca0e-450ccc7e8673\",\"doc\":null,\"tags\":[]}},{\"id\":\"d39b4be4-90ca-4041-c02f-20a13ed2cea8\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"d39b4be4-90ca-4041-c02f-20a13ed2cea8\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"d2deaf68-c993-4f8d-cffc-3698018cd4b2\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"d2deaf68-c993-4f8d-cffc-3698018cd4b2\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"e11ecf2a-f1e5-44a8-c428-9d57e5af20a5\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"d2deaf68-c993-4f8d-cffc-3698018cd4b2\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"83f817e7-253e-4a11-ca0e-450ccc7e8673\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"d39b4be4-90ca-4041-c02f-20a13ed2cea8\"},\"selection_glyph\":null,\"id\":\"e11ecf2a-f1e5-44a8-c428-9d57e5af20a5\",\"tags\":[]}},{\"id\":\"ef5c0764-4c29-4991-c9d8-67d85ff1521a\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"83f817e7-253e-4a11-ca0e-450ccc7e8673\"}}],\"id\":\"ef5c0764-4c29-4991-c9d8-67d85ff1521a\",\"tags\":[],\"doc\":null}},{\"id\":\"ea275b2e-9909-4451-c49f-df0639687bb4\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"83f817e7-253e-4a11-ca0e-450ccc7e8673\"}}],\"id\":\"ea275b2e-9909-4451-c49f-df0639687bb4\",\"tags\":[],\"doc\":null}},{\"id\":\"29034ddd-63e0-468a-c6cc-67697f3c468b\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"29034ddd-63e0-468a-c6cc-67697f3c468b\",\"geometries\":[],\"doc\":null}},{\"id\":\"6661186a-9192-4b79-cb21-95c7830940c0\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"6661186a-9192-4b79-cb21-95c7830940c0\",\"tags\":[],\"doc\":null}},{\"id\":\"f8fe99b5-2329-423c-c2f0-278d7a2685dd\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"f8fe99b5-2329-423c-c2f0-278d7a2685dd\",\"tags\":[],\"doc\":null}},{\"id\":\"5538e7b0-4a5d-4712-c727-44d4fc05c1cf\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"6661186a-9192-4b79-cb21-95c7830940c0\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f8fe99b5-2329-423c-c2f0-278d7a2685dd\"},\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"5538e7b0-4a5d-4712-c727-44d4fc05c1cf\",\"doc\":null,\"tags\":[]}},{\"id\":\"27467e06-74aa-4360-c3b8-25c960b15e36\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f8fe99b5-2329-423c-c2f0-278d7a2685dd\"},\"id\":\"27467e06-74aa-4360-c3b8-25c960b15e36\",\"doc\":null,\"tags\":[]}},{\"id\":\"a63e1f15-dbb8-4045-c027-d2f8cdd8ee42\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"a63e1f15-dbb8-4045-c027-d2f8cdd8ee42\",\"tags\":[],\"doc\":null}},{\"id\":\"d454c5ca-6f39-4b80-cbc9-58b3348bc5ba\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"d454c5ca-6f39-4b80-cbc9-58b3348bc5ba\",\"tags\":[],\"doc\":null}},{\"id\":\"b0ff996e-c4b2-4b31-cb0b-a55adff3635e\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"a63e1f15-dbb8-4045-c027-d2f8cdd8ee42\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d454c5ca-6f39-4b80-cbc9-58b3348bc5ba\"},\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"b0ff996e-c4b2-4b31-cb0b-a55adff3635e\",\"doc\":null,\"tags\":[]}},{\"id\":\"05ab0802-0e4d-4af4-ca0b-69b865e2ca68\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d454c5ca-6f39-4b80-cbc9-58b3348bc5ba\"},\"id\":\"05ab0802-0e4d-4af4-ca0b-69b865e2ca68\",\"doc\":null,\"tags\":[]}},{\"id\":\"22a0af10-dc51-48d6-c8af-c0428286a515\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"22a0af10-dc51-48d6-c8af-c0428286a515\",\"doc\":null,\"tags\":[]}},{\"id\":\"dbe35bdd-f4f1-453e-c5f3-387a765229e8\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"dbe35bdd-f4f1-453e-c5f3-387a765229e8\",\"doc\":null,\"tags\":[]}},{\"id\":\"7bbe68dd-c0ac-4601-c690-b6a17007e869\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"7bbe68dd-c0ac-4601-c690-b6a17007e869\",\"tags\":[],\"doc\":null}},{\"id\":\"14fa8eac-f8f7-4366-c3e5-5f7646066f34\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"14fa8eac-f8f7-4366-c3e5-5f7646066f34\",\"tags\":[],\"doc\":null}},{\"id\":\"042700f1-5140-4818-c8ef-4a59310a917a\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"042700f1-5140-4818-c8ef-4a59310a917a\",\"tags\":[],\"doc\":null}},{\"id\":\"12e6d30f-f429-4fcd-cf96-5bab9578bfcc\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"12e6d30f-f429-4fcd-cf96-5bab9578bfcc\",\"tags\":[],\"doc\":null}},{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"ef5c0764-4c29-4991-c9d8-67d85ff1521a\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"29034ddd-63e0-468a-c6cc-67697f3c468b\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"5538e7b0-4a5d-4712-c727-44d4fc05c1cf\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"e11ecf2a-f1e5-44a8-c428-9d57e5af20a5\"},{\"type\":\"LinearAxis\",\"id\":\"5538e7b0-4a5d-4712-c727-44d4fc05c1cf\"},{\"type\":\"Grid\",\"id\":\"27467e06-74aa-4360-c3b8-25c960b15e36\"},{\"type\":\"LinearAxis\",\"id\":\"b0ff996e-c4b2-4b31-cb0b-a55adff3635e\"},{\"type\":\"Grid\",\"id\":\"05ab0802-0e4d-4af4-ca0b-69b865e2ca68\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"22a0af10-dc51-48d6-c8af-c0428286a515\"},{\"type\":\"WheelZoomTool\",\"id\":\"dbe35bdd-f4f1-453e-c5f3-387a765229e8\"},{\"type\":\"BoxZoomTool\",\"id\":\"7bbe68dd-c0ac-4601-c690-b6a17007e869\"},{\"type\":\"PreviewSaveTool\",\"id\":\"14fa8eac-f8f7-4366-c3e5-5f7646066f34\"},{\"type\":\"ResizeTool\",\"id\":\"042700f1-5140-4818-c8ef-4a59310a917a\"},{\"type\":\"ResetTool\",\"id\":\"12e6d30f-f429-4fcd-cf96-5bab9578bfcc\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"b0ff996e-c4b2-4b31-cb0b-a55adff3635e\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"ea275b2e-9909-4451-c49f-df0639687bb4\"},\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8d023e15-7372-48e5-c830-3a7001776575\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8d023e15-7372-48e5-c830-3a7001776575\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"83f817e7-253e-4a11-ca0e-450ccc7e8673\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2881,365,338,326,261,243,187,138,94,75,49,20,8,4,1,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"83f817e7-253e-4a11-ca0e-450ccc7e8673\",\"doc\":null,\"tags\":[]}},{\"id\":\"d39b4be4-90ca-4041-c02f-20a13ed2cea8\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"d39b4be4-90ca-4041-c02f-20a13ed2cea8\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"d2deaf68-c993-4f8d-cffc-3698018cd4b2\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"d2deaf68-c993-4f8d-cffc-3698018cd4b2\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"e11ecf2a-f1e5-44a8-c428-9d57e5af20a5\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"d2deaf68-c993-4f8d-cffc-3698018cd4b2\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"83f817e7-253e-4a11-ca0e-450ccc7e8673\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"d39b4be4-90ca-4041-c02f-20a13ed2cea8\"},\"selection_glyph\":null,\"id\":\"e11ecf2a-f1e5-44a8-c428-9d57e5af20a5\",\"tags\":[]}},{\"id\":\"ef5c0764-4c29-4991-c9d8-67d85ff1521a\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"83f817e7-253e-4a11-ca0e-450ccc7e8673\"}}],\"id\":\"ef5c0764-4c29-4991-c9d8-67d85ff1521a\",\"tags\":[],\"doc\":null}},{\"id\":\"ea275b2e-9909-4451-c49f-df0639687bb4\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"83f817e7-253e-4a11-ca0e-450ccc7e8673\"}}],\"id\":\"ea275b2e-9909-4451-c49f-df0639687bb4\",\"tags\":[],\"doc\":null}},{\"id\":\"29034ddd-63e0-468a-c6cc-67697f3c468b\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"29034ddd-63e0-468a-c6cc-67697f3c468b\",\"geometries\":[],\"doc\":null}},{\"id\":\"6661186a-9192-4b79-cb21-95c7830940c0\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"6661186a-9192-4b79-cb21-95c7830940c0\",\"tags\":[],\"doc\":null}},{\"id\":\"f8fe99b5-2329-423c-c2f0-278d7a2685dd\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"f8fe99b5-2329-423c-c2f0-278d7a2685dd\",\"tags\":[],\"doc\":null}},{\"id\":\"5538e7b0-4a5d-4712-c727-44d4fc05c1cf\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"6661186a-9192-4b79-cb21-95c7830940c0\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f8fe99b5-2329-423c-c2f0-278d7a2685dd\"},\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"5538e7b0-4a5d-4712-c727-44d4fc05c1cf\",\"doc\":null,\"tags\":[]}},{\"id\":\"27467e06-74aa-4360-c3b8-25c960b15e36\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f8fe99b5-2329-423c-c2f0-278d7a2685dd\"},\"id\":\"27467e06-74aa-4360-c3b8-25c960b15e36\",\"doc\":null,\"tags\":[]}},{\"id\":\"a63e1f15-dbb8-4045-c027-d2f8cdd8ee42\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"a63e1f15-dbb8-4045-c027-d2f8cdd8ee42\",\"tags\":[],\"doc\":null}},{\"id\":\"d454c5ca-6f39-4b80-cbc9-58b3348bc5ba\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"d454c5ca-6f39-4b80-cbc9-58b3348bc5ba\",\"tags\":[],\"doc\":null}},{\"id\":\"b0ff996e-c4b2-4b31-cb0b-a55adff3635e\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"a63e1f15-dbb8-4045-c027-d2f8cdd8ee42\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d454c5ca-6f39-4b80-cbc9-58b3348bc5ba\"},\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"b0ff996e-c4b2-4b31-cb0b-a55adff3635e\",\"doc\":null,\"tags\":[]}},{\"id\":\"05ab0802-0e4d-4af4-ca0b-69b865e2ca68\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"d454c5ca-6f39-4b80-cbc9-58b3348bc5ba\"},\"id\":\"05ab0802-0e4d-4af4-ca0b-69b865e2ca68\",\"doc\":null,\"tags\":[]}},{\"id\":\"22a0af10-dc51-48d6-c8af-c0428286a515\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"22a0af10-dc51-48d6-c8af-c0428286a515\",\"doc\":null,\"tags\":[]}},{\"id\":\"dbe35bdd-f4f1-453e-c5f3-387a765229e8\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"dbe35bdd-f4f1-453e-c5f3-387a765229e8\",\"doc\":null,\"tags\":[]}},{\"id\":\"7bbe68dd-c0ac-4601-c690-b6a17007e869\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"7bbe68dd-c0ac-4601-c690-b6a17007e869\",\"tags\":[],\"doc\":null}},{\"id\":\"14fa8eac-f8f7-4366-c3e5-5f7646066f34\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"14fa8eac-f8f7-4366-c3e5-5f7646066f34\",\"tags\":[],\"doc\":null}},{\"id\":\"042700f1-5140-4818-c8ef-4a59310a917a\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"042700f1-5140-4818-c8ef-4a59310a917a\",\"tags\":[],\"doc\":null}},{\"id\":\"12e6d30f-f429-4fcd-cf96-5bab9578bfcc\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"12e6d30f-f429-4fcd-cf96-5bab9578bfcc\",\"tags\":[],\"doc\":null}},{\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"ef5c0764-4c29-4991-c9d8-67d85ff1521a\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"29034ddd-63e0-468a-c6cc-67697f3c468b\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"5538e7b0-4a5d-4712-c727-44d4fc05c1cf\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"e11ecf2a-f1e5-44a8-c428-9d57e5af20a5\"},{\"type\":\"LinearAxis\",\"id\":\"5538e7b0-4a5d-4712-c727-44d4fc05c1cf\"},{\"type\":\"Grid\",\"id\":\"27467e06-74aa-4360-c3b8-25c960b15e36\"},{\"type\":\"LinearAxis\",\"id\":\"b0ff996e-c4b2-4b31-cb0b-a55adff3635e\"},{\"type\":\"Grid\",\"id\":\"05ab0802-0e4d-4af4-ca0b-69b865e2ca68\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"22a0af10-dc51-48d6-c8af-c0428286a515\"},{\"type\":\"WheelZoomTool\",\"id\":\"dbe35bdd-f4f1-453e-c5f3-387a765229e8\"},{\"type\":\"BoxZoomTool\",\"id\":\"7bbe68dd-c0ac-4601-c690-b6a17007e869\"},{\"type\":\"PreviewSaveTool\",\"id\":\"14fa8eac-f8f7-4366-c3e5-5f7646066f34\"},{\"type\":\"ResizeTool\",\"id\":\"042700f1-5140-4818-c8ef-4a59310a917a\"},{\"type\":\"ResetTool\",\"id\":\"12e6d30f-f429-4fcd-cf96-5bab9578bfcc\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"b0ff996e-c4b2-4b31-cb0b-a55adff3635e\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"ea275b2e-9909-4451-c49f-df0639687bb4\"},\"id\":\"31ce6003-224f-4a0a-ca5a-f6bc2a8e3721\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8d023e15-7372-48e5-c830-3a7001776575\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8d023e15-7372-48e5-c830-3a7001776575\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"8d023e15-7372-48e5-c830-3a7001776575\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"8d023e15-7372-48e5-c830-3a7001776575\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '8d023e15-7372-48e5-c830-3a7001776575'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"14a5a30c-4dfe-4108-c11d-c4fe72f427fb\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2881,365,338,326,261,243,187,138,94,75,49,20,8,4,1,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"14a5a30c-4dfe-4108-c11d-c4fe72f427fb\",\"doc\":null,\"tags\":[]}},{\"id\":\"e59ebcbd-048b-4f35-cf35-b33d0e10ba2f\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"e59ebcbd-048b-4f35-cf35-b33d0e10ba2f\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"e6d74480-15da-42c7-c2e2-f977a5907f7a\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"e6d74480-15da-42c7-c2e2-f977a5907f7a\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"dc3f086d-8493-4463-c446-bfa51d91ece3\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"e6d74480-15da-42c7-c2e2-f977a5907f7a\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"14a5a30c-4dfe-4108-c11d-c4fe72f427fb\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"e59ebcbd-048b-4f35-cf35-b33d0e10ba2f\"},\"selection_glyph\":null,\"id\":\"dc3f086d-8493-4463-c446-bfa51d91ece3\",\"tags\":[]}},{\"id\":\"4efe6906-7f6e-4b7a-cbb6-c9581ae09565\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"14a5a30c-4dfe-4108-c11d-c4fe72f427fb\"}}],\"id\":\"4efe6906-7f6e-4b7a-cbb6-c9581ae09565\",\"tags\":[],\"doc\":null}},{\"id\":\"b31786bf-6ee1-49e7-c97e-44a5707a150b\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"14a5a30c-4dfe-4108-c11d-c4fe72f427fb\"}}],\"id\":\"b31786bf-6ee1-49e7-c97e-44a5707a150b\",\"tags\":[],\"doc\":null}},{\"id\":\"d98a3ad8-b633-4d21-cdd0-efbbece20df6\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"d98a3ad8-b633-4d21-cdd0-efbbece20df6\",\"geometries\":[],\"doc\":null}},{\"id\":\"6489fd83-016d-405e-c085-2bd377825077\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"6489fd83-016d-405e-c085-2bd377825077\",\"tags\":[],\"doc\":null}},{\"id\":\"9922e825-0443-475d-c72f-8c762696bc10\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"9922e825-0443-475d-c72f-8c762696bc10\",\"tags\":[],\"doc\":null}},{\"id\":\"84a6df1f-9e7e-46d3-c6f7-ab19c296731d\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"6489fd83-016d-405e-c085-2bd377825077\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"9922e825-0443-475d-c72f-8c762696bc10\"},\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"84a6df1f-9e7e-46d3-c6f7-ab19c296731d\",\"doc\":null,\"tags\":[]}},{\"id\":\"769f8b92-aaae-4d8b-cd41-83186b96a017\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"9922e825-0443-475d-c72f-8c762696bc10\"},\"id\":\"769f8b92-aaae-4d8b-cd41-83186b96a017\",\"doc\":null,\"tags\":[]}},{\"id\":\"1c06e864-2c5f-4804-c80b-f55d23fa588a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"1c06e864-2c5f-4804-c80b-f55d23fa588a\",\"tags\":[],\"doc\":null}},{\"id\":\"7fca70fd-9d1c-4648-c6e6-a30ccb24f472\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7fca70fd-9d1c-4648-c6e6-a30ccb24f472\",\"tags\":[],\"doc\":null}},{\"id\":\"fab3f2f3-127e-4ce6-cc19-1c6b840c9daf\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"1c06e864-2c5f-4804-c80b-f55d23fa588a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7fca70fd-9d1c-4648-c6e6-a30ccb24f472\"},\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"fab3f2f3-127e-4ce6-cc19-1c6b840c9daf\",\"doc\":null,\"tags\":[]}},{\"id\":\"6e62bc0a-56ae-4232-c209-a5db6d912972\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7fca70fd-9d1c-4648-c6e6-a30ccb24f472\"},\"id\":\"6e62bc0a-56ae-4232-c209-a5db6d912972\",\"doc\":null,\"tags\":[]}},{\"id\":\"443ee65b-aa1c-44a1-c417-d1ee952f8f98\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"443ee65b-aa1c-44a1-c417-d1ee952f8f98\",\"doc\":null,\"tags\":[]}},{\"id\":\"97a491b3-49f5-4930-c940-b34d6b49548e\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"97a491b3-49f5-4930-c940-b34d6b49548e\",\"doc\":null,\"tags\":[]}},{\"id\":\"8e7838f9-dd46-409d-c0de-21ad05adb457\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"8e7838f9-dd46-409d-c0de-21ad05adb457\",\"tags\":[],\"doc\":null}},{\"id\":\"3e85d1b1-efcf-44a6-c432-359a926ea8cb\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"3e85d1b1-efcf-44a6-c432-359a926ea8cb\",\"tags\":[],\"doc\":null}},{\"id\":\"5a4559ea-1634-4afd-cada-430cd60c6e61\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5a4559ea-1634-4afd-cada-430cd60c6e61\",\"tags\":[],\"doc\":null}},{\"id\":\"78216913-fc81-4161-c192-59a726c87eb2\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"78216913-fc81-4161-c192-59a726c87eb2\",\"tags\":[],\"doc\":null}},{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"4efe6906-7f6e-4b7a-cbb6-c9581ae09565\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"d98a3ad8-b633-4d21-cdd0-efbbece20df6\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"84a6df1f-9e7e-46d3-c6f7-ab19c296731d\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"dc3f086d-8493-4463-c446-bfa51d91ece3\"},{\"type\":\"LinearAxis\",\"id\":\"84a6df1f-9e7e-46d3-c6f7-ab19c296731d\"},{\"type\":\"Grid\",\"id\":\"769f8b92-aaae-4d8b-cd41-83186b96a017\"},{\"type\":\"LinearAxis\",\"id\":\"fab3f2f3-127e-4ce6-cc19-1c6b840c9daf\"},{\"type\":\"Grid\",\"id\":\"6e62bc0a-56ae-4232-c209-a5db6d912972\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"443ee65b-aa1c-44a1-c417-d1ee952f8f98\"},{\"type\":\"WheelZoomTool\",\"id\":\"97a491b3-49f5-4930-c940-b34d6b49548e\"},{\"type\":\"BoxZoomTool\",\"id\":\"8e7838f9-dd46-409d-c0de-21ad05adb457\"},{\"type\":\"PreviewSaveTool\",\"id\":\"3e85d1b1-efcf-44a6-c432-359a926ea8cb\"},{\"type\":\"ResizeTool\",\"id\":\"5a4559ea-1634-4afd-cada-430cd60c6e61\"},{\"type\":\"ResetTool\",\"id\":\"78216913-fc81-4161-c192-59a726c87eb2\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 6\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"fab3f2f3-127e-4ce6-cc19-1c6b840c9daf\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"b31786bf-6ee1-49e7-c97e-44a5707a150b\"},\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8d023e15-7372-48e5-c830-3a7001776575\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8d023e15-7372-48e5-c830-3a7001776575\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"14a5a30c-4dfe-4108-c11d-c4fe72f427fb\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2881,365,338,326,261,243,187,138,94,75,49,20,8,4,1,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"14a5a30c-4dfe-4108-c11d-c4fe72f427fb\",\"doc\":null,\"tags\":[]}},{\"id\":\"e59ebcbd-048b-4f35-cf35-b33d0e10ba2f\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"e59ebcbd-048b-4f35-cf35-b33d0e10ba2f\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"e6d74480-15da-42c7-c2e2-f977a5907f7a\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"e6d74480-15da-42c7-c2e2-f977a5907f7a\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"dc3f086d-8493-4463-c446-bfa51d91ece3\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"e6d74480-15da-42c7-c2e2-f977a5907f7a\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"14a5a30c-4dfe-4108-c11d-c4fe72f427fb\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"e59ebcbd-048b-4f35-cf35-b33d0e10ba2f\"},\"selection_glyph\":null,\"id\":\"dc3f086d-8493-4463-c446-bfa51d91ece3\",\"tags\":[]}},{\"id\":\"4efe6906-7f6e-4b7a-cbb6-c9581ae09565\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"14a5a30c-4dfe-4108-c11d-c4fe72f427fb\"}}],\"id\":\"4efe6906-7f6e-4b7a-cbb6-c9581ae09565\",\"tags\":[],\"doc\":null}},{\"id\":\"b31786bf-6ee1-49e7-c97e-44a5707a150b\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"14a5a30c-4dfe-4108-c11d-c4fe72f427fb\"}}],\"id\":\"b31786bf-6ee1-49e7-c97e-44a5707a150b\",\"tags\":[],\"doc\":null}},{\"id\":\"d98a3ad8-b633-4d21-cdd0-efbbece20df6\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"d98a3ad8-b633-4d21-cdd0-efbbece20df6\",\"geometries\":[],\"doc\":null}},{\"id\":\"6489fd83-016d-405e-c085-2bd377825077\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"6489fd83-016d-405e-c085-2bd377825077\",\"tags\":[],\"doc\":null}},{\"id\":\"9922e825-0443-475d-c72f-8c762696bc10\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"9922e825-0443-475d-c72f-8c762696bc10\",\"tags\":[],\"doc\":null}},{\"id\":\"84a6df1f-9e7e-46d3-c6f7-ab19c296731d\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"6489fd83-016d-405e-c085-2bd377825077\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"9922e825-0443-475d-c72f-8c762696bc10\"},\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"84a6df1f-9e7e-46d3-c6f7-ab19c296731d\",\"doc\":null,\"tags\":[]}},{\"id\":\"769f8b92-aaae-4d8b-cd41-83186b96a017\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"9922e825-0443-475d-c72f-8c762696bc10\"},\"id\":\"769f8b92-aaae-4d8b-cd41-83186b96a017\",\"doc\":null,\"tags\":[]}},{\"id\":\"1c06e864-2c5f-4804-c80b-f55d23fa588a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"1c06e864-2c5f-4804-c80b-f55d23fa588a\",\"tags\":[],\"doc\":null}},{\"id\":\"7fca70fd-9d1c-4648-c6e6-a30ccb24f472\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7fca70fd-9d1c-4648-c6e6-a30ccb24f472\",\"tags\":[],\"doc\":null}},{\"id\":\"fab3f2f3-127e-4ce6-cc19-1c6b840c9daf\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"1c06e864-2c5f-4804-c80b-f55d23fa588a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7fca70fd-9d1c-4648-c6e6-a30ccb24f472\"},\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"fab3f2f3-127e-4ce6-cc19-1c6b840c9daf\",\"doc\":null,\"tags\":[]}},{\"id\":\"6e62bc0a-56ae-4232-c209-a5db6d912972\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7fca70fd-9d1c-4648-c6e6-a30ccb24f472\"},\"id\":\"6e62bc0a-56ae-4232-c209-a5db6d912972\",\"doc\":null,\"tags\":[]}},{\"id\":\"443ee65b-aa1c-44a1-c417-d1ee952f8f98\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"443ee65b-aa1c-44a1-c417-d1ee952f8f98\",\"doc\":null,\"tags\":[]}},{\"id\":\"97a491b3-49f5-4930-c940-b34d6b49548e\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"97a491b3-49f5-4930-c940-b34d6b49548e\",\"doc\":null,\"tags\":[]}},{\"id\":\"8e7838f9-dd46-409d-c0de-21ad05adb457\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"8e7838f9-dd46-409d-c0de-21ad05adb457\",\"tags\":[],\"doc\":null}},{\"id\":\"3e85d1b1-efcf-44a6-c432-359a926ea8cb\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"3e85d1b1-efcf-44a6-c432-359a926ea8cb\",\"tags\":[],\"doc\":null}},{\"id\":\"5a4559ea-1634-4afd-cada-430cd60c6e61\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5a4559ea-1634-4afd-cada-430cd60c6e61\",\"tags\":[],\"doc\":null}},{\"id\":\"78216913-fc81-4161-c192-59a726c87eb2\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"78216913-fc81-4161-c192-59a726c87eb2\",\"tags\":[],\"doc\":null}},{\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"4efe6906-7f6e-4b7a-cbb6-c9581ae09565\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"d98a3ad8-b633-4d21-cdd0-efbbece20df6\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"84a6df1f-9e7e-46d3-c6f7-ab19c296731d\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"dc3f086d-8493-4463-c446-bfa51d91ece3\"},{\"type\":\"LinearAxis\",\"id\":\"84a6df1f-9e7e-46d3-c6f7-ab19c296731d\"},{\"type\":\"Grid\",\"id\":\"769f8b92-aaae-4d8b-cd41-83186b96a017\"},{\"type\":\"LinearAxis\",\"id\":\"fab3f2f3-127e-4ce6-cc19-1c6b840c9daf\"},{\"type\":\"Grid\",\"id\":\"6e62bc0a-56ae-4232-c209-a5db6d912972\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"443ee65b-aa1c-44a1-c417-d1ee952f8f98\"},{\"type\":\"WheelZoomTool\",\"id\":\"97a491b3-49f5-4930-c940-b34d6b49548e\"},{\"type\":\"BoxZoomTool\",\"id\":\"8e7838f9-dd46-409d-c0de-21ad05adb457\"},{\"type\":\"PreviewSaveTool\",\"id\":\"3e85d1b1-efcf-44a6-c432-359a926ea8cb\"},{\"type\":\"ResizeTool\",\"id\":\"5a4559ea-1634-4afd-cada-430cd60c6e61\"},{\"type\":\"ResetTool\",\"id\":\"78216913-fc81-4161-c192-59a726c87eb2\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 6\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"fab3f2f3-127e-4ce6-cc19-1c6b840c9daf\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"b31786bf-6ee1-49e7-c97e-44a5707a150b\"},\"id\":\"1ce97f20-55b2-42f3-c27d-d8df55e6fe33\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8d023e15-7372-48e5-c830-3a7001776575\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8d023e15-7372-48e5-c830-3a7001776575\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"57720d7f-cffa-47ad-c733-8132013abb40\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"8d023e15-7372-48e5-c830-3a7001776575\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '8d023e15-7372-48e5-c830-3a7001776575'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"d23ce86f-087b-46e3-c619-132d514f8e91\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2881,365,338,326,261,243,187,138,94,75,49,20,8,4,1,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"d23ce86f-087b-46e3-c619-132d514f8e91\",\"doc\":null,\"tags\":[]}},{\"id\":\"7b14759f-d26f-4bf4-cb58-01139216f5b5\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"7b14759f-d26f-4bf4-cb58-01139216f5b5\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"89c01115-a605-4edd-ce67-09b4840e82cc\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"89c01115-a605-4edd-ce67-09b4840e82cc\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"8238354e-c5a5-4129-c1b1-9c3b7d99fa55\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"89c01115-a605-4edd-ce67-09b4840e82cc\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"d23ce86f-087b-46e3-c619-132d514f8e91\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"7b14759f-d26f-4bf4-cb58-01139216f5b5\"},\"selection_glyph\":null,\"id\":\"8238354e-c5a5-4129-c1b1-9c3b7d99fa55\",\"tags\":[]}},{\"id\":\"85130c37-77ef-4876-c8e1-47cc07402bfd\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"d23ce86f-087b-46e3-c619-132d514f8e91\"}}],\"id\":\"85130c37-77ef-4876-c8e1-47cc07402bfd\",\"tags\":[],\"doc\":null}},{\"id\":\"63bc2ee5-5b88-4a13-ca5e-5762266076bd\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"d23ce86f-087b-46e3-c619-132d514f8e91\"}}],\"id\":\"63bc2ee5-5b88-4a13-ca5e-5762266076bd\",\"tags\":[],\"doc\":null}},{\"id\":\"b259807c-5d38-4a90-ca30-7d2f2677dab0\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"b259807c-5d38-4a90-ca30-7d2f2677dab0\",\"geometries\":[],\"doc\":null}},{\"id\":\"fe073ca3-ea34-4840-c879-0a6abed88f11\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"fe073ca3-ea34-4840-c879-0a6abed88f11\",\"tags\":[],\"doc\":null}},{\"id\":\"f3d598c2-52ba-4f9e-cfcf-38a660e89bed\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"f3d598c2-52ba-4f9e-cfcf-38a660e89bed\",\"tags\":[],\"doc\":null}},{\"id\":\"5ad87a9b-3a0c-42ab-c284-b16f7cf236a4\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"fe073ca3-ea34-4840-c879-0a6abed88f11\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f3d598c2-52ba-4f9e-cfcf-38a660e89bed\"},\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"5ad87a9b-3a0c-42ab-c284-b16f7cf236a4\",\"doc\":null,\"tags\":[]}},{\"id\":\"3f4f6def-76fb-43e0-c35b-c789a9c8bbbd\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f3d598c2-52ba-4f9e-cfcf-38a660e89bed\"},\"id\":\"3f4f6def-76fb-43e0-c35b-c789a9c8bbbd\",\"doc\":null,\"tags\":[]}},{\"id\":\"2703a9cb-ac1d-4f05-cf24-2e40fe762d17\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"2703a9cb-ac1d-4f05-cf24-2e40fe762d17\",\"tags\":[],\"doc\":null}},{\"id\":\"3ac27487-5c10-4397-c3ee-c7599c62c4d7\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"3ac27487-5c10-4397-c3ee-c7599c62c4d7\",\"tags\":[],\"doc\":null}},{\"id\":\"0f9f3cb9-017b-4a08-ca9a-70e6cdda034f\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"2703a9cb-ac1d-4f05-cf24-2e40fe762d17\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"3ac27487-5c10-4397-c3ee-c7599c62c4d7\"},\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"0f9f3cb9-017b-4a08-ca9a-70e6cdda034f\",\"doc\":null,\"tags\":[]}},{\"id\":\"1537fd50-fe51-41fb-c1cc-15be582665db\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"3ac27487-5c10-4397-c3ee-c7599c62c4d7\"},\"id\":\"1537fd50-fe51-41fb-c1cc-15be582665db\",\"doc\":null,\"tags\":[]}},{\"id\":\"57909561-8c48-4314-c3cf-6c7599e36bfe\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"57909561-8c48-4314-c3cf-6c7599e36bfe\",\"doc\":null,\"tags\":[]}},{\"id\":\"f7753cbc-99ea-4469-c4da-dc355ad729d1\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"f7753cbc-99ea-4469-c4da-dc355ad729d1\",\"doc\":null,\"tags\":[]}},{\"id\":\"f7ab0430-a481-4cb6-cc32-77a5cc80df3d\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"f7ab0430-a481-4cb6-cc32-77a5cc80df3d\",\"tags\":[],\"doc\":null}},{\"id\":\"146d2f6a-0632-42a8-c2cc-985da1da8ae3\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"146d2f6a-0632-42a8-c2cc-985da1da8ae3\",\"tags\":[],\"doc\":null}},{\"id\":\"09a962c8-e0af-4331-c3d1-dad6cc22f4fa\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"09a962c8-e0af-4331-c3d1-dad6cc22f4fa\",\"tags\":[],\"doc\":null}},{\"id\":\"0d38426c-d37d-4fcf-cfa4-3c18d361bf71\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"0d38426c-d37d-4fcf-cfa4-3c18d361bf71\",\"tags\":[],\"doc\":null}},{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"85130c37-77ef-4876-c8e1-47cc07402bfd\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"b259807c-5d38-4a90-ca30-7d2f2677dab0\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"5ad87a9b-3a0c-42ab-c284-b16f7cf236a4\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"8238354e-c5a5-4129-c1b1-9c3b7d99fa55\"},{\"type\":\"LinearAxis\",\"id\":\"5ad87a9b-3a0c-42ab-c284-b16f7cf236a4\"},{\"type\":\"Grid\",\"id\":\"3f4f6def-76fb-43e0-c35b-c789a9c8bbbd\"},{\"type\":\"LinearAxis\",\"id\":\"0f9f3cb9-017b-4a08-ca9a-70e6cdda034f\"},{\"type\":\"Grid\",\"id\":\"1537fd50-fe51-41fb-c1cc-15be582665db\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"57909561-8c48-4314-c3cf-6c7599e36bfe\"},{\"type\":\"WheelZoomTool\",\"id\":\"f7753cbc-99ea-4469-c4da-dc355ad729d1\"},{\"type\":\"BoxZoomTool\",\"id\":\"f7ab0430-a481-4cb6-cc32-77a5cc80df3d\"},{\"type\":\"PreviewSaveTool\",\"id\":\"146d2f6a-0632-42a8-c2cc-985da1da8ae3\"},{\"type\":\"ResizeTool\",\"id\":\"09a962c8-e0af-4331-c3d1-dad6cc22f4fa\"},{\"type\":\"ResetTool\",\"id\":\"0d38426c-d37d-4fcf-cfa4-3c18d361bf71\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 6\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"0f9f3cb9-017b-4a08-ca9a-70e6cdda034f\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"63bc2ee5-5b88-4a13-ca5e-5762266076bd\"},\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8d023e15-7372-48e5-c830-3a7001776575\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8d023e15-7372-48e5-c830-3a7001776575\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"d23ce86f-087b-46e3-c619-132d514f8e91\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2881,365,338,326,261,243,187,138,94,75,49,20,8,4,1,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"d23ce86f-087b-46e3-c619-132d514f8e91\",\"doc\":null,\"tags\":[]}},{\"id\":\"7b14759f-d26f-4bf4-cb58-01139216f5b5\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"7b14759f-d26f-4bf4-cb58-01139216f5b5\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"89c01115-a605-4edd-ce67-09b4840e82cc\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"89c01115-a605-4edd-ce67-09b4840e82cc\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"8238354e-c5a5-4129-c1b1-9c3b7d99fa55\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"89c01115-a605-4edd-ce67-09b4840e82cc\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"d23ce86f-087b-46e3-c619-132d514f8e91\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"7b14759f-d26f-4bf4-cb58-01139216f5b5\"},\"selection_glyph\":null,\"id\":\"8238354e-c5a5-4129-c1b1-9c3b7d99fa55\",\"tags\":[]}},{\"id\":\"85130c37-77ef-4876-c8e1-47cc07402bfd\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"d23ce86f-087b-46e3-c619-132d514f8e91\"}}],\"id\":\"85130c37-77ef-4876-c8e1-47cc07402bfd\",\"tags\":[],\"doc\":null}},{\"id\":\"63bc2ee5-5b88-4a13-ca5e-5762266076bd\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"d23ce86f-087b-46e3-c619-132d514f8e91\"}}],\"id\":\"63bc2ee5-5b88-4a13-ca5e-5762266076bd\",\"tags\":[],\"doc\":null}},{\"id\":\"b259807c-5d38-4a90-ca30-7d2f2677dab0\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"b259807c-5d38-4a90-ca30-7d2f2677dab0\",\"geometries\":[],\"doc\":null}},{\"id\":\"fe073ca3-ea34-4840-c879-0a6abed88f11\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"fe073ca3-ea34-4840-c879-0a6abed88f11\",\"tags\":[],\"doc\":null}},{\"id\":\"f3d598c2-52ba-4f9e-cfcf-38a660e89bed\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"f3d598c2-52ba-4f9e-cfcf-38a660e89bed\",\"tags\":[],\"doc\":null}},{\"id\":\"5ad87a9b-3a0c-42ab-c284-b16f7cf236a4\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"fe073ca3-ea34-4840-c879-0a6abed88f11\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f3d598c2-52ba-4f9e-cfcf-38a660e89bed\"},\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"5ad87a9b-3a0c-42ab-c284-b16f7cf236a4\",\"doc\":null,\"tags\":[]}},{\"id\":\"3f4f6def-76fb-43e0-c35b-c789a9c8bbbd\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f3d598c2-52ba-4f9e-cfcf-38a660e89bed\"},\"id\":\"3f4f6def-76fb-43e0-c35b-c789a9c8bbbd\",\"doc\":null,\"tags\":[]}},{\"id\":\"2703a9cb-ac1d-4f05-cf24-2e40fe762d17\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"2703a9cb-ac1d-4f05-cf24-2e40fe762d17\",\"tags\":[],\"doc\":null}},{\"id\":\"3ac27487-5c10-4397-c3ee-c7599c62c4d7\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"3ac27487-5c10-4397-c3ee-c7599c62c4d7\",\"tags\":[],\"doc\":null}},{\"id\":\"0f9f3cb9-017b-4a08-ca9a-70e6cdda034f\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"2703a9cb-ac1d-4f05-cf24-2e40fe762d17\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"3ac27487-5c10-4397-c3ee-c7599c62c4d7\"},\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"0f9f3cb9-017b-4a08-ca9a-70e6cdda034f\",\"doc\":null,\"tags\":[]}},{\"id\":\"1537fd50-fe51-41fb-c1cc-15be582665db\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"3ac27487-5c10-4397-c3ee-c7599c62c4d7\"},\"id\":\"1537fd50-fe51-41fb-c1cc-15be582665db\",\"doc\":null,\"tags\":[]}},{\"id\":\"57909561-8c48-4314-c3cf-6c7599e36bfe\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"57909561-8c48-4314-c3cf-6c7599e36bfe\",\"doc\":null,\"tags\":[]}},{\"id\":\"f7753cbc-99ea-4469-c4da-dc355ad729d1\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"f7753cbc-99ea-4469-c4da-dc355ad729d1\",\"doc\":null,\"tags\":[]}},{\"id\":\"f7ab0430-a481-4cb6-cc32-77a5cc80df3d\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"f7ab0430-a481-4cb6-cc32-77a5cc80df3d\",\"tags\":[],\"doc\":null}},{\"id\":\"146d2f6a-0632-42a8-c2cc-985da1da8ae3\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"146d2f6a-0632-42a8-c2cc-985da1da8ae3\",\"tags\":[],\"doc\":null}},{\"id\":\"09a962c8-e0af-4331-c3d1-dad6cc22f4fa\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"09a962c8-e0af-4331-c3d1-dad6cc22f4fa\",\"tags\":[],\"doc\":null}},{\"id\":\"0d38426c-d37d-4fcf-cfa4-3c18d361bf71\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"0d38426c-d37d-4fcf-cfa4-3c18d361bf71\",\"tags\":[],\"doc\":null}},{\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"85130c37-77ef-4876-c8e1-47cc07402bfd\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"b259807c-5d38-4a90-ca30-7d2f2677dab0\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"5ad87a9b-3a0c-42ab-c284-b16f7cf236a4\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"8238354e-c5a5-4129-c1b1-9c3b7d99fa55\"},{\"type\":\"LinearAxis\",\"id\":\"5ad87a9b-3a0c-42ab-c284-b16f7cf236a4\"},{\"type\":\"Grid\",\"id\":\"3f4f6def-76fb-43e0-c35b-c789a9c8bbbd\"},{\"type\":\"LinearAxis\",\"id\":\"0f9f3cb9-017b-4a08-ca9a-70e6cdda034f\"},{\"type\":\"Grid\",\"id\":\"1537fd50-fe51-41fb-c1cc-15be582665db\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"57909561-8c48-4314-c3cf-6c7599e36bfe\"},{\"type\":\"WheelZoomTool\",\"id\":\"f7753cbc-99ea-4469-c4da-dc355ad729d1\"},{\"type\":\"BoxZoomTool\",\"id\":\"f7ab0430-a481-4cb6-cc32-77a5cc80df3d\"},{\"type\":\"PreviewSaveTool\",\"id\":\"146d2f6a-0632-42a8-c2cc-985da1da8ae3\"},{\"type\":\"ResizeTool\",\"id\":\"09a962c8-e0af-4331-c3d1-dad6cc22f4fa\"},{\"type\":\"ResetTool\",\"id\":\"0d38426c-d37d-4fcf-cfa4-3c18d361bf71\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 6\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"0f9f3cb9-017b-4a08-ca9a-70e6cdda034f\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"63bc2ee5-5b88-4a13-ca5e-5762266076bd\"},\"id\":\"c994c6c4-e2b1-46f6-c6c8-d7a0d2dbd9a0\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#8d023e15-7372-48e5-c830-3a7001776575\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#8d023e15-7372-48e5-c830-3a7001776575\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"dc64e65a-36d2-43ab-c3ec-5cb3523d2271\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"1a13b046-00f2-4670-c642-c947fb826700\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '1a13b046-00f2-4670-c642-c947fb826700'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"1c7ed4df-b478-4194-c1bb-0807c1f692ff\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3004,413,363,332,241,208,141,109,71,38,35,29,7,1,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"1c7ed4df-b478-4194-c1bb-0807c1f692ff\",\"doc\":null,\"tags\":[]}},{\"id\":\"7a3e7a75-bf47-4bc7-cb2c-a672a2afd67e\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"7a3e7a75-bf47-4bc7-cb2c-a672a2afd67e\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"d7368302-75e9-4ff2-cf96-876fb6e05939\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"d7368302-75e9-4ff2-cf96-876fb6e05939\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"5697a74d-173c-487b-c86e-277b0901ee31\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"d7368302-75e9-4ff2-cf96-876fb6e05939\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"1c7ed4df-b478-4194-c1bb-0807c1f692ff\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"7a3e7a75-bf47-4bc7-cb2c-a672a2afd67e\"},\"selection_glyph\":null,\"id\":\"5697a74d-173c-487b-c86e-277b0901ee31\",\"tags\":[]}},{\"id\":\"35b94f39-929a-4d9b-cd73-9e95900c882d\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1c7ed4df-b478-4194-c1bb-0807c1f692ff\"}}],\"id\":\"35b94f39-929a-4d9b-cd73-9e95900c882d\",\"tags\":[],\"doc\":null}},{\"id\":\"bfe29634-eaf7-4501-c56f-2f8e8f3f2c41\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1c7ed4df-b478-4194-c1bb-0807c1f692ff\"}}],\"id\":\"bfe29634-eaf7-4501-c56f-2f8e8f3f2c41\",\"tags\":[],\"doc\":null}},{\"id\":\"13dbe953-b8c2-4710-c7aa-4f6589aad91d\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"13dbe953-b8c2-4710-c7aa-4f6589aad91d\",\"geometries\":[],\"doc\":null}},{\"id\":\"a5e4bdd8-c12b-4ea8-cee3-1bc48c728a13\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"a5e4bdd8-c12b-4ea8-cee3-1bc48c728a13\",\"tags\":[],\"doc\":null}},{\"id\":\"f25d1225-7f4b-4e7e-cedd-174ef04e3bf7\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"f25d1225-7f4b-4e7e-cedd-174ef04e3bf7\",\"tags\":[],\"doc\":null}},{\"id\":\"0ca84604-89a4-49f7-c91e-32c6608e7606\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"a5e4bdd8-c12b-4ea8-cee3-1bc48c728a13\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f25d1225-7f4b-4e7e-cedd-174ef04e3bf7\"},\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"0ca84604-89a4-49f7-c91e-32c6608e7606\",\"doc\":null,\"tags\":[]}},{\"id\":\"1dc4334f-56d4-4d92-cd56-ac0a18ac1f08\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f25d1225-7f4b-4e7e-cedd-174ef04e3bf7\"},\"id\":\"1dc4334f-56d4-4d92-cd56-ac0a18ac1f08\",\"doc\":null,\"tags\":[]}},{\"id\":\"a95c4965-2f3d-4bc0-cbec-2f33317fa430\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"a95c4965-2f3d-4bc0-cbec-2f33317fa430\",\"tags\":[],\"doc\":null}},{\"id\":\"5a262e56-b5af-44f6-c44b-c24abbce72e9\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"5a262e56-b5af-44f6-c44b-c24abbce72e9\",\"tags\":[],\"doc\":null}},{\"id\":\"43c81ffa-3395-4827-c8c5-123cf6358c2e\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"a95c4965-2f3d-4bc0-cbec-2f33317fa430\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"5a262e56-b5af-44f6-c44b-c24abbce72e9\"},\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"43c81ffa-3395-4827-c8c5-123cf6358c2e\",\"doc\":null,\"tags\":[]}},{\"id\":\"830e1138-11c3-4865-c866-9eceb73e40ab\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"5a262e56-b5af-44f6-c44b-c24abbce72e9\"},\"id\":\"830e1138-11c3-4865-c866-9eceb73e40ab\",\"doc\":null,\"tags\":[]}},{\"id\":\"74a3ab0a-5066-4b21-cb40-985447c1dca4\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"74a3ab0a-5066-4b21-cb40-985447c1dca4\",\"doc\":null,\"tags\":[]}},{\"id\":\"b360f51b-d555-432e-c3d1-7ac54f44a85a\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"b360f51b-d555-432e-c3d1-7ac54f44a85a\",\"doc\":null,\"tags\":[]}},{\"id\":\"e136ecdf-b99c-4bab-cb30-a0682ce777be\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"e136ecdf-b99c-4bab-cb30-a0682ce777be\",\"tags\":[],\"doc\":null}},{\"id\":\"fc0314bc-0fe2-489c-c876-791e0d82e1ec\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"fc0314bc-0fe2-489c-c876-791e0d82e1ec\",\"tags\":[],\"doc\":null}},{\"id\":\"5ef3a036-2a2d-43f3-c36d-b9e33ea0e84e\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5ef3a036-2a2d-43f3-c36d-b9e33ea0e84e\",\"tags\":[],\"doc\":null}},{\"id\":\"e1571175-5a48-4ecc-ceb2-0841c3d5bdea\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"e1571175-5a48-4ecc-ceb2-0841c3d5bdea\",\"tags\":[],\"doc\":null}},{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"35b94f39-929a-4d9b-cd73-9e95900c882d\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"13dbe953-b8c2-4710-c7aa-4f6589aad91d\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"0ca84604-89a4-49f7-c91e-32c6608e7606\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"5697a74d-173c-487b-c86e-277b0901ee31\"},{\"type\":\"LinearAxis\",\"id\":\"0ca84604-89a4-49f7-c91e-32c6608e7606\"},{\"type\":\"Grid\",\"id\":\"1dc4334f-56d4-4d92-cd56-ac0a18ac1f08\"},{\"type\":\"LinearAxis\",\"id\":\"43c81ffa-3395-4827-c8c5-123cf6358c2e\"},{\"type\":\"Grid\",\"id\":\"830e1138-11c3-4865-c866-9eceb73e40ab\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"74a3ab0a-5066-4b21-cb40-985447c1dca4\"},{\"type\":\"WheelZoomTool\",\"id\":\"b360f51b-d555-432e-c3d1-7ac54f44a85a\"},{\"type\":\"BoxZoomTool\",\"id\":\"e136ecdf-b99c-4bab-cb30-a0682ce777be\"},{\"type\":\"PreviewSaveTool\",\"id\":\"fc0314bc-0fe2-489c-c876-791e0d82e1ec\"},{\"type\":\"ResizeTool\",\"id\":\"5ef3a036-2a2d-43f3-c36d-b9e33ea0e84e\"},{\"type\":\"ResetTool\",\"id\":\"e1571175-5a48-4ecc-ceb2-0841c3d5bdea\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"43c81ffa-3395-4827-c8c5-123cf6358c2e\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"bfe29634-eaf7-4501-c56f-2f8e8f3f2c41\"},\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#1a13b046-00f2-4670-c642-c947fb826700\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#1a13b046-00f2-4670-c642-c947fb826700\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"1c7ed4df-b478-4194-c1bb-0807c1f692ff\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3004,413,363,332,241,208,141,109,71,38,35,29,7,1,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"1c7ed4df-b478-4194-c1bb-0807c1f692ff\",\"doc\":null,\"tags\":[]}},{\"id\":\"7a3e7a75-bf47-4bc7-cb2c-a672a2afd67e\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"7a3e7a75-bf47-4bc7-cb2c-a672a2afd67e\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"d7368302-75e9-4ff2-cf96-876fb6e05939\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"d7368302-75e9-4ff2-cf96-876fb6e05939\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"5697a74d-173c-487b-c86e-277b0901ee31\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"d7368302-75e9-4ff2-cf96-876fb6e05939\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"1c7ed4df-b478-4194-c1bb-0807c1f692ff\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"7a3e7a75-bf47-4bc7-cb2c-a672a2afd67e\"},\"selection_glyph\":null,\"id\":\"5697a74d-173c-487b-c86e-277b0901ee31\",\"tags\":[]}},{\"id\":\"35b94f39-929a-4d9b-cd73-9e95900c882d\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1c7ed4df-b478-4194-c1bb-0807c1f692ff\"}}],\"id\":\"35b94f39-929a-4d9b-cd73-9e95900c882d\",\"tags\":[],\"doc\":null}},{\"id\":\"bfe29634-eaf7-4501-c56f-2f8e8f3f2c41\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1c7ed4df-b478-4194-c1bb-0807c1f692ff\"}}],\"id\":\"bfe29634-eaf7-4501-c56f-2f8e8f3f2c41\",\"tags\":[],\"doc\":null}},{\"id\":\"13dbe953-b8c2-4710-c7aa-4f6589aad91d\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"13dbe953-b8c2-4710-c7aa-4f6589aad91d\",\"geometries\":[],\"doc\":null}},{\"id\":\"a5e4bdd8-c12b-4ea8-cee3-1bc48c728a13\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"a5e4bdd8-c12b-4ea8-cee3-1bc48c728a13\",\"tags\":[],\"doc\":null}},{\"id\":\"f25d1225-7f4b-4e7e-cedd-174ef04e3bf7\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"f25d1225-7f4b-4e7e-cedd-174ef04e3bf7\",\"tags\":[],\"doc\":null}},{\"id\":\"0ca84604-89a4-49f7-c91e-32c6608e7606\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"a5e4bdd8-c12b-4ea8-cee3-1bc48c728a13\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f25d1225-7f4b-4e7e-cedd-174ef04e3bf7\"},\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"0ca84604-89a4-49f7-c91e-32c6608e7606\",\"doc\":null,\"tags\":[]}},{\"id\":\"1dc4334f-56d4-4d92-cd56-ac0a18ac1f08\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f25d1225-7f4b-4e7e-cedd-174ef04e3bf7\"},\"id\":\"1dc4334f-56d4-4d92-cd56-ac0a18ac1f08\",\"doc\":null,\"tags\":[]}},{\"id\":\"a95c4965-2f3d-4bc0-cbec-2f33317fa430\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"a95c4965-2f3d-4bc0-cbec-2f33317fa430\",\"tags\":[],\"doc\":null}},{\"id\":\"5a262e56-b5af-44f6-c44b-c24abbce72e9\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"5a262e56-b5af-44f6-c44b-c24abbce72e9\",\"tags\":[],\"doc\":null}},{\"id\":\"43c81ffa-3395-4827-c8c5-123cf6358c2e\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"a95c4965-2f3d-4bc0-cbec-2f33317fa430\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"5a262e56-b5af-44f6-c44b-c24abbce72e9\"},\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"43c81ffa-3395-4827-c8c5-123cf6358c2e\",\"doc\":null,\"tags\":[]}},{\"id\":\"830e1138-11c3-4865-c866-9eceb73e40ab\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"5a262e56-b5af-44f6-c44b-c24abbce72e9\"},\"id\":\"830e1138-11c3-4865-c866-9eceb73e40ab\",\"doc\":null,\"tags\":[]}},{\"id\":\"74a3ab0a-5066-4b21-cb40-985447c1dca4\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"74a3ab0a-5066-4b21-cb40-985447c1dca4\",\"doc\":null,\"tags\":[]}},{\"id\":\"b360f51b-d555-432e-c3d1-7ac54f44a85a\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"b360f51b-d555-432e-c3d1-7ac54f44a85a\",\"doc\":null,\"tags\":[]}},{\"id\":\"e136ecdf-b99c-4bab-cb30-a0682ce777be\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"e136ecdf-b99c-4bab-cb30-a0682ce777be\",\"tags\":[],\"doc\":null}},{\"id\":\"fc0314bc-0fe2-489c-c876-791e0d82e1ec\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"fc0314bc-0fe2-489c-c876-791e0d82e1ec\",\"tags\":[],\"doc\":null}},{\"id\":\"5ef3a036-2a2d-43f3-c36d-b9e33ea0e84e\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5ef3a036-2a2d-43f3-c36d-b9e33ea0e84e\",\"tags\":[],\"doc\":null}},{\"id\":\"e1571175-5a48-4ecc-ceb2-0841c3d5bdea\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"e1571175-5a48-4ecc-ceb2-0841c3d5bdea\",\"tags\":[],\"doc\":null}},{\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"35b94f39-929a-4d9b-cd73-9e95900c882d\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"13dbe953-b8c2-4710-c7aa-4f6589aad91d\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"0ca84604-89a4-49f7-c91e-32c6608e7606\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"5697a74d-173c-487b-c86e-277b0901ee31\"},{\"type\":\"LinearAxis\",\"id\":\"0ca84604-89a4-49f7-c91e-32c6608e7606\"},{\"type\":\"Grid\",\"id\":\"1dc4334f-56d4-4d92-cd56-ac0a18ac1f08\"},{\"type\":\"LinearAxis\",\"id\":\"43c81ffa-3395-4827-c8c5-123cf6358c2e\"},{\"type\":\"Grid\",\"id\":\"830e1138-11c3-4865-c866-9eceb73e40ab\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"74a3ab0a-5066-4b21-cb40-985447c1dca4\"},{\"type\":\"WheelZoomTool\",\"id\":\"b360f51b-d555-432e-c3d1-7ac54f44a85a\"},{\"type\":\"BoxZoomTool\",\"id\":\"e136ecdf-b99c-4bab-cb30-a0682ce777be\"},{\"type\":\"PreviewSaveTool\",\"id\":\"fc0314bc-0fe2-489c-c876-791e0d82e1ec\"},{\"type\":\"ResizeTool\",\"id\":\"5ef3a036-2a2d-43f3-c36d-b9e33ea0e84e\"},{\"type\":\"ResetTool\",\"id\":\"e1571175-5a48-4ecc-ceb2-0841c3d5bdea\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"43c81ffa-3395-4827-c8c5-123cf6358c2e\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"bfe29634-eaf7-4501-c56f-2f8e8f3f2c41\"},\"id\":\"8ceb84a2-d64a-4f4a-cf0f-8c3d6385164a\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#1a13b046-00f2-4670-c642-c947fb826700\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#1a13b046-00f2-4670-c642-c947fb826700\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"1a13b046-00f2-4670-c642-c947fb826700\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"1a13b046-00f2-4670-c642-c947fb826700\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '1a13b046-00f2-4670-c642-c947fb826700'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"9353f310-3aa9-44f7-c459-37e50d6ec415\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"578bd496-91fc-4a1c-cac7-35adf66d2eb8\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3004,413,363,332,241,208,141,109,71,38,35,29,7,1,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"578bd496-91fc-4a1c-cac7-35adf66d2eb8\",\"doc\":null,\"tags\":[]}},{\"id\":\"d2ffed05-bdb1-440b-c413-95aee657a9d5\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"d2ffed05-bdb1-440b-c413-95aee657a9d5\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"863ae1a8-9e64-4486-c4af-2e5e22318605\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"863ae1a8-9e64-4486-c4af-2e5e22318605\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"c1f8a5f3-14fe-4104-c1d7-71759fc2f44d\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"863ae1a8-9e64-4486-c4af-2e5e22318605\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"578bd496-91fc-4a1c-cac7-35adf66d2eb8\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"d2ffed05-bdb1-440b-c413-95aee657a9d5\"},\"selection_glyph\":null,\"id\":\"c1f8a5f3-14fe-4104-c1d7-71759fc2f44d\",\"tags\":[]}},{\"id\":\"a7e3bb83-d126-49ca-c94b-4c809f1d5cc5\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"578bd496-91fc-4a1c-cac7-35adf66d2eb8\"}}],\"id\":\"a7e3bb83-d126-49ca-c94b-4c809f1d5cc5\",\"tags\":[],\"doc\":null}},{\"id\":\"e4d594f2-32f1-4460-c428-e5b98fbb0e87\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"578bd496-91fc-4a1c-cac7-35adf66d2eb8\"}}],\"id\":\"e4d594f2-32f1-4460-c428-e5b98fbb0e87\",\"tags\":[],\"doc\":null}},{\"id\":\"212e59e4-0cd6-4c40-cc4a-cfdaa4acb58b\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"212e59e4-0cd6-4c40-cc4a-cfdaa4acb58b\",\"geometries\":[],\"doc\":null}},{\"id\":\"89273cd8-6d23-4df6-cd1a-42378f8a7e9a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"89273cd8-6d23-4df6-cd1a-42378f8a7e9a\",\"tags\":[],\"doc\":null}},{\"id\":\"45e4a512-9551-4e5f-cee5-3e6d9da34e00\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"45e4a512-9551-4e5f-cee5-3e6d9da34e00\",\"tags\":[],\"doc\":null}},{\"id\":\"a3922ca4-c7de-40c7-c0ad-d4cfb7f56cba\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"89273cd8-6d23-4df6-cd1a-42378f8a7e9a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"45e4a512-9551-4e5f-cee5-3e6d9da34e00\"},\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"a3922ca4-c7de-40c7-c0ad-d4cfb7f56cba\",\"doc\":null,\"tags\":[]}},{\"id\":\"4939da6e-36bf-4afb-ca2a-4006179fb624\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"45e4a512-9551-4e5f-cee5-3e6d9da34e00\"},\"id\":\"4939da6e-36bf-4afb-ca2a-4006179fb624\",\"doc\":null,\"tags\":[]}},{\"id\":\"c8df6f6a-b270-4874-c8f5-3b8bfd569baf\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"c8df6f6a-b270-4874-c8f5-3b8bfd569baf\",\"tags\":[],\"doc\":null}},{\"id\":\"23879913-6391-4f80-cf31-e92e725ef749\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"23879913-6391-4f80-cf31-e92e725ef749\",\"tags\":[],\"doc\":null}},{\"id\":\"b288ad35-8be0-4312-c3c1-416659a8025a\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"c8df6f6a-b270-4874-c8f5-3b8bfd569baf\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"23879913-6391-4f80-cf31-e92e725ef749\"},\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"b288ad35-8be0-4312-c3c1-416659a8025a\",\"doc\":null,\"tags\":[]}},{\"id\":\"830cf6f2-7149-4ef3-cece-6b4cb4f67204\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"23879913-6391-4f80-cf31-e92e725ef749\"},\"id\":\"830cf6f2-7149-4ef3-cece-6b4cb4f67204\",\"doc\":null,\"tags\":[]}},{\"id\":\"6140ca9d-a52e-4d3f-cd98-55f0642a7f93\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"6140ca9d-a52e-4d3f-cd98-55f0642a7f93\",\"doc\":null,\"tags\":[]}},{\"id\":\"a8f61d8e-a72d-4886-c8ed-b6194659ca84\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"a8f61d8e-a72d-4886-c8ed-b6194659ca84\",\"doc\":null,\"tags\":[]}},{\"id\":\"708e795b-138d-45c0-c56e-560563dbf32a\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"708e795b-138d-45c0-c56e-560563dbf32a\",\"tags\":[],\"doc\":null}},{\"id\":\"08e2a80b-d0fe-4fea-cf8b-c625ddd1969b\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"08e2a80b-d0fe-4fea-cf8b-c625ddd1969b\",\"tags\":[],\"doc\":null}},{\"id\":\"588b7cef-d4f9-450b-c548-737b2521deb6\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"588b7cef-d4f9-450b-c548-737b2521deb6\",\"tags\":[],\"doc\":null}},{\"id\":\"0f0ba149-bc8a-4f94-cf19-030b6ce76dc3\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"0f0ba149-bc8a-4f94-cf19-030b6ce76dc3\",\"tags\":[],\"doc\":null}},{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"a7e3bb83-d126-49ca-c94b-4c809f1d5cc5\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"212e59e4-0cd6-4c40-cc4a-cfdaa4acb58b\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"a3922ca4-c7de-40c7-c0ad-d4cfb7f56cba\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"c1f8a5f3-14fe-4104-c1d7-71759fc2f44d\"},{\"type\":\"LinearAxis\",\"id\":\"a3922ca4-c7de-40c7-c0ad-d4cfb7f56cba\"},{\"type\":\"Grid\",\"id\":\"4939da6e-36bf-4afb-ca2a-4006179fb624\"},{\"type\":\"LinearAxis\",\"id\":\"b288ad35-8be0-4312-c3c1-416659a8025a\"},{\"type\":\"Grid\",\"id\":\"830cf6f2-7149-4ef3-cece-6b4cb4f67204\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"6140ca9d-a52e-4d3f-cd98-55f0642a7f93\"},{\"type\":\"WheelZoomTool\",\"id\":\"a8f61d8e-a72d-4886-c8ed-b6194659ca84\"},{\"type\":\"BoxZoomTool\",\"id\":\"708e795b-138d-45c0-c56e-560563dbf32a\"},{\"type\":\"PreviewSaveTool\",\"id\":\"08e2a80b-d0fe-4fea-cf8b-c625ddd1969b\"},{\"type\":\"ResizeTool\",\"id\":\"588b7cef-d4f9-450b-c548-737b2521deb6\"},{\"type\":\"ResetTool\",\"id\":\"0f0ba149-bc8a-4f94-cf19-030b6ce76dc3\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 7\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"b288ad35-8be0-4312-c3c1-416659a8025a\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"e4d594f2-32f1-4460-c428-e5b98fbb0e87\"},\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#1a13b046-00f2-4670-c642-c947fb826700\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#1a13b046-00f2-4670-c642-c947fb826700\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"9353f310-3aa9-44f7-c459-37e50d6ec415\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"578bd496-91fc-4a1c-cac7-35adf66d2eb8\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3004,413,363,332,241,208,141,109,71,38,35,29,7,1,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"578bd496-91fc-4a1c-cac7-35adf66d2eb8\",\"doc\":null,\"tags\":[]}},{\"id\":\"d2ffed05-bdb1-440b-c413-95aee657a9d5\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"d2ffed05-bdb1-440b-c413-95aee657a9d5\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"863ae1a8-9e64-4486-c4af-2e5e22318605\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"863ae1a8-9e64-4486-c4af-2e5e22318605\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"c1f8a5f3-14fe-4104-c1d7-71759fc2f44d\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"863ae1a8-9e64-4486-c4af-2e5e22318605\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"578bd496-91fc-4a1c-cac7-35adf66d2eb8\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"d2ffed05-bdb1-440b-c413-95aee657a9d5\"},\"selection_glyph\":null,\"id\":\"c1f8a5f3-14fe-4104-c1d7-71759fc2f44d\",\"tags\":[]}},{\"id\":\"a7e3bb83-d126-49ca-c94b-4c809f1d5cc5\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"578bd496-91fc-4a1c-cac7-35adf66d2eb8\"}}],\"id\":\"a7e3bb83-d126-49ca-c94b-4c809f1d5cc5\",\"tags\":[],\"doc\":null}},{\"id\":\"e4d594f2-32f1-4460-c428-e5b98fbb0e87\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"578bd496-91fc-4a1c-cac7-35adf66d2eb8\"}}],\"id\":\"e4d594f2-32f1-4460-c428-e5b98fbb0e87\",\"tags\":[],\"doc\":null}},{\"id\":\"212e59e4-0cd6-4c40-cc4a-cfdaa4acb58b\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"212e59e4-0cd6-4c40-cc4a-cfdaa4acb58b\",\"geometries\":[],\"doc\":null}},{\"id\":\"89273cd8-6d23-4df6-cd1a-42378f8a7e9a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"89273cd8-6d23-4df6-cd1a-42378f8a7e9a\",\"tags\":[],\"doc\":null}},{\"id\":\"45e4a512-9551-4e5f-cee5-3e6d9da34e00\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"45e4a512-9551-4e5f-cee5-3e6d9da34e00\",\"tags\":[],\"doc\":null}},{\"id\":\"a3922ca4-c7de-40c7-c0ad-d4cfb7f56cba\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"89273cd8-6d23-4df6-cd1a-42378f8a7e9a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"45e4a512-9551-4e5f-cee5-3e6d9da34e00\"},\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"a3922ca4-c7de-40c7-c0ad-d4cfb7f56cba\",\"doc\":null,\"tags\":[]}},{\"id\":\"4939da6e-36bf-4afb-ca2a-4006179fb624\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"45e4a512-9551-4e5f-cee5-3e6d9da34e00\"},\"id\":\"4939da6e-36bf-4afb-ca2a-4006179fb624\",\"doc\":null,\"tags\":[]}},{\"id\":\"c8df6f6a-b270-4874-c8f5-3b8bfd569baf\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"c8df6f6a-b270-4874-c8f5-3b8bfd569baf\",\"tags\":[],\"doc\":null}},{\"id\":\"23879913-6391-4f80-cf31-e92e725ef749\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"23879913-6391-4f80-cf31-e92e725ef749\",\"tags\":[],\"doc\":null}},{\"id\":\"b288ad35-8be0-4312-c3c1-416659a8025a\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"c8df6f6a-b270-4874-c8f5-3b8bfd569baf\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"23879913-6391-4f80-cf31-e92e725ef749\"},\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"b288ad35-8be0-4312-c3c1-416659a8025a\",\"doc\":null,\"tags\":[]}},{\"id\":\"830cf6f2-7149-4ef3-cece-6b4cb4f67204\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"23879913-6391-4f80-cf31-e92e725ef749\"},\"id\":\"830cf6f2-7149-4ef3-cece-6b4cb4f67204\",\"doc\":null,\"tags\":[]}},{\"id\":\"6140ca9d-a52e-4d3f-cd98-55f0642a7f93\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"6140ca9d-a52e-4d3f-cd98-55f0642a7f93\",\"doc\":null,\"tags\":[]}},{\"id\":\"a8f61d8e-a72d-4886-c8ed-b6194659ca84\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"a8f61d8e-a72d-4886-c8ed-b6194659ca84\",\"doc\":null,\"tags\":[]}},{\"id\":\"708e795b-138d-45c0-c56e-560563dbf32a\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"708e795b-138d-45c0-c56e-560563dbf32a\",\"tags\":[],\"doc\":null}},{\"id\":\"08e2a80b-d0fe-4fea-cf8b-c625ddd1969b\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"08e2a80b-d0fe-4fea-cf8b-c625ddd1969b\",\"tags\":[],\"doc\":null}},{\"id\":\"588b7cef-d4f9-450b-c548-737b2521deb6\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"588b7cef-d4f9-450b-c548-737b2521deb6\",\"tags\":[],\"doc\":null}},{\"id\":\"0f0ba149-bc8a-4f94-cf19-030b6ce76dc3\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"0f0ba149-bc8a-4f94-cf19-030b6ce76dc3\",\"tags\":[],\"doc\":null}},{\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"a7e3bb83-d126-49ca-c94b-4c809f1d5cc5\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"212e59e4-0cd6-4c40-cc4a-cfdaa4acb58b\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"a3922ca4-c7de-40c7-c0ad-d4cfb7f56cba\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"c1f8a5f3-14fe-4104-c1d7-71759fc2f44d\"},{\"type\":\"LinearAxis\",\"id\":\"a3922ca4-c7de-40c7-c0ad-d4cfb7f56cba\"},{\"type\":\"Grid\",\"id\":\"4939da6e-36bf-4afb-ca2a-4006179fb624\"},{\"type\":\"LinearAxis\",\"id\":\"b288ad35-8be0-4312-c3c1-416659a8025a\"},{\"type\":\"Grid\",\"id\":\"830cf6f2-7149-4ef3-cece-6b4cb4f67204\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"6140ca9d-a52e-4d3f-cd98-55f0642a7f93\"},{\"type\":\"WheelZoomTool\",\"id\":\"a8f61d8e-a72d-4886-c8ed-b6194659ca84\"},{\"type\":\"BoxZoomTool\",\"id\":\"708e795b-138d-45c0-c56e-560563dbf32a\"},{\"type\":\"PreviewSaveTool\",\"id\":\"08e2a80b-d0fe-4fea-cf8b-c625ddd1969b\"},{\"type\":\"ResizeTool\",\"id\":\"588b7cef-d4f9-450b-c548-737b2521deb6\"},{\"type\":\"ResetTool\",\"id\":\"0f0ba149-bc8a-4f94-cf19-030b6ce76dc3\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 7\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"b288ad35-8be0-4312-c3c1-416659a8025a\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"e4d594f2-32f1-4460-c428-e5b98fbb0e87\"},\"id\":\"9353f310-3aa9-44f7-c459-37e50d6ec415\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#1a13b046-00f2-4670-c642-c947fb826700\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#1a13b046-00f2-4670-c642-c947fb826700\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"0685b01d-263a-4577-c591-26630de864d0\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"1a13b046-00f2-4670-c642-c947fb826700\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '1a13b046-00f2-4670-c642-c947fb826700'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"61b670da-8132-48d1-c8b1-0b6ea925446d\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"90df973b-2cd5-4107-c183-649b6e83dc89\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3004,413,363,332,241,208,141,109,71,38,35,29,7,1,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"90df973b-2cd5-4107-c183-649b6e83dc89\",\"doc\":null,\"tags\":[]}},{\"id\":\"76c5dc96-5853-42f8-c2b5-64b777be3292\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"76c5dc96-5853-42f8-c2b5-64b777be3292\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"792166c0-07cc-4a11-caf2-6392cfe06419\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"792166c0-07cc-4a11-caf2-6392cfe06419\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"7f1fcfe0-7917-4069-c046-69284709c8d2\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"792166c0-07cc-4a11-caf2-6392cfe06419\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"90df973b-2cd5-4107-c183-649b6e83dc89\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"76c5dc96-5853-42f8-c2b5-64b777be3292\"},\"selection_glyph\":null,\"id\":\"7f1fcfe0-7917-4069-c046-69284709c8d2\",\"tags\":[]}},{\"id\":\"cca5124a-fe7d-4810-c804-ef9ed4c7cfc6\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"90df973b-2cd5-4107-c183-649b6e83dc89\"}}],\"id\":\"cca5124a-fe7d-4810-c804-ef9ed4c7cfc6\",\"tags\":[],\"doc\":null}},{\"id\":\"f83fad1e-ad56-4770-c740-c67b0fe5c05d\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"90df973b-2cd5-4107-c183-649b6e83dc89\"}}],\"id\":\"f83fad1e-ad56-4770-c740-c67b0fe5c05d\",\"tags\":[],\"doc\":null}},{\"id\":\"2172337d-ae1b-414a-c114-4be6e25c5ee3\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"2172337d-ae1b-414a-c114-4be6e25c5ee3\",\"geometries\":[],\"doc\":null}},{\"id\":\"d8e86302-35b8-4c8c-cc63-bccd3cb8fdc5\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"d8e86302-35b8-4c8c-cc63-bccd3cb8fdc5\",\"tags\":[],\"doc\":null}},{\"id\":\"0dbe3fd1-3f25-4f21-cfc0-69c3465e0c91\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"0dbe3fd1-3f25-4f21-cfc0-69c3465e0c91\",\"tags\":[],\"doc\":null}},{\"id\":\"9fea7b29-12b3-41da-c1d3-572b5364f82d\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"d8e86302-35b8-4c8c-cc63-bccd3cb8fdc5\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"0dbe3fd1-3f25-4f21-cfc0-69c3465e0c91\"},\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"9fea7b29-12b3-41da-c1d3-572b5364f82d\",\"doc\":null,\"tags\":[]}},{\"id\":\"3a30567f-b7e0-47b2-c7c5-222f39bb0ddd\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"0dbe3fd1-3f25-4f21-cfc0-69c3465e0c91\"},\"id\":\"3a30567f-b7e0-47b2-c7c5-222f39bb0ddd\",\"doc\":null,\"tags\":[]}},{\"id\":\"6e9afcb6-6336-46cc-c614-6f055d56b97c\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"6e9afcb6-6336-46cc-c614-6f055d56b97c\",\"tags\":[],\"doc\":null}},{\"id\":\"9c23ae02-cf18-44a6-c411-f0bdbb328362\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"9c23ae02-cf18-44a6-c411-f0bdbb328362\",\"tags\":[],\"doc\":null}},{\"id\":\"291e5068-a188-4a74-ca17-d0756c5f0d03\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"6e9afcb6-6336-46cc-c614-6f055d56b97c\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"9c23ae02-cf18-44a6-c411-f0bdbb328362\"},\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"291e5068-a188-4a74-ca17-d0756c5f0d03\",\"doc\":null,\"tags\":[]}},{\"id\":\"d98a4780-ec05-4249-c2f2-3dbb488227f8\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"9c23ae02-cf18-44a6-c411-f0bdbb328362\"},\"id\":\"d98a4780-ec05-4249-c2f2-3dbb488227f8\",\"doc\":null,\"tags\":[]}},{\"id\":\"7855f2d7-6b08-4010-c085-b751871f1683\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"7855f2d7-6b08-4010-c085-b751871f1683\",\"doc\":null,\"tags\":[]}},{\"id\":\"1d273c59-2fda-4f75-cfea-3e3c12367880\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"1d273c59-2fda-4f75-cfea-3e3c12367880\",\"doc\":null,\"tags\":[]}},{\"id\":\"3032b1db-0060-4173-c1ed-b1e192717629\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"3032b1db-0060-4173-c1ed-b1e192717629\",\"tags\":[],\"doc\":null}},{\"id\":\"70dddc60-39e0-4500-c547-5f35c54af067\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"70dddc60-39e0-4500-c547-5f35c54af067\",\"tags\":[],\"doc\":null}},{\"id\":\"d3bd509a-3c43-40d4-c034-13890b5eadd1\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d3bd509a-3c43-40d4-c034-13890b5eadd1\",\"tags\":[],\"doc\":null}},{\"id\":\"03064556-f69f-4814-c81e-ee15ec0fe09c\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"03064556-f69f-4814-c81e-ee15ec0fe09c\",\"tags\":[],\"doc\":null}},{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"cca5124a-fe7d-4810-c804-ef9ed4c7cfc6\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"2172337d-ae1b-414a-c114-4be6e25c5ee3\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"9fea7b29-12b3-41da-c1d3-572b5364f82d\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"7f1fcfe0-7917-4069-c046-69284709c8d2\"},{\"type\":\"LinearAxis\",\"id\":\"9fea7b29-12b3-41da-c1d3-572b5364f82d\"},{\"type\":\"Grid\",\"id\":\"3a30567f-b7e0-47b2-c7c5-222f39bb0ddd\"},{\"type\":\"LinearAxis\",\"id\":\"291e5068-a188-4a74-ca17-d0756c5f0d03\"},{\"type\":\"Grid\",\"id\":\"d98a4780-ec05-4249-c2f2-3dbb488227f8\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"7855f2d7-6b08-4010-c085-b751871f1683\"},{\"type\":\"WheelZoomTool\",\"id\":\"1d273c59-2fda-4f75-cfea-3e3c12367880\"},{\"type\":\"BoxZoomTool\",\"id\":\"3032b1db-0060-4173-c1ed-b1e192717629\"},{\"type\":\"PreviewSaveTool\",\"id\":\"70dddc60-39e0-4500-c547-5f35c54af067\"},{\"type\":\"ResizeTool\",\"id\":\"d3bd509a-3c43-40d4-c034-13890b5eadd1\"},{\"type\":\"ResetTool\",\"id\":\"03064556-f69f-4814-c81e-ee15ec0fe09c\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 7\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"291e5068-a188-4a74-ca17-d0756c5f0d03\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"f83fad1e-ad56-4770-c740-c67b0fe5c05d\"},\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#1a13b046-00f2-4670-c642-c947fb826700\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#1a13b046-00f2-4670-c642-c947fb826700\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"61b670da-8132-48d1-c8b1-0b6ea925446d\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"90df973b-2cd5-4107-c183-649b6e83dc89\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3004,413,363,332,241,208,141,109,71,38,35,29,7,1,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"90df973b-2cd5-4107-c183-649b6e83dc89\",\"doc\":null,\"tags\":[]}},{\"id\":\"76c5dc96-5853-42f8-c2b5-64b777be3292\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"76c5dc96-5853-42f8-c2b5-64b777be3292\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"792166c0-07cc-4a11-caf2-6392cfe06419\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"792166c0-07cc-4a11-caf2-6392cfe06419\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"7f1fcfe0-7917-4069-c046-69284709c8d2\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"792166c0-07cc-4a11-caf2-6392cfe06419\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"90df973b-2cd5-4107-c183-649b6e83dc89\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"76c5dc96-5853-42f8-c2b5-64b777be3292\"},\"selection_glyph\":null,\"id\":\"7f1fcfe0-7917-4069-c046-69284709c8d2\",\"tags\":[]}},{\"id\":\"cca5124a-fe7d-4810-c804-ef9ed4c7cfc6\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"90df973b-2cd5-4107-c183-649b6e83dc89\"}}],\"id\":\"cca5124a-fe7d-4810-c804-ef9ed4c7cfc6\",\"tags\":[],\"doc\":null}},{\"id\":\"f83fad1e-ad56-4770-c740-c67b0fe5c05d\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"90df973b-2cd5-4107-c183-649b6e83dc89\"}}],\"id\":\"f83fad1e-ad56-4770-c740-c67b0fe5c05d\",\"tags\":[],\"doc\":null}},{\"id\":\"2172337d-ae1b-414a-c114-4be6e25c5ee3\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"2172337d-ae1b-414a-c114-4be6e25c5ee3\",\"geometries\":[],\"doc\":null}},{\"id\":\"d8e86302-35b8-4c8c-cc63-bccd3cb8fdc5\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"d8e86302-35b8-4c8c-cc63-bccd3cb8fdc5\",\"tags\":[],\"doc\":null}},{\"id\":\"0dbe3fd1-3f25-4f21-cfc0-69c3465e0c91\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"0dbe3fd1-3f25-4f21-cfc0-69c3465e0c91\",\"tags\":[],\"doc\":null}},{\"id\":\"9fea7b29-12b3-41da-c1d3-572b5364f82d\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"d8e86302-35b8-4c8c-cc63-bccd3cb8fdc5\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"0dbe3fd1-3f25-4f21-cfc0-69c3465e0c91\"},\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"9fea7b29-12b3-41da-c1d3-572b5364f82d\",\"doc\":null,\"tags\":[]}},{\"id\":\"3a30567f-b7e0-47b2-c7c5-222f39bb0ddd\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"0dbe3fd1-3f25-4f21-cfc0-69c3465e0c91\"},\"id\":\"3a30567f-b7e0-47b2-c7c5-222f39bb0ddd\",\"doc\":null,\"tags\":[]}},{\"id\":\"6e9afcb6-6336-46cc-c614-6f055d56b97c\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"6e9afcb6-6336-46cc-c614-6f055d56b97c\",\"tags\":[],\"doc\":null}},{\"id\":\"9c23ae02-cf18-44a6-c411-f0bdbb328362\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"9c23ae02-cf18-44a6-c411-f0bdbb328362\",\"tags\":[],\"doc\":null}},{\"id\":\"291e5068-a188-4a74-ca17-d0756c5f0d03\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"6e9afcb6-6336-46cc-c614-6f055d56b97c\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"9c23ae02-cf18-44a6-c411-f0bdbb328362\"},\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"291e5068-a188-4a74-ca17-d0756c5f0d03\",\"doc\":null,\"tags\":[]}},{\"id\":\"d98a4780-ec05-4249-c2f2-3dbb488227f8\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"9c23ae02-cf18-44a6-c411-f0bdbb328362\"},\"id\":\"d98a4780-ec05-4249-c2f2-3dbb488227f8\",\"doc\":null,\"tags\":[]}},{\"id\":\"7855f2d7-6b08-4010-c085-b751871f1683\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"7855f2d7-6b08-4010-c085-b751871f1683\",\"doc\":null,\"tags\":[]}},{\"id\":\"1d273c59-2fda-4f75-cfea-3e3c12367880\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"1d273c59-2fda-4f75-cfea-3e3c12367880\",\"doc\":null,\"tags\":[]}},{\"id\":\"3032b1db-0060-4173-c1ed-b1e192717629\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"3032b1db-0060-4173-c1ed-b1e192717629\",\"tags\":[],\"doc\":null}},{\"id\":\"70dddc60-39e0-4500-c547-5f35c54af067\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"70dddc60-39e0-4500-c547-5f35c54af067\",\"tags\":[],\"doc\":null}},{\"id\":\"d3bd509a-3c43-40d4-c034-13890b5eadd1\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d3bd509a-3c43-40d4-c034-13890b5eadd1\",\"tags\":[],\"doc\":null}},{\"id\":\"03064556-f69f-4814-c81e-ee15ec0fe09c\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"03064556-f69f-4814-c81e-ee15ec0fe09c\",\"tags\":[],\"doc\":null}},{\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"cca5124a-fe7d-4810-c804-ef9ed4c7cfc6\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"2172337d-ae1b-414a-c114-4be6e25c5ee3\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"9fea7b29-12b3-41da-c1d3-572b5364f82d\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"7f1fcfe0-7917-4069-c046-69284709c8d2\"},{\"type\":\"LinearAxis\",\"id\":\"9fea7b29-12b3-41da-c1d3-572b5364f82d\"},{\"type\":\"Grid\",\"id\":\"3a30567f-b7e0-47b2-c7c5-222f39bb0ddd\"},{\"type\":\"LinearAxis\",\"id\":\"291e5068-a188-4a74-ca17-d0756c5f0d03\"},{\"type\":\"Grid\",\"id\":\"d98a4780-ec05-4249-c2f2-3dbb488227f8\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"7855f2d7-6b08-4010-c085-b751871f1683\"},{\"type\":\"WheelZoomTool\",\"id\":\"1d273c59-2fda-4f75-cfea-3e3c12367880\"},{\"type\":\"BoxZoomTool\",\"id\":\"3032b1db-0060-4173-c1ed-b1e192717629\"},{\"type\":\"PreviewSaveTool\",\"id\":\"70dddc60-39e0-4500-c547-5f35c54af067\"},{\"type\":\"ResizeTool\",\"id\":\"d3bd509a-3c43-40d4-c034-13890b5eadd1\"},{\"type\":\"ResetTool\",\"id\":\"03064556-f69f-4814-c81e-ee15ec0fe09c\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 7\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"291e5068-a188-4a74-ca17-d0756c5f0d03\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"f83fad1e-ad56-4770-c740-c67b0fe5c05d\"},\"id\":\"61b670da-8132-48d1-c8b1-0b6ea925446d\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#1a13b046-00f2-4670-c642-c947fb826700\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#1a13b046-00f2-4670-c642-c947fb826700\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"1c7deacf-2ec7-4430-c44d-4c3df81a8831\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"ef2df7b9-1da9-4e85-ce01-aa19fe54735b\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'ef2df7b9-1da9-4e85-ce01-aa19fe54735b'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"37e1bc35-f939-476a-c7b7-b724053bbd50\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"07bd25c5-bf93-4629-c65d-5775e4c2fd5b\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2890,458,423,316,262,225,158,105,57,54,36,5,2,3,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"07bd25c5-bf93-4629-c65d-5775e4c2fd5b\",\"doc\":null,\"tags\":[]}},{\"id\":\"92c7f11d-8c5c-4071-c09a-9cb060d458d6\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"92c7f11d-8c5c-4071-c09a-9cb060d458d6\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"a10155ab-9474-423a-c2f1-17dd98e454fd\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"a10155ab-9474-423a-c2f1-17dd98e454fd\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"c0faa19c-170c-4aac-caba-d61c6aae8a25\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"a10155ab-9474-423a-c2f1-17dd98e454fd\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"07bd25c5-bf93-4629-c65d-5775e4c2fd5b\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"92c7f11d-8c5c-4071-c09a-9cb060d458d6\"},\"selection_glyph\":null,\"id\":\"c0faa19c-170c-4aac-caba-d61c6aae8a25\",\"tags\":[]}},{\"id\":\"770a7879-85d9-44b5-c45b-cb85ada0e4b4\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"07bd25c5-bf93-4629-c65d-5775e4c2fd5b\"}}],\"id\":\"770a7879-85d9-44b5-c45b-cb85ada0e4b4\",\"tags\":[],\"doc\":null}},{\"id\":\"a71a8a76-e69b-4118-c175-827ee8e15e47\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"07bd25c5-bf93-4629-c65d-5775e4c2fd5b\"}}],\"id\":\"a71a8a76-e69b-4118-c175-827ee8e15e47\",\"tags\":[],\"doc\":null}},{\"id\":\"40bac8d1-c1ce-40d7-c075-6cf2da3b7a49\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"40bac8d1-c1ce-40d7-c075-6cf2da3b7a49\",\"geometries\":[],\"doc\":null}},{\"id\":\"29dbdcca-13b8-465c-c62c-f11701d2d55f\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"29dbdcca-13b8-465c-c62c-f11701d2d55f\",\"tags\":[],\"doc\":null}},{\"id\":\"7ba73070-c8a2-463a-c65b-4cbfe905a631\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7ba73070-c8a2-463a-c65b-4cbfe905a631\",\"tags\":[],\"doc\":null}},{\"id\":\"3947ced3-3f66-41f7-c106-fa9e2084efe8\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"29dbdcca-13b8-465c-c62c-f11701d2d55f\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7ba73070-c8a2-463a-c65b-4cbfe905a631\"},\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"3947ced3-3f66-41f7-c106-fa9e2084efe8\",\"doc\":null,\"tags\":[]}},{\"id\":\"c09c387b-2da4-4229-c2a9-3acb10180450\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7ba73070-c8a2-463a-c65b-4cbfe905a631\"},\"id\":\"c09c387b-2da4-4229-c2a9-3acb10180450\",\"doc\":null,\"tags\":[]}},{\"id\":\"1d13f477-1aca-4ce6-ccd2-c780f6ef6aa8\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"1d13f477-1aca-4ce6-ccd2-c780f6ef6aa8\",\"tags\":[],\"doc\":null}},{\"id\":\"7808e58d-d4ef-4a9d-ca89-f0ba62006fb5\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7808e58d-d4ef-4a9d-ca89-f0ba62006fb5\",\"tags\":[],\"doc\":null}},{\"id\":\"2696f77f-7553-4a80-cad1-6d504288b464\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"1d13f477-1aca-4ce6-ccd2-c780f6ef6aa8\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7808e58d-d4ef-4a9d-ca89-f0ba62006fb5\"},\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"2696f77f-7553-4a80-cad1-6d504288b464\",\"doc\":null,\"tags\":[]}},{\"id\":\"1461cdfe-3e2b-4374-c321-22568e06dc06\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7808e58d-d4ef-4a9d-ca89-f0ba62006fb5\"},\"id\":\"1461cdfe-3e2b-4374-c321-22568e06dc06\",\"doc\":null,\"tags\":[]}},{\"id\":\"382cb003-441c-41d5-c177-bedbdfa3dd56\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"382cb003-441c-41d5-c177-bedbdfa3dd56\",\"doc\":null,\"tags\":[]}},{\"id\":\"4dc13d2b-ceef-4739-c795-06eefa650722\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"4dc13d2b-ceef-4739-c795-06eefa650722\",\"doc\":null,\"tags\":[]}},{\"id\":\"a1887881-678a-464a-c677-2d87728dba1c\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"a1887881-678a-464a-c677-2d87728dba1c\",\"tags\":[],\"doc\":null}},{\"id\":\"ea18ed2b-a749-4c47-cc22-99fa0c0b0120\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"ea18ed2b-a749-4c47-cc22-99fa0c0b0120\",\"tags\":[],\"doc\":null}},{\"id\":\"28becc0c-167e-49be-c900-03b0f38f7cb4\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"28becc0c-167e-49be-c900-03b0f38f7cb4\",\"tags\":[],\"doc\":null}},{\"id\":\"f0fc08d5-b1b5-4594-c594-7a18d786a3c4\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"f0fc08d5-b1b5-4594-c594-7a18d786a3c4\",\"tags\":[],\"doc\":null}},{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"770a7879-85d9-44b5-c45b-cb85ada0e4b4\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"40bac8d1-c1ce-40d7-c075-6cf2da3b7a49\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"3947ced3-3f66-41f7-c106-fa9e2084efe8\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"c0faa19c-170c-4aac-caba-d61c6aae8a25\"},{\"type\":\"LinearAxis\",\"id\":\"3947ced3-3f66-41f7-c106-fa9e2084efe8\"},{\"type\":\"Grid\",\"id\":\"c09c387b-2da4-4229-c2a9-3acb10180450\"},{\"type\":\"LinearAxis\",\"id\":\"2696f77f-7553-4a80-cad1-6d504288b464\"},{\"type\":\"Grid\",\"id\":\"1461cdfe-3e2b-4374-c321-22568e06dc06\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"382cb003-441c-41d5-c177-bedbdfa3dd56\"},{\"type\":\"WheelZoomTool\",\"id\":\"4dc13d2b-ceef-4739-c795-06eefa650722\"},{\"type\":\"BoxZoomTool\",\"id\":\"a1887881-678a-464a-c677-2d87728dba1c\"},{\"type\":\"PreviewSaveTool\",\"id\":\"ea18ed2b-a749-4c47-cc22-99fa0c0b0120\"},{\"type\":\"ResizeTool\",\"id\":\"28becc0c-167e-49be-c900-03b0f38f7cb4\"},{\"type\":\"ResetTool\",\"id\":\"f0fc08d5-b1b5-4594-c594-7a18d786a3c4\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"2696f77f-7553-4a80-cad1-6d504288b464\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"a71a8a76-e69b-4118-c175-827ee8e15e47\"},\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"37e1bc35-f939-476a-c7b7-b724053bbd50\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"07bd25c5-bf93-4629-c65d-5775e4c2fd5b\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2890,458,423,316,262,225,158,105,57,54,36,5,2,3,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"07bd25c5-bf93-4629-c65d-5775e4c2fd5b\",\"doc\":null,\"tags\":[]}},{\"id\":\"92c7f11d-8c5c-4071-c09a-9cb060d458d6\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"92c7f11d-8c5c-4071-c09a-9cb060d458d6\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"a10155ab-9474-423a-c2f1-17dd98e454fd\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"a10155ab-9474-423a-c2f1-17dd98e454fd\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"c0faa19c-170c-4aac-caba-d61c6aae8a25\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"a10155ab-9474-423a-c2f1-17dd98e454fd\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"07bd25c5-bf93-4629-c65d-5775e4c2fd5b\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"92c7f11d-8c5c-4071-c09a-9cb060d458d6\"},\"selection_glyph\":null,\"id\":\"c0faa19c-170c-4aac-caba-d61c6aae8a25\",\"tags\":[]}},{\"id\":\"770a7879-85d9-44b5-c45b-cb85ada0e4b4\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"07bd25c5-bf93-4629-c65d-5775e4c2fd5b\"}}],\"id\":\"770a7879-85d9-44b5-c45b-cb85ada0e4b4\",\"tags\":[],\"doc\":null}},{\"id\":\"a71a8a76-e69b-4118-c175-827ee8e15e47\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"07bd25c5-bf93-4629-c65d-5775e4c2fd5b\"}}],\"id\":\"a71a8a76-e69b-4118-c175-827ee8e15e47\",\"tags\":[],\"doc\":null}},{\"id\":\"40bac8d1-c1ce-40d7-c075-6cf2da3b7a49\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"40bac8d1-c1ce-40d7-c075-6cf2da3b7a49\",\"geometries\":[],\"doc\":null}},{\"id\":\"29dbdcca-13b8-465c-c62c-f11701d2d55f\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"29dbdcca-13b8-465c-c62c-f11701d2d55f\",\"tags\":[],\"doc\":null}},{\"id\":\"7ba73070-c8a2-463a-c65b-4cbfe905a631\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7ba73070-c8a2-463a-c65b-4cbfe905a631\",\"tags\":[],\"doc\":null}},{\"id\":\"3947ced3-3f66-41f7-c106-fa9e2084efe8\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"29dbdcca-13b8-465c-c62c-f11701d2d55f\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7ba73070-c8a2-463a-c65b-4cbfe905a631\"},\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"3947ced3-3f66-41f7-c106-fa9e2084efe8\",\"doc\":null,\"tags\":[]}},{\"id\":\"c09c387b-2da4-4229-c2a9-3acb10180450\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7ba73070-c8a2-463a-c65b-4cbfe905a631\"},\"id\":\"c09c387b-2da4-4229-c2a9-3acb10180450\",\"doc\":null,\"tags\":[]}},{\"id\":\"1d13f477-1aca-4ce6-ccd2-c780f6ef6aa8\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"1d13f477-1aca-4ce6-ccd2-c780f6ef6aa8\",\"tags\":[],\"doc\":null}},{\"id\":\"7808e58d-d4ef-4a9d-ca89-f0ba62006fb5\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"7808e58d-d4ef-4a9d-ca89-f0ba62006fb5\",\"tags\":[],\"doc\":null}},{\"id\":\"2696f77f-7553-4a80-cad1-6d504288b464\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"1d13f477-1aca-4ce6-ccd2-c780f6ef6aa8\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7808e58d-d4ef-4a9d-ca89-f0ba62006fb5\"},\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"2696f77f-7553-4a80-cad1-6d504288b464\",\"doc\":null,\"tags\":[]}},{\"id\":\"1461cdfe-3e2b-4374-c321-22568e06dc06\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"7808e58d-d4ef-4a9d-ca89-f0ba62006fb5\"},\"id\":\"1461cdfe-3e2b-4374-c321-22568e06dc06\",\"doc\":null,\"tags\":[]}},{\"id\":\"382cb003-441c-41d5-c177-bedbdfa3dd56\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"382cb003-441c-41d5-c177-bedbdfa3dd56\",\"doc\":null,\"tags\":[]}},{\"id\":\"4dc13d2b-ceef-4739-c795-06eefa650722\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"4dc13d2b-ceef-4739-c795-06eefa650722\",\"doc\":null,\"tags\":[]}},{\"id\":\"a1887881-678a-464a-c677-2d87728dba1c\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"a1887881-678a-464a-c677-2d87728dba1c\",\"tags\":[],\"doc\":null}},{\"id\":\"ea18ed2b-a749-4c47-cc22-99fa0c0b0120\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"ea18ed2b-a749-4c47-cc22-99fa0c0b0120\",\"tags\":[],\"doc\":null}},{\"id\":\"28becc0c-167e-49be-c900-03b0f38f7cb4\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"28becc0c-167e-49be-c900-03b0f38f7cb4\",\"tags\":[],\"doc\":null}},{\"id\":\"f0fc08d5-b1b5-4594-c594-7a18d786a3c4\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"f0fc08d5-b1b5-4594-c594-7a18d786a3c4\",\"tags\":[],\"doc\":null}},{\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"770a7879-85d9-44b5-c45b-cb85ada0e4b4\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"40bac8d1-c1ce-40d7-c075-6cf2da3b7a49\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"3947ced3-3f66-41f7-c106-fa9e2084efe8\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"c0faa19c-170c-4aac-caba-d61c6aae8a25\"},{\"type\":\"LinearAxis\",\"id\":\"3947ced3-3f66-41f7-c106-fa9e2084efe8\"},{\"type\":\"Grid\",\"id\":\"c09c387b-2da4-4229-c2a9-3acb10180450\"},{\"type\":\"LinearAxis\",\"id\":\"2696f77f-7553-4a80-cad1-6d504288b464\"},{\"type\":\"Grid\",\"id\":\"1461cdfe-3e2b-4374-c321-22568e06dc06\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"382cb003-441c-41d5-c177-bedbdfa3dd56\"},{\"type\":\"WheelZoomTool\",\"id\":\"4dc13d2b-ceef-4739-c795-06eefa650722\"},{\"type\":\"BoxZoomTool\",\"id\":\"a1887881-678a-464a-c677-2d87728dba1c\"},{\"type\":\"PreviewSaveTool\",\"id\":\"ea18ed2b-a749-4c47-cc22-99fa0c0b0120\"},{\"type\":\"ResizeTool\",\"id\":\"28becc0c-167e-49be-c900-03b0f38f7cb4\"},{\"type\":\"ResetTool\",\"id\":\"f0fc08d5-b1b5-4594-c594-7a18d786a3c4\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"2696f77f-7553-4a80-cad1-6d504288b464\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"a71a8a76-e69b-4118-c175-827ee8e15e47\"},\"id\":\"37e1bc35-f939-476a-c7b7-b724053bbd50\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"ef2df7b9-1da9-4e85-ce01-aa19fe54735b\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"ef2df7b9-1da9-4e85-ce01-aa19fe54735b\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'ef2df7b9-1da9-4e85-ce01-aa19fe54735b'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"3eca45b8-539c-4b87-cbc4-1afc391edb62\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2890,458,423,316,262,225,158,105,57,54,36,5,2,3,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"3eca45b8-539c-4b87-cbc4-1afc391edb62\",\"doc\":null,\"tags\":[]}},{\"id\":\"ebb97398-a015-4cd5-cc8f-002d1cc4b941\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"ebb97398-a015-4cd5-cc8f-002d1cc4b941\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"73a28f59-d8c4-4ca4-cc71-71db7b52d8da\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"73a28f59-d8c4-4ca4-cc71-71db7b52d8da\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"0b59a9ec-7d92-4a4c-caa1-4dec659c3efd\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"73a28f59-d8c4-4ca4-cc71-71db7b52d8da\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"3eca45b8-539c-4b87-cbc4-1afc391edb62\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"ebb97398-a015-4cd5-cc8f-002d1cc4b941\"},\"selection_glyph\":null,\"id\":\"0b59a9ec-7d92-4a4c-caa1-4dec659c3efd\",\"tags\":[]}},{\"id\":\"9212bf17-a9c2-4a9f-cab8-42e43974f841\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3eca45b8-539c-4b87-cbc4-1afc391edb62\"}}],\"id\":\"9212bf17-a9c2-4a9f-cab8-42e43974f841\",\"tags\":[],\"doc\":null}},{\"id\":\"2eb4663a-3fd6-4807-c809-7d6cad8e3e2e\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3eca45b8-539c-4b87-cbc4-1afc391edb62\"}}],\"id\":\"2eb4663a-3fd6-4807-c809-7d6cad8e3e2e\",\"tags\":[],\"doc\":null}},{\"id\":\"ae2a0542-2549-4a72-cac5-1cad79787bd3\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"ae2a0542-2549-4a72-cac5-1cad79787bd3\",\"geometries\":[],\"doc\":null}},{\"id\":\"17f32641-f270-4e4c-cec8-89561ffa91d2\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"17f32641-f270-4e4c-cec8-89561ffa91d2\",\"tags\":[],\"doc\":null}},{\"id\":\"516e8a06-b232-4486-c4fa-ba25c0e3d849\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"516e8a06-b232-4486-c4fa-ba25c0e3d849\",\"tags\":[],\"doc\":null}},{\"id\":\"6c4d2cb8-7353-4110-c165-33a85a820b8a\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"17f32641-f270-4e4c-cec8-89561ffa91d2\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"516e8a06-b232-4486-c4fa-ba25c0e3d849\"},\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"6c4d2cb8-7353-4110-c165-33a85a820b8a\",\"doc\":null,\"tags\":[]}},{\"id\":\"521e3de1-c9db-4fd2-cfe6-9972a994c6e8\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"516e8a06-b232-4486-c4fa-ba25c0e3d849\"},\"id\":\"521e3de1-c9db-4fd2-cfe6-9972a994c6e8\",\"doc\":null,\"tags\":[]}},{\"id\":\"8c88004d-bcb8-4b55-cb4c-4c4f00751d6c\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"8c88004d-bcb8-4b55-cb4c-4c4f00751d6c\",\"tags\":[],\"doc\":null}},{\"id\":\"cd96aae3-103d-44fc-c401-f6d66cafe264\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"cd96aae3-103d-44fc-c401-f6d66cafe264\",\"tags\":[],\"doc\":null}},{\"id\":\"ba8838a8-5f12-411f-c1ee-476fe71f6ae9\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"8c88004d-bcb8-4b55-cb4c-4c4f00751d6c\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"cd96aae3-103d-44fc-c401-f6d66cafe264\"},\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"ba8838a8-5f12-411f-c1ee-476fe71f6ae9\",\"doc\":null,\"tags\":[]}},{\"id\":\"cd02371a-0cae-4382-c35c-74991a1cfb73\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"cd96aae3-103d-44fc-c401-f6d66cafe264\"},\"id\":\"cd02371a-0cae-4382-c35c-74991a1cfb73\",\"doc\":null,\"tags\":[]}},{\"id\":\"c3695698-debd-4c25-cc13-ca065cf2fb5e\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"c3695698-debd-4c25-cc13-ca065cf2fb5e\",\"doc\":null,\"tags\":[]}},{\"id\":\"affae9af-3900-4608-c6fd-d70a37da5dbd\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"affae9af-3900-4608-c6fd-d70a37da5dbd\",\"doc\":null,\"tags\":[]}},{\"id\":\"038cf6ff-2ba8-414c-c135-d31353e807a8\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"038cf6ff-2ba8-414c-c135-d31353e807a8\",\"tags\":[],\"doc\":null}},{\"id\":\"4229ca69-01e8-49d5-c9ec-c27aae772468\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"4229ca69-01e8-49d5-c9ec-c27aae772468\",\"tags\":[],\"doc\":null}},{\"id\":\"b2810013-6307-4818-c811-4501971cdd96\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"b2810013-6307-4818-c811-4501971cdd96\",\"tags\":[],\"doc\":null}},{\"id\":\"d6793c57-f34b-4a09-ca35-9d64fad174d9\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d6793c57-f34b-4a09-ca35-9d64fad174d9\",\"tags\":[],\"doc\":null}},{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"9212bf17-a9c2-4a9f-cab8-42e43974f841\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"ae2a0542-2549-4a72-cac5-1cad79787bd3\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"6c4d2cb8-7353-4110-c165-33a85a820b8a\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"0b59a9ec-7d92-4a4c-caa1-4dec659c3efd\"},{\"type\":\"LinearAxis\",\"id\":\"6c4d2cb8-7353-4110-c165-33a85a820b8a\"},{\"type\":\"Grid\",\"id\":\"521e3de1-c9db-4fd2-cfe6-9972a994c6e8\"},{\"type\":\"LinearAxis\",\"id\":\"ba8838a8-5f12-411f-c1ee-476fe71f6ae9\"},{\"type\":\"Grid\",\"id\":\"cd02371a-0cae-4382-c35c-74991a1cfb73\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"c3695698-debd-4c25-cc13-ca065cf2fb5e\"},{\"type\":\"WheelZoomTool\",\"id\":\"affae9af-3900-4608-c6fd-d70a37da5dbd\"},{\"type\":\"BoxZoomTool\",\"id\":\"038cf6ff-2ba8-414c-c135-d31353e807a8\"},{\"type\":\"PreviewSaveTool\",\"id\":\"4229ca69-01e8-49d5-c9ec-c27aae772468\"},{\"type\":\"ResizeTool\",\"id\":\"b2810013-6307-4818-c811-4501971cdd96\"},{\"type\":\"ResetTool\",\"id\":\"d6793c57-f34b-4a09-ca35-9d64fad174d9\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 8\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"ba8838a8-5f12-411f-c1ee-476fe71f6ae9\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"2eb4663a-3fd6-4807-c809-7d6cad8e3e2e\"},\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"3eca45b8-539c-4b87-cbc4-1afc391edb62\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2890,458,423,316,262,225,158,105,57,54,36,5,2,3,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"3eca45b8-539c-4b87-cbc4-1afc391edb62\",\"doc\":null,\"tags\":[]}},{\"id\":\"ebb97398-a015-4cd5-cc8f-002d1cc4b941\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"ebb97398-a015-4cd5-cc8f-002d1cc4b941\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"73a28f59-d8c4-4ca4-cc71-71db7b52d8da\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"73a28f59-d8c4-4ca4-cc71-71db7b52d8da\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"0b59a9ec-7d92-4a4c-caa1-4dec659c3efd\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"73a28f59-d8c4-4ca4-cc71-71db7b52d8da\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"3eca45b8-539c-4b87-cbc4-1afc391edb62\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"ebb97398-a015-4cd5-cc8f-002d1cc4b941\"},\"selection_glyph\":null,\"id\":\"0b59a9ec-7d92-4a4c-caa1-4dec659c3efd\",\"tags\":[]}},{\"id\":\"9212bf17-a9c2-4a9f-cab8-42e43974f841\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3eca45b8-539c-4b87-cbc4-1afc391edb62\"}}],\"id\":\"9212bf17-a9c2-4a9f-cab8-42e43974f841\",\"tags\":[],\"doc\":null}},{\"id\":\"2eb4663a-3fd6-4807-c809-7d6cad8e3e2e\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"3eca45b8-539c-4b87-cbc4-1afc391edb62\"}}],\"id\":\"2eb4663a-3fd6-4807-c809-7d6cad8e3e2e\",\"tags\":[],\"doc\":null}},{\"id\":\"ae2a0542-2549-4a72-cac5-1cad79787bd3\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"ae2a0542-2549-4a72-cac5-1cad79787bd3\",\"geometries\":[],\"doc\":null}},{\"id\":\"17f32641-f270-4e4c-cec8-89561ffa91d2\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"17f32641-f270-4e4c-cec8-89561ffa91d2\",\"tags\":[],\"doc\":null}},{\"id\":\"516e8a06-b232-4486-c4fa-ba25c0e3d849\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"516e8a06-b232-4486-c4fa-ba25c0e3d849\",\"tags\":[],\"doc\":null}},{\"id\":\"6c4d2cb8-7353-4110-c165-33a85a820b8a\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"17f32641-f270-4e4c-cec8-89561ffa91d2\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"516e8a06-b232-4486-c4fa-ba25c0e3d849\"},\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"6c4d2cb8-7353-4110-c165-33a85a820b8a\",\"doc\":null,\"tags\":[]}},{\"id\":\"521e3de1-c9db-4fd2-cfe6-9972a994c6e8\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"516e8a06-b232-4486-c4fa-ba25c0e3d849\"},\"id\":\"521e3de1-c9db-4fd2-cfe6-9972a994c6e8\",\"doc\":null,\"tags\":[]}},{\"id\":\"8c88004d-bcb8-4b55-cb4c-4c4f00751d6c\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"8c88004d-bcb8-4b55-cb4c-4c4f00751d6c\",\"tags\":[],\"doc\":null}},{\"id\":\"cd96aae3-103d-44fc-c401-f6d66cafe264\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"cd96aae3-103d-44fc-c401-f6d66cafe264\",\"tags\":[],\"doc\":null}},{\"id\":\"ba8838a8-5f12-411f-c1ee-476fe71f6ae9\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"8c88004d-bcb8-4b55-cb4c-4c4f00751d6c\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"cd96aae3-103d-44fc-c401-f6d66cafe264\"},\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"ba8838a8-5f12-411f-c1ee-476fe71f6ae9\",\"doc\":null,\"tags\":[]}},{\"id\":\"cd02371a-0cae-4382-c35c-74991a1cfb73\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"cd96aae3-103d-44fc-c401-f6d66cafe264\"},\"id\":\"cd02371a-0cae-4382-c35c-74991a1cfb73\",\"doc\":null,\"tags\":[]}},{\"id\":\"c3695698-debd-4c25-cc13-ca065cf2fb5e\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"c3695698-debd-4c25-cc13-ca065cf2fb5e\",\"doc\":null,\"tags\":[]}},{\"id\":\"affae9af-3900-4608-c6fd-d70a37da5dbd\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"affae9af-3900-4608-c6fd-d70a37da5dbd\",\"doc\":null,\"tags\":[]}},{\"id\":\"038cf6ff-2ba8-414c-c135-d31353e807a8\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"038cf6ff-2ba8-414c-c135-d31353e807a8\",\"tags\":[],\"doc\":null}},{\"id\":\"4229ca69-01e8-49d5-c9ec-c27aae772468\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"4229ca69-01e8-49d5-c9ec-c27aae772468\",\"tags\":[],\"doc\":null}},{\"id\":\"b2810013-6307-4818-c811-4501971cdd96\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"b2810013-6307-4818-c811-4501971cdd96\",\"tags\":[],\"doc\":null}},{\"id\":\"d6793c57-f34b-4a09-ca35-9d64fad174d9\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d6793c57-f34b-4a09-ca35-9d64fad174d9\",\"tags\":[],\"doc\":null}},{\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"9212bf17-a9c2-4a9f-cab8-42e43974f841\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"ae2a0542-2549-4a72-cac5-1cad79787bd3\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"6c4d2cb8-7353-4110-c165-33a85a820b8a\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"0b59a9ec-7d92-4a4c-caa1-4dec659c3efd\"},{\"type\":\"LinearAxis\",\"id\":\"6c4d2cb8-7353-4110-c165-33a85a820b8a\"},{\"type\":\"Grid\",\"id\":\"521e3de1-c9db-4fd2-cfe6-9972a994c6e8\"},{\"type\":\"LinearAxis\",\"id\":\"ba8838a8-5f12-411f-c1ee-476fe71f6ae9\"},{\"type\":\"Grid\",\"id\":\"cd02371a-0cae-4382-c35c-74991a1cfb73\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"c3695698-debd-4c25-cc13-ca065cf2fb5e\"},{\"type\":\"WheelZoomTool\",\"id\":\"affae9af-3900-4608-c6fd-d70a37da5dbd\"},{\"type\":\"BoxZoomTool\",\"id\":\"038cf6ff-2ba8-414c-c135-d31353e807a8\"},{\"type\":\"PreviewSaveTool\",\"id\":\"4229ca69-01e8-49d5-c9ec-c27aae772468\"},{\"type\":\"ResizeTool\",\"id\":\"b2810013-6307-4818-c811-4501971cdd96\"},{\"type\":\"ResetTool\",\"id\":\"d6793c57-f34b-4a09-ca35-9d64fad174d9\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 8\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"ba8838a8-5f12-411f-c1ee-476fe71f6ae9\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"2eb4663a-3fd6-4807-c809-7d6cad8e3e2e\"},\"id\":\"27b9e0a9-a2f7-4d4b-cde9-bcaa9c076652\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"95f8c9b8-6f4f-4452-c401-638c46466ddd\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"ef2df7b9-1da9-4e85-ce01-aa19fe54735b\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'ef2df7b9-1da9-4e85-ce01-aa19fe54735b'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"9a83d2e2-7a8d-4f32-cf58-c0acdba2e19e\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2890,458,423,316,262,225,158,105,57,54,36,5,2,3,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"9a83d2e2-7a8d-4f32-cf58-c0acdba2e19e\",\"doc\":null,\"tags\":[]}},{\"id\":\"a8a30ef4-7caf-4795-c7ad-6196a2b3027c\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"a8a30ef4-7caf-4795-c7ad-6196a2b3027c\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"a1b01d92-d3d4-4525-c556-3e770152a0d5\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"a1b01d92-d3d4-4525-c556-3e770152a0d5\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"f77b8998-58b3-4761-c78b-1d1b561606a7\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"a1b01d92-d3d4-4525-c556-3e770152a0d5\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"9a83d2e2-7a8d-4f32-cf58-c0acdba2e19e\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"a8a30ef4-7caf-4795-c7ad-6196a2b3027c\"},\"selection_glyph\":null,\"id\":\"f77b8998-58b3-4761-c78b-1d1b561606a7\",\"tags\":[]}},{\"id\":\"d6bd2f10-6429-4f2e-cf2f-da34f45564db\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9a83d2e2-7a8d-4f32-cf58-c0acdba2e19e\"}}],\"id\":\"d6bd2f10-6429-4f2e-cf2f-da34f45564db\",\"tags\":[],\"doc\":null}},{\"id\":\"2e0ed964-c4d1-499c-c9b6-caa662a22cb6\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9a83d2e2-7a8d-4f32-cf58-c0acdba2e19e\"}}],\"id\":\"2e0ed964-c4d1-499c-c9b6-caa662a22cb6\",\"tags\":[],\"doc\":null}},{\"id\":\"5fe84d0e-69dd-4310-c34e-d6277bc11087\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"5fe84d0e-69dd-4310-c34e-d6277bc11087\",\"geometries\":[],\"doc\":null}},{\"id\":\"f8fb441e-3b73-47da-c7e2-d6fab99ced77\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"f8fb441e-3b73-47da-c7e2-d6fab99ced77\",\"tags\":[],\"doc\":null}},{\"id\":\"620d3be2-2d2b-4f45-cf76-8b95f7c2608a\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"620d3be2-2d2b-4f45-cf76-8b95f7c2608a\",\"tags\":[],\"doc\":null}},{\"id\":\"a1efa204-07e2-4912-c9ff-dbfcf2b6e694\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"f8fb441e-3b73-47da-c7e2-d6fab99ced77\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"620d3be2-2d2b-4f45-cf76-8b95f7c2608a\"},\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"a1efa204-07e2-4912-c9ff-dbfcf2b6e694\",\"doc\":null,\"tags\":[]}},{\"id\":\"8b746a83-0d4e-4060-c07f-bca6d516a1ff\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"620d3be2-2d2b-4f45-cf76-8b95f7c2608a\"},\"id\":\"8b746a83-0d4e-4060-c07f-bca6d516a1ff\",\"doc\":null,\"tags\":[]}},{\"id\":\"5a6505d1-955d-452e-c553-e6bbe05ca689\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"5a6505d1-955d-452e-c553-e6bbe05ca689\",\"tags\":[],\"doc\":null}},{\"id\":\"44ef4baf-dfee-4b59-cb1a-cf0f17c89f0f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"44ef4baf-dfee-4b59-cb1a-cf0f17c89f0f\",\"tags\":[],\"doc\":null}},{\"id\":\"b3027bd6-4513-4a3f-ca27-b8c9698de598\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"5a6505d1-955d-452e-c553-e6bbe05ca689\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"44ef4baf-dfee-4b59-cb1a-cf0f17c89f0f\"},\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"b3027bd6-4513-4a3f-ca27-b8c9698de598\",\"doc\":null,\"tags\":[]}},{\"id\":\"574cb259-25b6-457d-c557-2302fcbb2e92\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"44ef4baf-dfee-4b59-cb1a-cf0f17c89f0f\"},\"id\":\"574cb259-25b6-457d-c557-2302fcbb2e92\",\"doc\":null,\"tags\":[]}},{\"id\":\"db2c8118-6f72-4b6c-cb33-2d3e65ba2cb2\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"db2c8118-6f72-4b6c-cb33-2d3e65ba2cb2\",\"doc\":null,\"tags\":[]}},{\"id\":\"8b68100f-0fd3-4400-c43f-8eb511c8153a\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"8b68100f-0fd3-4400-c43f-8eb511c8153a\",\"doc\":null,\"tags\":[]}},{\"id\":\"20905c53-4614-4a88-ca7d-84b898051211\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"20905c53-4614-4a88-ca7d-84b898051211\",\"tags\":[],\"doc\":null}},{\"id\":\"088f0318-5f28-47bf-c7a3-21282b3c1767\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"088f0318-5f28-47bf-c7a3-21282b3c1767\",\"tags\":[],\"doc\":null}},{\"id\":\"afd207f6-5fef-49ee-c931-801654a09e75\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"afd207f6-5fef-49ee-c931-801654a09e75\",\"tags\":[],\"doc\":null}},{\"id\":\"a2ce4f98-354f-47bd-c7ea-27a81d2f5ff4\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"a2ce4f98-354f-47bd-c7ea-27a81d2f5ff4\",\"tags\":[],\"doc\":null}},{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"d6bd2f10-6429-4f2e-cf2f-da34f45564db\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"5fe84d0e-69dd-4310-c34e-d6277bc11087\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"a1efa204-07e2-4912-c9ff-dbfcf2b6e694\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"f77b8998-58b3-4761-c78b-1d1b561606a7\"},{\"type\":\"LinearAxis\",\"id\":\"a1efa204-07e2-4912-c9ff-dbfcf2b6e694\"},{\"type\":\"Grid\",\"id\":\"8b746a83-0d4e-4060-c07f-bca6d516a1ff\"},{\"type\":\"LinearAxis\",\"id\":\"b3027bd6-4513-4a3f-ca27-b8c9698de598\"},{\"type\":\"Grid\",\"id\":\"574cb259-25b6-457d-c557-2302fcbb2e92\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"db2c8118-6f72-4b6c-cb33-2d3e65ba2cb2\"},{\"type\":\"WheelZoomTool\",\"id\":\"8b68100f-0fd3-4400-c43f-8eb511c8153a\"},{\"type\":\"BoxZoomTool\",\"id\":\"20905c53-4614-4a88-ca7d-84b898051211\"},{\"type\":\"PreviewSaveTool\",\"id\":\"088f0318-5f28-47bf-c7a3-21282b3c1767\"},{\"type\":\"ResizeTool\",\"id\":\"afd207f6-5fef-49ee-c931-801654a09e75\"},{\"type\":\"ResetTool\",\"id\":\"a2ce4f98-354f-47bd-c7ea-27a81d2f5ff4\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 8\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"b3027bd6-4513-4a3f-ca27-b8c9698de598\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"2e0ed964-c4d1-499c-c9b6-caa662a22cb6\"},\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"9a83d2e2-7a8d-4f32-cf58-c0acdba2e19e\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2890,458,423,316,262,225,158,105,57,54,36,5,2,3,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"9a83d2e2-7a8d-4f32-cf58-c0acdba2e19e\",\"doc\":null,\"tags\":[]}},{\"id\":\"a8a30ef4-7caf-4795-c7ad-6196a2b3027c\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"a8a30ef4-7caf-4795-c7ad-6196a2b3027c\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"a1b01d92-d3d4-4525-c556-3e770152a0d5\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"a1b01d92-d3d4-4525-c556-3e770152a0d5\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"f77b8998-58b3-4761-c78b-1d1b561606a7\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"a1b01d92-d3d4-4525-c556-3e770152a0d5\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"9a83d2e2-7a8d-4f32-cf58-c0acdba2e19e\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"a8a30ef4-7caf-4795-c7ad-6196a2b3027c\"},\"selection_glyph\":null,\"id\":\"f77b8998-58b3-4761-c78b-1d1b561606a7\",\"tags\":[]}},{\"id\":\"d6bd2f10-6429-4f2e-cf2f-da34f45564db\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9a83d2e2-7a8d-4f32-cf58-c0acdba2e19e\"}}],\"id\":\"d6bd2f10-6429-4f2e-cf2f-da34f45564db\",\"tags\":[],\"doc\":null}},{\"id\":\"2e0ed964-c4d1-499c-c9b6-caa662a22cb6\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"9a83d2e2-7a8d-4f32-cf58-c0acdba2e19e\"}}],\"id\":\"2e0ed964-c4d1-499c-c9b6-caa662a22cb6\",\"tags\":[],\"doc\":null}},{\"id\":\"5fe84d0e-69dd-4310-c34e-d6277bc11087\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"5fe84d0e-69dd-4310-c34e-d6277bc11087\",\"geometries\":[],\"doc\":null}},{\"id\":\"f8fb441e-3b73-47da-c7e2-d6fab99ced77\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"f8fb441e-3b73-47da-c7e2-d6fab99ced77\",\"tags\":[],\"doc\":null}},{\"id\":\"620d3be2-2d2b-4f45-cf76-8b95f7c2608a\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"620d3be2-2d2b-4f45-cf76-8b95f7c2608a\",\"tags\":[],\"doc\":null}},{\"id\":\"a1efa204-07e2-4912-c9ff-dbfcf2b6e694\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"f8fb441e-3b73-47da-c7e2-d6fab99ced77\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"620d3be2-2d2b-4f45-cf76-8b95f7c2608a\"},\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"a1efa204-07e2-4912-c9ff-dbfcf2b6e694\",\"doc\":null,\"tags\":[]}},{\"id\":\"8b746a83-0d4e-4060-c07f-bca6d516a1ff\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"620d3be2-2d2b-4f45-cf76-8b95f7c2608a\"},\"id\":\"8b746a83-0d4e-4060-c07f-bca6d516a1ff\",\"doc\":null,\"tags\":[]}},{\"id\":\"5a6505d1-955d-452e-c553-e6bbe05ca689\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"5a6505d1-955d-452e-c553-e6bbe05ca689\",\"tags\":[],\"doc\":null}},{\"id\":\"44ef4baf-dfee-4b59-cb1a-cf0f17c89f0f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"44ef4baf-dfee-4b59-cb1a-cf0f17c89f0f\",\"tags\":[],\"doc\":null}},{\"id\":\"b3027bd6-4513-4a3f-ca27-b8c9698de598\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"5a6505d1-955d-452e-c553-e6bbe05ca689\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"44ef4baf-dfee-4b59-cb1a-cf0f17c89f0f\"},\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"b3027bd6-4513-4a3f-ca27-b8c9698de598\",\"doc\":null,\"tags\":[]}},{\"id\":\"574cb259-25b6-457d-c557-2302fcbb2e92\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"44ef4baf-dfee-4b59-cb1a-cf0f17c89f0f\"},\"id\":\"574cb259-25b6-457d-c557-2302fcbb2e92\",\"doc\":null,\"tags\":[]}},{\"id\":\"db2c8118-6f72-4b6c-cb33-2d3e65ba2cb2\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"db2c8118-6f72-4b6c-cb33-2d3e65ba2cb2\",\"doc\":null,\"tags\":[]}},{\"id\":\"8b68100f-0fd3-4400-c43f-8eb511c8153a\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"8b68100f-0fd3-4400-c43f-8eb511c8153a\",\"doc\":null,\"tags\":[]}},{\"id\":\"20905c53-4614-4a88-ca7d-84b898051211\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"20905c53-4614-4a88-ca7d-84b898051211\",\"tags\":[],\"doc\":null}},{\"id\":\"088f0318-5f28-47bf-c7a3-21282b3c1767\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"088f0318-5f28-47bf-c7a3-21282b3c1767\",\"tags\":[],\"doc\":null}},{\"id\":\"afd207f6-5fef-49ee-c931-801654a09e75\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"afd207f6-5fef-49ee-c931-801654a09e75\",\"tags\":[],\"doc\":null}},{\"id\":\"a2ce4f98-354f-47bd-c7ea-27a81d2f5ff4\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"a2ce4f98-354f-47bd-c7ea-27a81d2f5ff4\",\"tags\":[],\"doc\":null}},{\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"d6bd2f10-6429-4f2e-cf2f-da34f45564db\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"5fe84d0e-69dd-4310-c34e-d6277bc11087\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"a1efa204-07e2-4912-c9ff-dbfcf2b6e694\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"f77b8998-58b3-4761-c78b-1d1b561606a7\"},{\"type\":\"LinearAxis\",\"id\":\"a1efa204-07e2-4912-c9ff-dbfcf2b6e694\"},{\"type\":\"Grid\",\"id\":\"8b746a83-0d4e-4060-c07f-bca6d516a1ff\"},{\"type\":\"LinearAxis\",\"id\":\"b3027bd6-4513-4a3f-ca27-b8c9698de598\"},{\"type\":\"Grid\",\"id\":\"574cb259-25b6-457d-c557-2302fcbb2e92\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"db2c8118-6f72-4b6c-cb33-2d3e65ba2cb2\"},{\"type\":\"WheelZoomTool\",\"id\":\"8b68100f-0fd3-4400-c43f-8eb511c8153a\"},{\"type\":\"BoxZoomTool\",\"id\":\"20905c53-4614-4a88-ca7d-84b898051211\"},{\"type\":\"PreviewSaveTool\",\"id\":\"088f0318-5f28-47bf-c7a3-21282b3c1767\"},{\"type\":\"ResizeTool\",\"id\":\"afd207f6-5fef-49ee-c931-801654a09e75\"},{\"type\":\"ResetTool\",\"id\":\"a2ce4f98-354f-47bd-c7ea-27a81d2f5ff4\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 8\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"b3027bd6-4513-4a3f-ca27-b8c9698de598\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"2e0ed964-c4d1-499c-c9b6-caa662a22cb6\"},\"id\":\"41f7443f-7a38-4d11-cd6c-ea0d9f43b95d\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#ef2df7b9-1da9-4e85-ce01-aa19fe54735b\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"5885a1a8-0f52-476e-c786-122cfc3a799e\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"c5d46025-c246-442d-c4dc-f4899baf9306\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'c5d46025-c246-442d-c4dc-f4899baf9306'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"bcaf01a3-f410-45b6-c54c-8390123e87a4\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3162,440,375,290,233,196,130,73,44,34,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"bcaf01a3-f410-45b6-c54c-8390123e87a4\",\"doc\":null,\"tags\":[]}},{\"id\":\"10a7b924-b6b5-4340-c332-92e50abbc041\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"10a7b924-b6b5-4340-c332-92e50abbc041\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"097a8f0e-ff4b-4541-c5aa-19c81514ea0d\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"097a8f0e-ff4b-4541-c5aa-19c81514ea0d\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"b939cc00-c750-4fa1-cfeb-1a9b68e4a535\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"097a8f0e-ff4b-4541-c5aa-19c81514ea0d\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"bcaf01a3-f410-45b6-c54c-8390123e87a4\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"10a7b924-b6b5-4340-c332-92e50abbc041\"},\"selection_glyph\":null,\"id\":\"b939cc00-c750-4fa1-cfeb-1a9b68e4a535\",\"tags\":[]}},{\"id\":\"e00e4214-37f2-494e-c9f1-b37479082941\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"bcaf01a3-f410-45b6-c54c-8390123e87a4\"}}],\"id\":\"e00e4214-37f2-494e-c9f1-b37479082941\",\"tags\":[],\"doc\":null}},{\"id\":\"e5fea5ac-ce5c-460f-c6a5-bb18e937ac78\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"bcaf01a3-f410-45b6-c54c-8390123e87a4\"}}],\"id\":\"e5fea5ac-ce5c-460f-c6a5-bb18e937ac78\",\"tags\":[],\"doc\":null}},{\"id\":\"2efc34d0-62d0-4e4a-ce4f-682112a04426\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"2efc34d0-62d0-4e4a-ce4f-682112a04426\",\"geometries\":[],\"doc\":null}},{\"id\":\"857f6605-c7db-42d8-c2a4-106d1e1cf705\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"857f6605-c7db-42d8-c2a4-106d1e1cf705\",\"tags\":[],\"doc\":null}},{\"id\":\"93e2b222-8a85-4516-c516-c22138dc3c57\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"93e2b222-8a85-4516-c516-c22138dc3c57\",\"tags\":[],\"doc\":null}},{\"id\":\"79e63ca9-9f7b-4008-c04f-522204333f60\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"857f6605-c7db-42d8-c2a4-106d1e1cf705\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"93e2b222-8a85-4516-c516-c22138dc3c57\"},\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"79e63ca9-9f7b-4008-c04f-522204333f60\",\"doc\":null,\"tags\":[]}},{\"id\":\"8d59473f-a539-4764-c755-7f3c9e6c25ea\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"93e2b222-8a85-4516-c516-c22138dc3c57\"},\"id\":\"8d59473f-a539-4764-c755-7f3c9e6c25ea\",\"doc\":null,\"tags\":[]}},{\"id\":\"d9515054-3c5f-41e2-c16c-66c7cf43a72d\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"d9515054-3c5f-41e2-c16c-66c7cf43a72d\",\"tags\":[],\"doc\":null}},{\"id\":\"cfddc6cb-9060-4317-c3fd-e8f55e91995a\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"cfddc6cb-9060-4317-c3fd-e8f55e91995a\",\"tags\":[],\"doc\":null}},{\"id\":\"6e5bc643-67f2-4650-c691-0c22bfc8d0c7\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"d9515054-3c5f-41e2-c16c-66c7cf43a72d\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"cfddc6cb-9060-4317-c3fd-e8f55e91995a\"},\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"6e5bc643-67f2-4650-c691-0c22bfc8d0c7\",\"doc\":null,\"tags\":[]}},{\"id\":\"3400df7f-51c9-4237-c26a-313306e5833c\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"cfddc6cb-9060-4317-c3fd-e8f55e91995a\"},\"id\":\"3400df7f-51c9-4237-c26a-313306e5833c\",\"doc\":null,\"tags\":[]}},{\"id\":\"c87097b7-98ab-4adc-ca08-314062534dd2\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"c87097b7-98ab-4adc-ca08-314062534dd2\",\"doc\":null,\"tags\":[]}},{\"id\":\"825a12fb-f61b-476c-c719-7814249767ff\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"825a12fb-f61b-476c-c719-7814249767ff\",\"doc\":null,\"tags\":[]}},{\"id\":\"5a2fce60-2a60-4197-c127-64565020ea3a\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5a2fce60-2a60-4197-c127-64565020ea3a\",\"tags\":[],\"doc\":null}},{\"id\":\"34006e58-42fd-42b2-c2ba-6cdb99ac8a62\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"34006e58-42fd-42b2-c2ba-6cdb99ac8a62\",\"tags\":[],\"doc\":null}},{\"id\":\"f42f51cb-c304-4760-c7c9-819d4254ed53\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"f42f51cb-c304-4760-c7c9-819d4254ed53\",\"tags\":[],\"doc\":null}},{\"id\":\"e0a8ef4e-871c-471d-c73c-e161565766f7\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"e0a8ef4e-871c-471d-c73c-e161565766f7\",\"tags\":[],\"doc\":null}},{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"e00e4214-37f2-494e-c9f1-b37479082941\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"2efc34d0-62d0-4e4a-ce4f-682112a04426\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"79e63ca9-9f7b-4008-c04f-522204333f60\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"b939cc00-c750-4fa1-cfeb-1a9b68e4a535\"},{\"type\":\"LinearAxis\",\"id\":\"79e63ca9-9f7b-4008-c04f-522204333f60\"},{\"type\":\"Grid\",\"id\":\"8d59473f-a539-4764-c755-7f3c9e6c25ea\"},{\"type\":\"LinearAxis\",\"id\":\"6e5bc643-67f2-4650-c691-0c22bfc8d0c7\"},{\"type\":\"Grid\",\"id\":\"3400df7f-51c9-4237-c26a-313306e5833c\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"c87097b7-98ab-4adc-ca08-314062534dd2\"},{\"type\":\"WheelZoomTool\",\"id\":\"825a12fb-f61b-476c-c719-7814249767ff\"},{\"type\":\"BoxZoomTool\",\"id\":\"5a2fce60-2a60-4197-c127-64565020ea3a\"},{\"type\":\"PreviewSaveTool\",\"id\":\"34006e58-42fd-42b2-c2ba-6cdb99ac8a62\"},{\"type\":\"ResizeTool\",\"id\":\"f42f51cb-c304-4760-c7c9-819d4254ed53\"},{\"type\":\"ResetTool\",\"id\":\"e0a8ef4e-871c-471d-c73c-e161565766f7\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"6e5bc643-67f2-4650-c691-0c22bfc8d0c7\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"e5fea5ac-ce5c-460f-c6a5-bb18e937ac78\"},\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#c5d46025-c246-442d-c4dc-f4899baf9306\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#c5d46025-c246-442d-c4dc-f4899baf9306\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"bcaf01a3-f410-45b6-c54c-8390123e87a4\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3162,440,375,290,233,196,130,73,44,34,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"bcaf01a3-f410-45b6-c54c-8390123e87a4\",\"doc\":null,\"tags\":[]}},{\"id\":\"10a7b924-b6b5-4340-c332-92e50abbc041\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"10a7b924-b6b5-4340-c332-92e50abbc041\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"097a8f0e-ff4b-4541-c5aa-19c81514ea0d\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"097a8f0e-ff4b-4541-c5aa-19c81514ea0d\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"b939cc00-c750-4fa1-cfeb-1a9b68e4a535\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"097a8f0e-ff4b-4541-c5aa-19c81514ea0d\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"bcaf01a3-f410-45b6-c54c-8390123e87a4\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"10a7b924-b6b5-4340-c332-92e50abbc041\"},\"selection_glyph\":null,\"id\":\"b939cc00-c750-4fa1-cfeb-1a9b68e4a535\",\"tags\":[]}},{\"id\":\"e00e4214-37f2-494e-c9f1-b37479082941\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"bcaf01a3-f410-45b6-c54c-8390123e87a4\"}}],\"id\":\"e00e4214-37f2-494e-c9f1-b37479082941\",\"tags\":[],\"doc\":null}},{\"id\":\"e5fea5ac-ce5c-460f-c6a5-bb18e937ac78\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"bcaf01a3-f410-45b6-c54c-8390123e87a4\"}}],\"id\":\"e5fea5ac-ce5c-460f-c6a5-bb18e937ac78\",\"tags\":[],\"doc\":null}},{\"id\":\"2efc34d0-62d0-4e4a-ce4f-682112a04426\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"2efc34d0-62d0-4e4a-ce4f-682112a04426\",\"geometries\":[],\"doc\":null}},{\"id\":\"857f6605-c7db-42d8-c2a4-106d1e1cf705\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"857f6605-c7db-42d8-c2a4-106d1e1cf705\",\"tags\":[],\"doc\":null}},{\"id\":\"93e2b222-8a85-4516-c516-c22138dc3c57\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"93e2b222-8a85-4516-c516-c22138dc3c57\",\"tags\":[],\"doc\":null}},{\"id\":\"79e63ca9-9f7b-4008-c04f-522204333f60\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"857f6605-c7db-42d8-c2a4-106d1e1cf705\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"93e2b222-8a85-4516-c516-c22138dc3c57\"},\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"79e63ca9-9f7b-4008-c04f-522204333f60\",\"doc\":null,\"tags\":[]}},{\"id\":\"8d59473f-a539-4764-c755-7f3c9e6c25ea\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"93e2b222-8a85-4516-c516-c22138dc3c57\"},\"id\":\"8d59473f-a539-4764-c755-7f3c9e6c25ea\",\"doc\":null,\"tags\":[]}},{\"id\":\"d9515054-3c5f-41e2-c16c-66c7cf43a72d\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"d9515054-3c5f-41e2-c16c-66c7cf43a72d\",\"tags\":[],\"doc\":null}},{\"id\":\"cfddc6cb-9060-4317-c3fd-e8f55e91995a\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"cfddc6cb-9060-4317-c3fd-e8f55e91995a\",\"tags\":[],\"doc\":null}},{\"id\":\"6e5bc643-67f2-4650-c691-0c22bfc8d0c7\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"d9515054-3c5f-41e2-c16c-66c7cf43a72d\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"cfddc6cb-9060-4317-c3fd-e8f55e91995a\"},\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"6e5bc643-67f2-4650-c691-0c22bfc8d0c7\",\"doc\":null,\"tags\":[]}},{\"id\":\"3400df7f-51c9-4237-c26a-313306e5833c\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"cfddc6cb-9060-4317-c3fd-e8f55e91995a\"},\"id\":\"3400df7f-51c9-4237-c26a-313306e5833c\",\"doc\":null,\"tags\":[]}},{\"id\":\"c87097b7-98ab-4adc-ca08-314062534dd2\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"c87097b7-98ab-4adc-ca08-314062534dd2\",\"doc\":null,\"tags\":[]}},{\"id\":\"825a12fb-f61b-476c-c719-7814249767ff\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"825a12fb-f61b-476c-c719-7814249767ff\",\"doc\":null,\"tags\":[]}},{\"id\":\"5a2fce60-2a60-4197-c127-64565020ea3a\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5a2fce60-2a60-4197-c127-64565020ea3a\",\"tags\":[],\"doc\":null}},{\"id\":\"34006e58-42fd-42b2-c2ba-6cdb99ac8a62\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"34006e58-42fd-42b2-c2ba-6cdb99ac8a62\",\"tags\":[],\"doc\":null}},{\"id\":\"f42f51cb-c304-4760-c7c9-819d4254ed53\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"f42f51cb-c304-4760-c7c9-819d4254ed53\",\"tags\":[],\"doc\":null}},{\"id\":\"e0a8ef4e-871c-471d-c73c-e161565766f7\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"e0a8ef4e-871c-471d-c73c-e161565766f7\",\"tags\":[],\"doc\":null}},{\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"e00e4214-37f2-494e-c9f1-b37479082941\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"2efc34d0-62d0-4e4a-ce4f-682112a04426\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"79e63ca9-9f7b-4008-c04f-522204333f60\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"b939cc00-c750-4fa1-cfeb-1a9b68e4a535\"},{\"type\":\"LinearAxis\",\"id\":\"79e63ca9-9f7b-4008-c04f-522204333f60\"},{\"type\":\"Grid\",\"id\":\"8d59473f-a539-4764-c755-7f3c9e6c25ea\"},{\"type\":\"LinearAxis\",\"id\":\"6e5bc643-67f2-4650-c691-0c22bfc8d0c7\"},{\"type\":\"Grid\",\"id\":\"3400df7f-51c9-4237-c26a-313306e5833c\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"c87097b7-98ab-4adc-ca08-314062534dd2\"},{\"type\":\"WheelZoomTool\",\"id\":\"825a12fb-f61b-476c-c719-7814249767ff\"},{\"type\":\"BoxZoomTool\",\"id\":\"5a2fce60-2a60-4197-c127-64565020ea3a\"},{\"type\":\"PreviewSaveTool\",\"id\":\"34006e58-42fd-42b2-c2ba-6cdb99ac8a62\"},{\"type\":\"ResizeTool\",\"id\":\"f42f51cb-c304-4760-c7c9-819d4254ed53\"},{\"type\":\"ResetTool\",\"id\":\"e0a8ef4e-871c-471d-c73c-e161565766f7\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"6e5bc643-67f2-4650-c691-0c22bfc8d0c7\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"e5fea5ac-ce5c-460f-c6a5-bb18e937ac78\"},\"id\":\"0dfbfb7e-3a19-45ac-c541-4494c15d8b14\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#c5d46025-c246-442d-c4dc-f4899baf9306\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#c5d46025-c246-442d-c4dc-f4899baf9306\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"c5d46025-c246-442d-c4dc-f4899baf9306\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"c5d46025-c246-442d-c4dc-f4899baf9306\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'c5d46025-c246-442d-c4dc-f4899baf9306'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"f4b71275-b8fb-46b7-c6e7-f841b57b9486\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"1d30fb41-00d1-4664-c6dc-33a1f5d7ce6d\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3162,440,375,290,233,196,130,73,44,34,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"1d30fb41-00d1-4664-c6dc-33a1f5d7ce6d\",\"doc\":null,\"tags\":[]}},{\"id\":\"47625813-3757-44e5-c424-3c4ac7bdae6d\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"47625813-3757-44e5-c424-3c4ac7bdae6d\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"547c73ab-9f5b-4ce8-cc95-5cc9df3c947c\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"547c73ab-9f5b-4ce8-cc95-5cc9df3c947c\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"ce0837d7-ef00-4585-c527-e63789af1066\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"547c73ab-9f5b-4ce8-cc95-5cc9df3c947c\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"1d30fb41-00d1-4664-c6dc-33a1f5d7ce6d\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"47625813-3757-44e5-c424-3c4ac7bdae6d\"},\"selection_glyph\":null,\"id\":\"ce0837d7-ef00-4585-c527-e63789af1066\",\"tags\":[]}},{\"id\":\"0ee5d3d9-158b-4209-c265-c67eb653a7b8\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1d30fb41-00d1-4664-c6dc-33a1f5d7ce6d\"}}],\"id\":\"0ee5d3d9-158b-4209-c265-c67eb653a7b8\",\"tags\":[],\"doc\":null}},{\"id\":\"9bdbe0c8-42ca-4d20-cd81-793239560613\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1d30fb41-00d1-4664-c6dc-33a1f5d7ce6d\"}}],\"id\":\"9bdbe0c8-42ca-4d20-cd81-793239560613\",\"tags\":[],\"doc\":null}},{\"id\":\"4eed7424-f329-4b35-cbae-d30da29d3688\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"4eed7424-f329-4b35-cbae-d30da29d3688\",\"geometries\":[],\"doc\":null}},{\"id\":\"decda9a7-5804-4219-c285-0f4f58aa7f49\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"decda9a7-5804-4219-c285-0f4f58aa7f49\",\"tags\":[],\"doc\":null}},{\"id\":\"6644b98a-a650-429b-c26a-67a6f878d194\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"6644b98a-a650-429b-c26a-67a6f878d194\",\"tags\":[],\"doc\":null}},{\"id\":\"90f8e2fb-03ab-4b59-cbf9-2fe81abd339f\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"decda9a7-5804-4219-c285-0f4f58aa7f49\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"6644b98a-a650-429b-c26a-67a6f878d194\"},\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"90f8e2fb-03ab-4b59-cbf9-2fe81abd339f\",\"doc\":null,\"tags\":[]}},{\"id\":\"e53ebf22-0490-4092-c0e9-5d468432554e\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"6644b98a-a650-429b-c26a-67a6f878d194\"},\"id\":\"e53ebf22-0490-4092-c0e9-5d468432554e\",\"doc\":null,\"tags\":[]}},{\"id\":\"6535aecf-8118-4c25-cc52-cf7dc99f9d7e\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"6535aecf-8118-4c25-cc52-cf7dc99f9d7e\",\"tags\":[],\"doc\":null}},{\"id\":\"34836c02-0902-4419-c45a-f86a2d0ebc39\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"34836c02-0902-4419-c45a-f86a2d0ebc39\",\"tags\":[],\"doc\":null}},{\"id\":\"5d59f8d2-cd37-4343-c33b-2083647de025\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"6535aecf-8118-4c25-cc52-cf7dc99f9d7e\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"34836c02-0902-4419-c45a-f86a2d0ebc39\"},\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"5d59f8d2-cd37-4343-c33b-2083647de025\",\"doc\":null,\"tags\":[]}},{\"id\":\"6aba9f36-a873-4c41-cccf-ee25baf691bd\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"34836c02-0902-4419-c45a-f86a2d0ebc39\"},\"id\":\"6aba9f36-a873-4c41-cccf-ee25baf691bd\",\"doc\":null,\"tags\":[]}},{\"id\":\"e0d500c7-b8fb-40e6-c07a-3ed870d3f85d\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"e0d500c7-b8fb-40e6-c07a-3ed870d3f85d\",\"doc\":null,\"tags\":[]}},{\"id\":\"2ece7664-9345-499d-c946-d1dc98d3cb69\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"2ece7664-9345-499d-c946-d1dc98d3cb69\",\"doc\":null,\"tags\":[]}},{\"id\":\"b661fccf-bbc6-43aa-c35a-ed70a2a52bbf\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"b661fccf-bbc6-43aa-c35a-ed70a2a52bbf\",\"tags\":[],\"doc\":null}},{\"id\":\"39893efc-60af-4ed8-cef2-c0c1c7c70d70\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"39893efc-60af-4ed8-cef2-c0c1c7c70d70\",\"tags\":[],\"doc\":null}},{\"id\":\"fefc02b0-0a14-47ef-c75b-871bc5d52587\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"fefc02b0-0a14-47ef-c75b-871bc5d52587\",\"tags\":[],\"doc\":null}},{\"id\":\"a25fc8b7-b1c7-4190-c1e0-68742757b7f5\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"a25fc8b7-b1c7-4190-c1e0-68742757b7f5\",\"tags\":[],\"doc\":null}},{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"0ee5d3d9-158b-4209-c265-c67eb653a7b8\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"4eed7424-f329-4b35-cbae-d30da29d3688\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"90f8e2fb-03ab-4b59-cbf9-2fe81abd339f\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"ce0837d7-ef00-4585-c527-e63789af1066\"},{\"type\":\"LinearAxis\",\"id\":\"90f8e2fb-03ab-4b59-cbf9-2fe81abd339f\"},{\"type\":\"Grid\",\"id\":\"e53ebf22-0490-4092-c0e9-5d468432554e\"},{\"type\":\"LinearAxis\",\"id\":\"5d59f8d2-cd37-4343-c33b-2083647de025\"},{\"type\":\"Grid\",\"id\":\"6aba9f36-a873-4c41-cccf-ee25baf691bd\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"e0d500c7-b8fb-40e6-c07a-3ed870d3f85d\"},{\"type\":\"WheelZoomTool\",\"id\":\"2ece7664-9345-499d-c946-d1dc98d3cb69\"},{\"type\":\"BoxZoomTool\",\"id\":\"b661fccf-bbc6-43aa-c35a-ed70a2a52bbf\"},{\"type\":\"PreviewSaveTool\",\"id\":\"39893efc-60af-4ed8-cef2-c0c1c7c70d70\"},{\"type\":\"ResizeTool\",\"id\":\"fefc02b0-0a14-47ef-c75b-871bc5d52587\"},{\"type\":\"ResetTool\",\"id\":\"a25fc8b7-b1c7-4190-c1e0-68742757b7f5\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 9\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"5d59f8d2-cd37-4343-c33b-2083647de025\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"9bdbe0c8-42ca-4d20-cd81-793239560613\"},\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#c5d46025-c246-442d-c4dc-f4899baf9306\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#c5d46025-c246-442d-c4dc-f4899baf9306\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"f4b71275-b8fb-46b7-c6e7-f841b57b9486\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"1d30fb41-00d1-4664-c6dc-33a1f5d7ce6d\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3162,440,375,290,233,196,130,73,44,34,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"1d30fb41-00d1-4664-c6dc-33a1f5d7ce6d\",\"doc\":null,\"tags\":[]}},{\"id\":\"47625813-3757-44e5-c424-3c4ac7bdae6d\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"47625813-3757-44e5-c424-3c4ac7bdae6d\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"547c73ab-9f5b-4ce8-cc95-5cc9df3c947c\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"547c73ab-9f5b-4ce8-cc95-5cc9df3c947c\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"ce0837d7-ef00-4585-c527-e63789af1066\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"547c73ab-9f5b-4ce8-cc95-5cc9df3c947c\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"1d30fb41-00d1-4664-c6dc-33a1f5d7ce6d\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"47625813-3757-44e5-c424-3c4ac7bdae6d\"},\"selection_glyph\":null,\"id\":\"ce0837d7-ef00-4585-c527-e63789af1066\",\"tags\":[]}},{\"id\":\"0ee5d3d9-158b-4209-c265-c67eb653a7b8\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1d30fb41-00d1-4664-c6dc-33a1f5d7ce6d\"}}],\"id\":\"0ee5d3d9-158b-4209-c265-c67eb653a7b8\",\"tags\":[],\"doc\":null}},{\"id\":\"9bdbe0c8-42ca-4d20-cd81-793239560613\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"1d30fb41-00d1-4664-c6dc-33a1f5d7ce6d\"}}],\"id\":\"9bdbe0c8-42ca-4d20-cd81-793239560613\",\"tags\":[],\"doc\":null}},{\"id\":\"4eed7424-f329-4b35-cbae-d30da29d3688\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"4eed7424-f329-4b35-cbae-d30da29d3688\",\"geometries\":[],\"doc\":null}},{\"id\":\"decda9a7-5804-4219-c285-0f4f58aa7f49\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"decda9a7-5804-4219-c285-0f4f58aa7f49\",\"tags\":[],\"doc\":null}},{\"id\":\"6644b98a-a650-429b-c26a-67a6f878d194\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"6644b98a-a650-429b-c26a-67a6f878d194\",\"tags\":[],\"doc\":null}},{\"id\":\"90f8e2fb-03ab-4b59-cbf9-2fe81abd339f\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"decda9a7-5804-4219-c285-0f4f58aa7f49\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"6644b98a-a650-429b-c26a-67a6f878d194\"},\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"90f8e2fb-03ab-4b59-cbf9-2fe81abd339f\",\"doc\":null,\"tags\":[]}},{\"id\":\"e53ebf22-0490-4092-c0e9-5d468432554e\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"6644b98a-a650-429b-c26a-67a6f878d194\"},\"id\":\"e53ebf22-0490-4092-c0e9-5d468432554e\",\"doc\":null,\"tags\":[]}},{\"id\":\"6535aecf-8118-4c25-cc52-cf7dc99f9d7e\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"6535aecf-8118-4c25-cc52-cf7dc99f9d7e\",\"tags\":[],\"doc\":null}},{\"id\":\"34836c02-0902-4419-c45a-f86a2d0ebc39\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"34836c02-0902-4419-c45a-f86a2d0ebc39\",\"tags\":[],\"doc\":null}},{\"id\":\"5d59f8d2-cd37-4343-c33b-2083647de025\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"6535aecf-8118-4c25-cc52-cf7dc99f9d7e\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"34836c02-0902-4419-c45a-f86a2d0ebc39\"},\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"5d59f8d2-cd37-4343-c33b-2083647de025\",\"doc\":null,\"tags\":[]}},{\"id\":\"6aba9f36-a873-4c41-cccf-ee25baf691bd\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"34836c02-0902-4419-c45a-f86a2d0ebc39\"},\"id\":\"6aba9f36-a873-4c41-cccf-ee25baf691bd\",\"doc\":null,\"tags\":[]}},{\"id\":\"e0d500c7-b8fb-40e6-c07a-3ed870d3f85d\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"e0d500c7-b8fb-40e6-c07a-3ed870d3f85d\",\"doc\":null,\"tags\":[]}},{\"id\":\"2ece7664-9345-499d-c946-d1dc98d3cb69\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"2ece7664-9345-499d-c946-d1dc98d3cb69\",\"doc\":null,\"tags\":[]}},{\"id\":\"b661fccf-bbc6-43aa-c35a-ed70a2a52bbf\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"b661fccf-bbc6-43aa-c35a-ed70a2a52bbf\",\"tags\":[],\"doc\":null}},{\"id\":\"39893efc-60af-4ed8-cef2-c0c1c7c70d70\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"39893efc-60af-4ed8-cef2-c0c1c7c70d70\",\"tags\":[],\"doc\":null}},{\"id\":\"fefc02b0-0a14-47ef-c75b-871bc5d52587\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"fefc02b0-0a14-47ef-c75b-871bc5d52587\",\"tags\":[],\"doc\":null}},{\"id\":\"a25fc8b7-b1c7-4190-c1e0-68742757b7f5\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"a25fc8b7-b1c7-4190-c1e0-68742757b7f5\",\"tags\":[],\"doc\":null}},{\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"0ee5d3d9-158b-4209-c265-c67eb653a7b8\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"4eed7424-f329-4b35-cbae-d30da29d3688\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"90f8e2fb-03ab-4b59-cbf9-2fe81abd339f\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"ce0837d7-ef00-4585-c527-e63789af1066\"},{\"type\":\"LinearAxis\",\"id\":\"90f8e2fb-03ab-4b59-cbf9-2fe81abd339f\"},{\"type\":\"Grid\",\"id\":\"e53ebf22-0490-4092-c0e9-5d468432554e\"},{\"type\":\"LinearAxis\",\"id\":\"5d59f8d2-cd37-4343-c33b-2083647de025\"},{\"type\":\"Grid\",\"id\":\"6aba9f36-a873-4c41-cccf-ee25baf691bd\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"e0d500c7-b8fb-40e6-c07a-3ed870d3f85d\"},{\"type\":\"WheelZoomTool\",\"id\":\"2ece7664-9345-499d-c946-d1dc98d3cb69\"},{\"type\":\"BoxZoomTool\",\"id\":\"b661fccf-bbc6-43aa-c35a-ed70a2a52bbf\"},{\"type\":\"PreviewSaveTool\",\"id\":\"39893efc-60af-4ed8-cef2-c0c1c7c70d70\"},{\"type\":\"ResizeTool\",\"id\":\"fefc02b0-0a14-47ef-c75b-871bc5d52587\"},{\"type\":\"ResetTool\",\"id\":\"a25fc8b7-b1c7-4190-c1e0-68742757b7f5\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 9\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"5d59f8d2-cd37-4343-c33b-2083647de025\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"9bdbe0c8-42ca-4d20-cd81-793239560613\"},\"id\":\"f4b71275-b8fb-46b7-c6e7-f841b57b9486\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#c5d46025-c246-442d-c4dc-f4899baf9306\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#c5d46025-c246-442d-c4dc-f4899baf9306\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"2ea2d0d8-2d41-4ac3-ca41-da77966ff34b\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"c5d46025-c246-442d-c4dc-f4899baf9306\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'c5d46025-c246-442d-c4dc-f4899baf9306'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"a8dc7672-83d7-4d11-cd89-0640118c11e5\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"03932453-5baf-46d3-c6ef-bb9ecec54d95\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3162,440,375,290,233,196,130,73,44,34,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"03932453-5baf-46d3-c6ef-bb9ecec54d95\",\"doc\":null,\"tags\":[]}},{\"id\":\"9c821914-09de-4a3c-ca8d-c39cc16325f1\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"9c821914-09de-4a3c-ca8d-c39cc16325f1\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"f4ccbbad-0b64-49ef-c95c-20c73b51b69f\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"f4ccbbad-0b64-49ef-c95c-20c73b51b69f\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"cbaf8735-abe9-4a47-cab9-23b3a0c822ee\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"f4ccbbad-0b64-49ef-c95c-20c73b51b69f\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"03932453-5baf-46d3-c6ef-bb9ecec54d95\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"9c821914-09de-4a3c-ca8d-c39cc16325f1\"},\"selection_glyph\":null,\"id\":\"cbaf8735-abe9-4a47-cab9-23b3a0c822ee\",\"tags\":[]}},{\"id\":\"51ec30dd-eb8a-48b3-c891-348b11859120\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"03932453-5baf-46d3-c6ef-bb9ecec54d95\"}}],\"id\":\"51ec30dd-eb8a-48b3-c891-348b11859120\",\"tags\":[],\"doc\":null}},{\"id\":\"cdb405e4-ae13-4a45-cadd-ae2c778f2ea8\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"03932453-5baf-46d3-c6ef-bb9ecec54d95\"}}],\"id\":\"cdb405e4-ae13-4a45-cadd-ae2c778f2ea8\",\"tags\":[],\"doc\":null}},{\"id\":\"13cc3acd-158a-4868-c8ad-6dfb981c6d8f\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"13cc3acd-158a-4868-c8ad-6dfb981c6d8f\",\"geometries\":[],\"doc\":null}},{\"id\":\"c673d072-e1b6-4e1b-ced1-3d1d7ebf2559\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"c673d072-e1b6-4e1b-ced1-3d1d7ebf2559\",\"tags\":[],\"doc\":null}},{\"id\":\"866ab061-0ef5-4f91-cfe2-ed49bda5c25f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"866ab061-0ef5-4f91-cfe2-ed49bda5c25f\",\"tags\":[],\"doc\":null}},{\"id\":\"916bc915-bb1a-4de5-cdb7-522ec3812e50\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"c673d072-e1b6-4e1b-ced1-3d1d7ebf2559\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"866ab061-0ef5-4f91-cfe2-ed49bda5c25f\"},\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"916bc915-bb1a-4de5-cdb7-522ec3812e50\",\"doc\":null,\"tags\":[]}},{\"id\":\"c46cc193-bf3e-414d-c147-ae95cf42ad56\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"866ab061-0ef5-4f91-cfe2-ed49bda5c25f\"},\"id\":\"c46cc193-bf3e-414d-c147-ae95cf42ad56\",\"doc\":null,\"tags\":[]}},{\"id\":\"91480b3c-08f2-4228-c238-06d07201c6f6\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"91480b3c-08f2-4228-c238-06d07201c6f6\",\"tags\":[],\"doc\":null}},{\"id\":\"b1cf19d2-db59-4252-c2b8-fd3e61d23053\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"b1cf19d2-db59-4252-c2b8-fd3e61d23053\",\"tags\":[],\"doc\":null}},{\"id\":\"9baf0dbf-430b-4908-c9f1-d71a9de2fd2c\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"91480b3c-08f2-4228-c238-06d07201c6f6\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"b1cf19d2-db59-4252-c2b8-fd3e61d23053\"},\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"9baf0dbf-430b-4908-c9f1-d71a9de2fd2c\",\"doc\":null,\"tags\":[]}},{\"id\":\"75b4b478-a767-460b-c63e-dc90fda07add\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"b1cf19d2-db59-4252-c2b8-fd3e61d23053\"},\"id\":\"75b4b478-a767-460b-c63e-dc90fda07add\",\"doc\":null,\"tags\":[]}},{\"id\":\"1ef6129d-0d6c-4677-c6a8-4afc47bdeeec\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"1ef6129d-0d6c-4677-c6a8-4afc47bdeeec\",\"doc\":null,\"tags\":[]}},{\"id\":\"13011467-3884-4968-c9bb-1411f02da8af\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"13011467-3884-4968-c9bb-1411f02da8af\",\"doc\":null,\"tags\":[]}},{\"id\":\"532ff06d-a5a1-4e0e-cedf-208370ba532a\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"532ff06d-a5a1-4e0e-cedf-208370ba532a\",\"tags\":[],\"doc\":null}},{\"id\":\"9d4d113d-7a10-4075-c0d4-d2ece70c7edd\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"9d4d113d-7a10-4075-c0d4-d2ece70c7edd\",\"tags\":[],\"doc\":null}},{\"id\":\"457bbe64-e7da-4450-c465-b36aa36524d2\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"457bbe64-e7da-4450-c465-b36aa36524d2\",\"tags\":[],\"doc\":null}},{\"id\":\"d31ab036-f2f1-4a02-caaf-fc896055be83\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d31ab036-f2f1-4a02-caaf-fc896055be83\",\"tags\":[],\"doc\":null}},{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"51ec30dd-eb8a-48b3-c891-348b11859120\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"13cc3acd-158a-4868-c8ad-6dfb981c6d8f\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"916bc915-bb1a-4de5-cdb7-522ec3812e50\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"cbaf8735-abe9-4a47-cab9-23b3a0c822ee\"},{\"type\":\"LinearAxis\",\"id\":\"916bc915-bb1a-4de5-cdb7-522ec3812e50\"},{\"type\":\"Grid\",\"id\":\"c46cc193-bf3e-414d-c147-ae95cf42ad56\"},{\"type\":\"LinearAxis\",\"id\":\"9baf0dbf-430b-4908-c9f1-d71a9de2fd2c\"},{\"type\":\"Grid\",\"id\":\"75b4b478-a767-460b-c63e-dc90fda07add\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"1ef6129d-0d6c-4677-c6a8-4afc47bdeeec\"},{\"type\":\"WheelZoomTool\",\"id\":\"13011467-3884-4968-c9bb-1411f02da8af\"},{\"type\":\"BoxZoomTool\",\"id\":\"532ff06d-a5a1-4e0e-cedf-208370ba532a\"},{\"type\":\"PreviewSaveTool\",\"id\":\"9d4d113d-7a10-4075-c0d4-d2ece70c7edd\"},{\"type\":\"ResizeTool\",\"id\":\"457bbe64-e7da-4450-c465-b36aa36524d2\"},{\"type\":\"ResetTool\",\"id\":\"d31ab036-f2f1-4a02-caaf-fc896055be83\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 9\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"9baf0dbf-430b-4908-c9f1-d71a9de2fd2c\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"cdb405e4-ae13-4a45-cadd-ae2c778f2ea8\"},\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#c5d46025-c246-442d-c4dc-f4899baf9306\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#c5d46025-c246-442d-c4dc-f4899baf9306\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"a8dc7672-83d7-4d11-cd89-0640118c11e5\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"03932453-5baf-46d3-c6ef-bb9ecec54d95\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3162,440,375,290,233,196,130,73,44,34,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"03932453-5baf-46d3-c6ef-bb9ecec54d95\",\"doc\":null,\"tags\":[]}},{\"id\":\"9c821914-09de-4a3c-ca8d-c39cc16325f1\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"9c821914-09de-4a3c-ca8d-c39cc16325f1\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"f4ccbbad-0b64-49ef-c95c-20c73b51b69f\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"f4ccbbad-0b64-49ef-c95c-20c73b51b69f\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"cbaf8735-abe9-4a47-cab9-23b3a0c822ee\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"f4ccbbad-0b64-49ef-c95c-20c73b51b69f\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"03932453-5baf-46d3-c6ef-bb9ecec54d95\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"9c821914-09de-4a3c-ca8d-c39cc16325f1\"},\"selection_glyph\":null,\"id\":\"cbaf8735-abe9-4a47-cab9-23b3a0c822ee\",\"tags\":[]}},{\"id\":\"51ec30dd-eb8a-48b3-c891-348b11859120\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"03932453-5baf-46d3-c6ef-bb9ecec54d95\"}}],\"id\":\"51ec30dd-eb8a-48b3-c891-348b11859120\",\"tags\":[],\"doc\":null}},{\"id\":\"cdb405e4-ae13-4a45-cadd-ae2c778f2ea8\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"03932453-5baf-46d3-c6ef-bb9ecec54d95\"}}],\"id\":\"cdb405e4-ae13-4a45-cadd-ae2c778f2ea8\",\"tags\":[],\"doc\":null}},{\"id\":\"13cc3acd-158a-4868-c8ad-6dfb981c6d8f\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"13cc3acd-158a-4868-c8ad-6dfb981c6d8f\",\"geometries\":[],\"doc\":null}},{\"id\":\"c673d072-e1b6-4e1b-ced1-3d1d7ebf2559\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"c673d072-e1b6-4e1b-ced1-3d1d7ebf2559\",\"tags\":[],\"doc\":null}},{\"id\":\"866ab061-0ef5-4f91-cfe2-ed49bda5c25f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"866ab061-0ef5-4f91-cfe2-ed49bda5c25f\",\"tags\":[],\"doc\":null}},{\"id\":\"916bc915-bb1a-4de5-cdb7-522ec3812e50\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"c673d072-e1b6-4e1b-ced1-3d1d7ebf2559\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"866ab061-0ef5-4f91-cfe2-ed49bda5c25f\"},\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"916bc915-bb1a-4de5-cdb7-522ec3812e50\",\"doc\":null,\"tags\":[]}},{\"id\":\"c46cc193-bf3e-414d-c147-ae95cf42ad56\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"866ab061-0ef5-4f91-cfe2-ed49bda5c25f\"},\"id\":\"c46cc193-bf3e-414d-c147-ae95cf42ad56\",\"doc\":null,\"tags\":[]}},{\"id\":\"91480b3c-08f2-4228-c238-06d07201c6f6\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"91480b3c-08f2-4228-c238-06d07201c6f6\",\"tags\":[],\"doc\":null}},{\"id\":\"b1cf19d2-db59-4252-c2b8-fd3e61d23053\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"b1cf19d2-db59-4252-c2b8-fd3e61d23053\",\"tags\":[],\"doc\":null}},{\"id\":\"9baf0dbf-430b-4908-c9f1-d71a9de2fd2c\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"91480b3c-08f2-4228-c238-06d07201c6f6\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"b1cf19d2-db59-4252-c2b8-fd3e61d23053\"},\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"9baf0dbf-430b-4908-c9f1-d71a9de2fd2c\",\"doc\":null,\"tags\":[]}},{\"id\":\"75b4b478-a767-460b-c63e-dc90fda07add\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"b1cf19d2-db59-4252-c2b8-fd3e61d23053\"},\"id\":\"75b4b478-a767-460b-c63e-dc90fda07add\",\"doc\":null,\"tags\":[]}},{\"id\":\"1ef6129d-0d6c-4677-c6a8-4afc47bdeeec\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"1ef6129d-0d6c-4677-c6a8-4afc47bdeeec\",\"doc\":null,\"tags\":[]}},{\"id\":\"13011467-3884-4968-c9bb-1411f02da8af\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"13011467-3884-4968-c9bb-1411f02da8af\",\"doc\":null,\"tags\":[]}},{\"id\":\"532ff06d-a5a1-4e0e-cedf-208370ba532a\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"532ff06d-a5a1-4e0e-cedf-208370ba532a\",\"tags\":[],\"doc\":null}},{\"id\":\"9d4d113d-7a10-4075-c0d4-d2ece70c7edd\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"9d4d113d-7a10-4075-c0d4-d2ece70c7edd\",\"tags\":[],\"doc\":null}},{\"id\":\"457bbe64-e7da-4450-c465-b36aa36524d2\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"457bbe64-e7da-4450-c465-b36aa36524d2\",\"tags\":[],\"doc\":null}},{\"id\":\"d31ab036-f2f1-4a02-caaf-fc896055be83\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d31ab036-f2f1-4a02-caaf-fc896055be83\",\"tags\":[],\"doc\":null}},{\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"51ec30dd-eb8a-48b3-c891-348b11859120\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"13cc3acd-158a-4868-c8ad-6dfb981c6d8f\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"916bc915-bb1a-4de5-cdb7-522ec3812e50\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"cbaf8735-abe9-4a47-cab9-23b3a0c822ee\"},{\"type\":\"LinearAxis\",\"id\":\"916bc915-bb1a-4de5-cdb7-522ec3812e50\"},{\"type\":\"Grid\",\"id\":\"c46cc193-bf3e-414d-c147-ae95cf42ad56\"},{\"type\":\"LinearAxis\",\"id\":\"9baf0dbf-430b-4908-c9f1-d71a9de2fd2c\"},{\"type\":\"Grid\",\"id\":\"75b4b478-a767-460b-c63e-dc90fda07add\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"1ef6129d-0d6c-4677-c6a8-4afc47bdeeec\"},{\"type\":\"WheelZoomTool\",\"id\":\"13011467-3884-4968-c9bb-1411f02da8af\"},{\"type\":\"BoxZoomTool\",\"id\":\"532ff06d-a5a1-4e0e-cedf-208370ba532a\"},{\"type\":\"PreviewSaveTool\",\"id\":\"9d4d113d-7a10-4075-c0d4-d2ece70c7edd\"},{\"type\":\"ResizeTool\",\"id\":\"457bbe64-e7da-4450-c465-b36aa36524d2\"},{\"type\":\"ResetTool\",\"id\":\"d31ab036-f2f1-4a02-caaf-fc896055be83\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 9\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"9baf0dbf-430b-4908-c9f1-d71a9de2fd2c\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"cdb405e4-ae13-4a45-cadd-ae2c778f2ea8\"},\"id\":\"a8dc7672-83d7-4d11-cd89-0640118c11e5\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#c5d46025-c246-442d-c4dc-f4899baf9306\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#c5d46025-c246-442d-c4dc-f4899baf9306\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"c863014b-61d9-45bd-c516-1243d0eb3029\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"3fd18432-8ab0-46fb-c64b-f5395079e4a9\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '3fd18432-8ab0-46fb-c64b-f5395079e4a9'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"df91e469-81e5-4abc-ca87-d1a8c9b622be\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"964de5d8-d745-4983-c947-14b21547e468\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3022,409,383,316,337,219,127,108,54,13,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"964de5d8-d745-4983-c947-14b21547e468\",\"doc\":null,\"tags\":[]}},{\"id\":\"529137d8-41c4-4cdc-cc42-8f6321e6e045\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"529137d8-41c4-4cdc-cc42-8f6321e6e045\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"8cdc222b-d938-4279-c2de-cbd7088db060\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"8cdc222b-d938-4279-c2de-cbd7088db060\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"a27edf9f-f0fc-4e30-cefe-2fb4f5b757b9\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"8cdc222b-d938-4279-c2de-cbd7088db060\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"964de5d8-d745-4983-c947-14b21547e468\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"529137d8-41c4-4cdc-cc42-8f6321e6e045\"},\"selection_glyph\":null,\"id\":\"a27edf9f-f0fc-4e30-cefe-2fb4f5b757b9\",\"tags\":[]}},{\"id\":\"2c3230a2-fd04-4f48-cf50-3e345a1c1264\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"964de5d8-d745-4983-c947-14b21547e468\"}}],\"id\":\"2c3230a2-fd04-4f48-cf50-3e345a1c1264\",\"tags\":[],\"doc\":null}},{\"id\":\"de28fe0c-c80a-4ea4-ce3e-94746ce63170\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"964de5d8-d745-4983-c947-14b21547e468\"}}],\"id\":\"de28fe0c-c80a-4ea4-ce3e-94746ce63170\",\"tags\":[],\"doc\":null}},{\"id\":\"9e87cb9f-442a-488f-c8ee-96ee4240fcc6\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"9e87cb9f-442a-488f-c8ee-96ee4240fcc6\",\"geometries\":[],\"doc\":null}},{\"id\":\"4d57ce83-dd1b-4b51-cb2e-571f75a4a82b\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"4d57ce83-dd1b-4b51-cb2e-571f75a4a82b\",\"tags\":[],\"doc\":null}},{\"id\":\"2997ad37-2878-40b3-c0ab-b80c36b5c077\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"2997ad37-2878-40b3-c0ab-b80c36b5c077\",\"tags\":[],\"doc\":null}},{\"id\":\"f895015b-32bd-45e8-c5c6-e240055b3519\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"4d57ce83-dd1b-4b51-cb2e-571f75a4a82b\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2997ad37-2878-40b3-c0ab-b80c36b5c077\"},\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"f895015b-32bd-45e8-c5c6-e240055b3519\",\"doc\":null,\"tags\":[]}},{\"id\":\"e4cc8d72-fed9-49e6-c910-32773e676bd8\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2997ad37-2878-40b3-c0ab-b80c36b5c077\"},\"id\":\"e4cc8d72-fed9-49e6-c910-32773e676bd8\",\"doc\":null,\"tags\":[]}},{\"id\":\"81fee176-74fe-4baf-cb64-d759a57a26cd\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"81fee176-74fe-4baf-cb64-d759a57a26cd\",\"tags\":[],\"doc\":null}},{\"id\":\"44b249a6-fcd5-4c74-ccb1-3919a6a77a5f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"44b249a6-fcd5-4c74-ccb1-3919a6a77a5f\",\"tags\":[],\"doc\":null}},{\"id\":\"75199706-a52d-4516-c5f7-54e4115e9848\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"81fee176-74fe-4baf-cb64-d759a57a26cd\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"44b249a6-fcd5-4c74-ccb1-3919a6a77a5f\"},\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"75199706-a52d-4516-c5f7-54e4115e9848\",\"doc\":null,\"tags\":[]}},{\"id\":\"afccc572-0606-4a01-ca54-48040d1cac2b\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"44b249a6-fcd5-4c74-ccb1-3919a6a77a5f\"},\"id\":\"afccc572-0606-4a01-ca54-48040d1cac2b\",\"doc\":null,\"tags\":[]}},{\"id\":\"f628153a-8fa6-4fd5-cf38-4565111b3631\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"f628153a-8fa6-4fd5-cf38-4565111b3631\",\"doc\":null,\"tags\":[]}},{\"id\":\"31734463-131c-4fc2-cfa9-c2afd07301f6\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"31734463-131c-4fc2-cfa9-c2afd07301f6\",\"doc\":null,\"tags\":[]}},{\"id\":\"d1e6ecec-50b9-4cc6-cc61-2ae76c6408fd\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d1e6ecec-50b9-4cc6-cc61-2ae76c6408fd\",\"tags\":[],\"doc\":null}},{\"id\":\"c408be76-7a6b-4d6b-cdad-6fa70d34a758\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c408be76-7a6b-4d6b-cdad-6fa70d34a758\",\"tags\":[],\"doc\":null}},{\"id\":\"c23fb708-f889-4221-c2ca-4e2732e1094c\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c23fb708-f889-4221-c2ca-4e2732e1094c\",\"tags\":[],\"doc\":null}},{\"id\":\"7c269d03-98c3-4771-c72a-d50340aefa8d\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"7c269d03-98c3-4771-c72a-d50340aefa8d\",\"tags\":[],\"doc\":null}},{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"2c3230a2-fd04-4f48-cf50-3e345a1c1264\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"9e87cb9f-442a-488f-c8ee-96ee4240fcc6\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"f895015b-32bd-45e8-c5c6-e240055b3519\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"a27edf9f-f0fc-4e30-cefe-2fb4f5b757b9\"},{\"type\":\"LinearAxis\",\"id\":\"f895015b-32bd-45e8-c5c6-e240055b3519\"},{\"type\":\"Grid\",\"id\":\"e4cc8d72-fed9-49e6-c910-32773e676bd8\"},{\"type\":\"LinearAxis\",\"id\":\"75199706-a52d-4516-c5f7-54e4115e9848\"},{\"type\":\"Grid\",\"id\":\"afccc572-0606-4a01-ca54-48040d1cac2b\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"f628153a-8fa6-4fd5-cf38-4565111b3631\"},{\"type\":\"WheelZoomTool\",\"id\":\"31734463-131c-4fc2-cfa9-c2afd07301f6\"},{\"type\":\"BoxZoomTool\",\"id\":\"d1e6ecec-50b9-4cc6-cc61-2ae76c6408fd\"},{\"type\":\"PreviewSaveTool\",\"id\":\"c408be76-7a6b-4d6b-cdad-6fa70d34a758\"},{\"type\":\"ResizeTool\",\"id\":\"c23fb708-f889-4221-c2ca-4e2732e1094c\"},{\"type\":\"ResetTool\",\"id\":\"7c269d03-98c3-4771-c72a-d50340aefa8d\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"75199706-a52d-4516-c5f7-54e4115e9848\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"de28fe0c-c80a-4ea4-ce3e-94746ce63170\"},\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"df91e469-81e5-4abc-ca87-d1a8c9b622be\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"964de5d8-d745-4983-c947-14b21547e468\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3022,409,383,316,337,219,127,108,54,13,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"964de5d8-d745-4983-c947-14b21547e468\",\"doc\":null,\"tags\":[]}},{\"id\":\"529137d8-41c4-4cdc-cc42-8f6321e6e045\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"529137d8-41c4-4cdc-cc42-8f6321e6e045\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"8cdc222b-d938-4279-c2de-cbd7088db060\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"8cdc222b-d938-4279-c2de-cbd7088db060\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"a27edf9f-f0fc-4e30-cefe-2fb4f5b757b9\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"8cdc222b-d938-4279-c2de-cbd7088db060\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"964de5d8-d745-4983-c947-14b21547e468\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"529137d8-41c4-4cdc-cc42-8f6321e6e045\"},\"selection_glyph\":null,\"id\":\"a27edf9f-f0fc-4e30-cefe-2fb4f5b757b9\",\"tags\":[]}},{\"id\":\"2c3230a2-fd04-4f48-cf50-3e345a1c1264\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"964de5d8-d745-4983-c947-14b21547e468\"}}],\"id\":\"2c3230a2-fd04-4f48-cf50-3e345a1c1264\",\"tags\":[],\"doc\":null}},{\"id\":\"de28fe0c-c80a-4ea4-ce3e-94746ce63170\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"964de5d8-d745-4983-c947-14b21547e468\"}}],\"id\":\"de28fe0c-c80a-4ea4-ce3e-94746ce63170\",\"tags\":[],\"doc\":null}},{\"id\":\"9e87cb9f-442a-488f-c8ee-96ee4240fcc6\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"9e87cb9f-442a-488f-c8ee-96ee4240fcc6\",\"geometries\":[],\"doc\":null}},{\"id\":\"4d57ce83-dd1b-4b51-cb2e-571f75a4a82b\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"4d57ce83-dd1b-4b51-cb2e-571f75a4a82b\",\"tags\":[],\"doc\":null}},{\"id\":\"2997ad37-2878-40b3-c0ab-b80c36b5c077\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"2997ad37-2878-40b3-c0ab-b80c36b5c077\",\"tags\":[],\"doc\":null}},{\"id\":\"f895015b-32bd-45e8-c5c6-e240055b3519\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"4d57ce83-dd1b-4b51-cb2e-571f75a4a82b\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2997ad37-2878-40b3-c0ab-b80c36b5c077\"},\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"f895015b-32bd-45e8-c5c6-e240055b3519\",\"doc\":null,\"tags\":[]}},{\"id\":\"e4cc8d72-fed9-49e6-c910-32773e676bd8\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"2997ad37-2878-40b3-c0ab-b80c36b5c077\"},\"id\":\"e4cc8d72-fed9-49e6-c910-32773e676bd8\",\"doc\":null,\"tags\":[]}},{\"id\":\"81fee176-74fe-4baf-cb64-d759a57a26cd\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"81fee176-74fe-4baf-cb64-d759a57a26cd\",\"tags\":[],\"doc\":null}},{\"id\":\"44b249a6-fcd5-4c74-ccb1-3919a6a77a5f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"44b249a6-fcd5-4c74-ccb1-3919a6a77a5f\",\"tags\":[],\"doc\":null}},{\"id\":\"75199706-a52d-4516-c5f7-54e4115e9848\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"81fee176-74fe-4baf-cb64-d759a57a26cd\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"44b249a6-fcd5-4c74-ccb1-3919a6a77a5f\"},\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"75199706-a52d-4516-c5f7-54e4115e9848\",\"doc\":null,\"tags\":[]}},{\"id\":\"afccc572-0606-4a01-ca54-48040d1cac2b\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"44b249a6-fcd5-4c74-ccb1-3919a6a77a5f\"},\"id\":\"afccc572-0606-4a01-ca54-48040d1cac2b\",\"doc\":null,\"tags\":[]}},{\"id\":\"f628153a-8fa6-4fd5-cf38-4565111b3631\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"f628153a-8fa6-4fd5-cf38-4565111b3631\",\"doc\":null,\"tags\":[]}},{\"id\":\"31734463-131c-4fc2-cfa9-c2afd07301f6\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"31734463-131c-4fc2-cfa9-c2afd07301f6\",\"doc\":null,\"tags\":[]}},{\"id\":\"d1e6ecec-50b9-4cc6-cc61-2ae76c6408fd\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"d1e6ecec-50b9-4cc6-cc61-2ae76c6408fd\",\"tags\":[],\"doc\":null}},{\"id\":\"c408be76-7a6b-4d6b-cdad-6fa70d34a758\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c408be76-7a6b-4d6b-cdad-6fa70d34a758\",\"tags\":[],\"doc\":null}},{\"id\":\"c23fb708-f889-4221-c2ca-4e2732e1094c\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"c23fb708-f889-4221-c2ca-4e2732e1094c\",\"tags\":[],\"doc\":null}},{\"id\":\"7c269d03-98c3-4771-c72a-d50340aefa8d\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"7c269d03-98c3-4771-c72a-d50340aefa8d\",\"tags\":[],\"doc\":null}},{\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"2c3230a2-fd04-4f48-cf50-3e345a1c1264\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"9e87cb9f-442a-488f-c8ee-96ee4240fcc6\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"f895015b-32bd-45e8-c5c6-e240055b3519\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"a27edf9f-f0fc-4e30-cefe-2fb4f5b757b9\"},{\"type\":\"LinearAxis\",\"id\":\"f895015b-32bd-45e8-c5c6-e240055b3519\"},{\"type\":\"Grid\",\"id\":\"e4cc8d72-fed9-49e6-c910-32773e676bd8\"},{\"type\":\"LinearAxis\",\"id\":\"75199706-a52d-4516-c5f7-54e4115e9848\"},{\"type\":\"Grid\",\"id\":\"afccc572-0606-4a01-ca54-48040d1cac2b\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"f628153a-8fa6-4fd5-cf38-4565111b3631\"},{\"type\":\"WheelZoomTool\",\"id\":\"31734463-131c-4fc2-cfa9-c2afd07301f6\"},{\"type\":\"BoxZoomTool\",\"id\":\"d1e6ecec-50b9-4cc6-cc61-2ae76c6408fd\"},{\"type\":\"PreviewSaveTool\",\"id\":\"c408be76-7a6b-4d6b-cdad-6fa70d34a758\"},{\"type\":\"ResizeTool\",\"id\":\"c23fb708-f889-4221-c2ca-4e2732e1094c\"},{\"type\":\"ResetTool\",\"id\":\"7c269d03-98c3-4771-c72a-d50340aefa8d\"}],\"doc\":null,\"right\":[],\"title\":\"Untitled Plot\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"75199706-a52d-4516-c5f7-54e4115e9848\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"de28fe0c-c80a-4ea4-ce3e-94746ce63170\"},\"id\":\"df91e469-81e5-4abc-ca87-d1a8c9b622be\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"3fd18432-8ab0-46fb-c64b-f5395079e4a9\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"3fd18432-8ab0-46fb-c64b-f5395079e4a9\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '3fd18432-8ab0-46fb-c64b-f5395079e4a9'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"f4489a9c-afbf-4979-c945-f604e447f979\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"252d03c1-c9bc-46fe-c6f4-7c3ac38bdd5c\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3022,409,383,316,337,219,127,108,54,13,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"252d03c1-c9bc-46fe-c6f4-7c3ac38bdd5c\",\"doc\":null,\"tags\":[]}},{\"id\":\"be4f4f95-b527-4d8f-cde9-2e02b81c4ed8\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"be4f4f95-b527-4d8f-cde9-2e02b81c4ed8\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"6363df15-5be0-47c0-c7bc-a46d3ea0f0c3\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"6363df15-5be0-47c0-c7bc-a46d3ea0f0c3\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"edcfa5d2-f215-4080-c0fd-ba38f1562444\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"6363df15-5be0-47c0-c7bc-a46d3ea0f0c3\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"252d03c1-c9bc-46fe-c6f4-7c3ac38bdd5c\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"be4f4f95-b527-4d8f-cde9-2e02b81c4ed8\"},\"selection_glyph\":null,\"id\":\"edcfa5d2-f215-4080-c0fd-ba38f1562444\",\"tags\":[]}},{\"id\":\"04a9d657-dd4c-4871-c850-32ad01f8fc6c\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"252d03c1-c9bc-46fe-c6f4-7c3ac38bdd5c\"}}],\"id\":\"04a9d657-dd4c-4871-c850-32ad01f8fc6c\",\"tags\":[],\"doc\":null}},{\"id\":\"ba512549-6d91-45cf-c599-f213c1ba95f4\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"252d03c1-c9bc-46fe-c6f4-7c3ac38bdd5c\"}}],\"id\":\"ba512549-6d91-45cf-c599-f213c1ba95f4\",\"tags\":[],\"doc\":null}},{\"id\":\"caa9fda9-1ce0-4222-c2dc-313f1e170fed\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"caa9fda9-1ce0-4222-c2dc-313f1e170fed\",\"geometries\":[],\"doc\":null}},{\"id\":\"07261531-7a95-4c14-cc9d-8729a92a5062\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"07261531-7a95-4c14-cc9d-8729a92a5062\",\"tags\":[],\"doc\":null}},{\"id\":\"f6eaf7e8-4503-4290-c246-81c7887b8ab1\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"f6eaf7e8-4503-4290-c246-81c7887b8ab1\",\"tags\":[],\"doc\":null}},{\"id\":\"ec1bbe9f-750b-445b-c466-5c149f00a154\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"07261531-7a95-4c14-cc9d-8729a92a5062\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f6eaf7e8-4503-4290-c246-81c7887b8ab1\"},\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"ec1bbe9f-750b-445b-c466-5c149f00a154\",\"doc\":null,\"tags\":[]}},{\"id\":\"b234ceb4-879a-4259-c21f-a3db6c7bfcab\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f6eaf7e8-4503-4290-c246-81c7887b8ab1\"},\"id\":\"b234ceb4-879a-4259-c21f-a3db6c7bfcab\",\"doc\":null,\"tags\":[]}},{\"id\":\"7a5f8369-578c-4e6b-ce14-4e1b6ec6751c\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"7a5f8369-578c-4e6b-ce14-4e1b6ec6751c\",\"tags\":[],\"doc\":null}},{\"id\":\"e89fa920-e952-4883-c8b8-e52d27c19141\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"e89fa920-e952-4883-c8b8-e52d27c19141\",\"tags\":[],\"doc\":null}},{\"id\":\"2bd35c9f-27df-4cc3-ccab-859c6ffcfbdc\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"7a5f8369-578c-4e6b-ce14-4e1b6ec6751c\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e89fa920-e952-4883-c8b8-e52d27c19141\"},\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"2bd35c9f-27df-4cc3-ccab-859c6ffcfbdc\",\"doc\":null,\"tags\":[]}},{\"id\":\"17cb3292-5c2f-472a-c73a-76279f625af4\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e89fa920-e952-4883-c8b8-e52d27c19141\"},\"id\":\"17cb3292-5c2f-472a-c73a-76279f625af4\",\"doc\":null,\"tags\":[]}},{\"id\":\"5d1c3eca-dc5b-46af-c6fd-b4e7c8dbbaf2\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"5d1c3eca-dc5b-46af-c6fd-b4e7c8dbbaf2\",\"doc\":null,\"tags\":[]}},{\"id\":\"a4d1d990-025d-4338-c3d1-e733e89f52e3\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"a4d1d990-025d-4338-c3d1-e733e89f52e3\",\"doc\":null,\"tags\":[]}},{\"id\":\"bddc36a8-0f8b-455c-c5fa-3524bfe5a634\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"bddc36a8-0f8b-455c-c5fa-3524bfe5a634\",\"tags\":[],\"doc\":null}},{\"id\":\"bc29ef9b-2f2d-4b2f-cb53-04cf6e1c59e6\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"bc29ef9b-2f2d-4b2f-cb53-04cf6e1c59e6\",\"tags\":[],\"doc\":null}},{\"id\":\"70c21479-4ce1-4a1e-ca58-0bd59aa88a22\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"70c21479-4ce1-4a1e-ca58-0bd59aa88a22\",\"tags\":[],\"doc\":null}},{\"id\":\"5e23918a-9e6c-4e81-ce31-f47d3a8f1c8c\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5e23918a-9e6c-4e81-ce31-f47d3a8f1c8c\",\"tags\":[],\"doc\":null}},{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"04a9d657-dd4c-4871-c850-32ad01f8fc6c\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"caa9fda9-1ce0-4222-c2dc-313f1e170fed\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"ec1bbe9f-750b-445b-c466-5c149f00a154\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"edcfa5d2-f215-4080-c0fd-ba38f1562444\"},{\"type\":\"LinearAxis\",\"id\":\"ec1bbe9f-750b-445b-c466-5c149f00a154\"},{\"type\":\"Grid\",\"id\":\"b234ceb4-879a-4259-c21f-a3db6c7bfcab\"},{\"type\":\"LinearAxis\",\"id\":\"2bd35c9f-27df-4cc3-ccab-859c6ffcfbdc\"},{\"type\":\"Grid\",\"id\":\"17cb3292-5c2f-472a-c73a-76279f625af4\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"5d1c3eca-dc5b-46af-c6fd-b4e7c8dbbaf2\"},{\"type\":\"WheelZoomTool\",\"id\":\"a4d1d990-025d-4338-c3d1-e733e89f52e3\"},{\"type\":\"BoxZoomTool\",\"id\":\"bddc36a8-0f8b-455c-c5fa-3524bfe5a634\"},{\"type\":\"PreviewSaveTool\",\"id\":\"bc29ef9b-2f2d-4b2f-cb53-04cf6e1c59e6\"},{\"type\":\"ResizeTool\",\"id\":\"70c21479-4ce1-4a1e-ca58-0bd59aa88a22\"},{\"type\":\"ResetTool\",\"id\":\"5e23918a-9e6c-4e81-ce31-f47d3a8f1c8c\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 10\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"2bd35c9f-27df-4cc3-ccab-859c6ffcfbdc\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"ba512549-6d91-45cf-c599-f213c1ba95f4\"},\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"f4489a9c-afbf-4979-c945-f604e447f979\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"252d03c1-c9bc-46fe-c6f4-7c3ac38bdd5c\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3022,409,383,316,337,219,127,108,54,13,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"252d03c1-c9bc-46fe-c6f4-7c3ac38bdd5c\",\"doc\":null,\"tags\":[]}},{\"id\":\"be4f4f95-b527-4d8f-cde9-2e02b81c4ed8\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"be4f4f95-b527-4d8f-cde9-2e02b81c4ed8\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"6363df15-5be0-47c0-c7bc-a46d3ea0f0c3\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"6363df15-5be0-47c0-c7bc-a46d3ea0f0c3\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"edcfa5d2-f215-4080-c0fd-ba38f1562444\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"6363df15-5be0-47c0-c7bc-a46d3ea0f0c3\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"252d03c1-c9bc-46fe-c6f4-7c3ac38bdd5c\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"be4f4f95-b527-4d8f-cde9-2e02b81c4ed8\"},\"selection_glyph\":null,\"id\":\"edcfa5d2-f215-4080-c0fd-ba38f1562444\",\"tags\":[]}},{\"id\":\"04a9d657-dd4c-4871-c850-32ad01f8fc6c\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"252d03c1-c9bc-46fe-c6f4-7c3ac38bdd5c\"}}],\"id\":\"04a9d657-dd4c-4871-c850-32ad01f8fc6c\",\"tags\":[],\"doc\":null}},{\"id\":\"ba512549-6d91-45cf-c599-f213c1ba95f4\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"252d03c1-c9bc-46fe-c6f4-7c3ac38bdd5c\"}}],\"id\":\"ba512549-6d91-45cf-c599-f213c1ba95f4\",\"tags\":[],\"doc\":null}},{\"id\":\"caa9fda9-1ce0-4222-c2dc-313f1e170fed\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"caa9fda9-1ce0-4222-c2dc-313f1e170fed\",\"geometries\":[],\"doc\":null}},{\"id\":\"07261531-7a95-4c14-cc9d-8729a92a5062\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"07261531-7a95-4c14-cc9d-8729a92a5062\",\"tags\":[],\"doc\":null}},{\"id\":\"f6eaf7e8-4503-4290-c246-81c7887b8ab1\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"f6eaf7e8-4503-4290-c246-81c7887b8ab1\",\"tags\":[],\"doc\":null}},{\"id\":\"ec1bbe9f-750b-445b-c466-5c149f00a154\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"07261531-7a95-4c14-cc9d-8729a92a5062\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f6eaf7e8-4503-4290-c246-81c7887b8ab1\"},\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"ec1bbe9f-750b-445b-c466-5c149f00a154\",\"doc\":null,\"tags\":[]}},{\"id\":\"b234ceb4-879a-4259-c21f-a3db6c7bfcab\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"f6eaf7e8-4503-4290-c246-81c7887b8ab1\"},\"id\":\"b234ceb4-879a-4259-c21f-a3db6c7bfcab\",\"doc\":null,\"tags\":[]}},{\"id\":\"7a5f8369-578c-4e6b-ce14-4e1b6ec6751c\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"7a5f8369-578c-4e6b-ce14-4e1b6ec6751c\",\"tags\":[],\"doc\":null}},{\"id\":\"e89fa920-e952-4883-c8b8-e52d27c19141\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"e89fa920-e952-4883-c8b8-e52d27c19141\",\"tags\":[],\"doc\":null}},{\"id\":\"2bd35c9f-27df-4cc3-ccab-859c6ffcfbdc\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"7a5f8369-578c-4e6b-ce14-4e1b6ec6751c\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e89fa920-e952-4883-c8b8-e52d27c19141\"},\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"2bd35c9f-27df-4cc3-ccab-859c6ffcfbdc\",\"doc\":null,\"tags\":[]}},{\"id\":\"17cb3292-5c2f-472a-c73a-76279f625af4\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e89fa920-e952-4883-c8b8-e52d27c19141\"},\"id\":\"17cb3292-5c2f-472a-c73a-76279f625af4\",\"doc\":null,\"tags\":[]}},{\"id\":\"5d1c3eca-dc5b-46af-c6fd-b4e7c8dbbaf2\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"5d1c3eca-dc5b-46af-c6fd-b4e7c8dbbaf2\",\"doc\":null,\"tags\":[]}},{\"id\":\"a4d1d990-025d-4338-c3d1-e733e89f52e3\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"a4d1d990-025d-4338-c3d1-e733e89f52e3\",\"doc\":null,\"tags\":[]}},{\"id\":\"bddc36a8-0f8b-455c-c5fa-3524bfe5a634\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"bddc36a8-0f8b-455c-c5fa-3524bfe5a634\",\"tags\":[],\"doc\":null}},{\"id\":\"bc29ef9b-2f2d-4b2f-cb53-04cf6e1c59e6\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"bc29ef9b-2f2d-4b2f-cb53-04cf6e1c59e6\",\"tags\":[],\"doc\":null}},{\"id\":\"70c21479-4ce1-4a1e-ca58-0bd59aa88a22\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"70c21479-4ce1-4a1e-ca58-0bd59aa88a22\",\"tags\":[],\"doc\":null}},{\"id\":\"5e23918a-9e6c-4e81-ce31-f47d3a8f1c8c\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"5e23918a-9e6c-4e81-ce31-f47d3a8f1c8c\",\"tags\":[],\"doc\":null}},{\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"04a9d657-dd4c-4871-c850-32ad01f8fc6c\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"caa9fda9-1ce0-4222-c2dc-313f1e170fed\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"ec1bbe9f-750b-445b-c466-5c149f00a154\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"edcfa5d2-f215-4080-c0fd-ba38f1562444\"},{\"type\":\"LinearAxis\",\"id\":\"ec1bbe9f-750b-445b-c466-5c149f00a154\"},{\"type\":\"Grid\",\"id\":\"b234ceb4-879a-4259-c21f-a3db6c7bfcab\"},{\"type\":\"LinearAxis\",\"id\":\"2bd35c9f-27df-4cc3-ccab-859c6ffcfbdc\"},{\"type\":\"Grid\",\"id\":\"17cb3292-5c2f-472a-c73a-76279f625af4\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"5d1c3eca-dc5b-46af-c6fd-b4e7c8dbbaf2\"},{\"type\":\"WheelZoomTool\",\"id\":\"a4d1d990-025d-4338-c3d1-e733e89f52e3\"},{\"type\":\"BoxZoomTool\",\"id\":\"bddc36a8-0f8b-455c-c5fa-3524bfe5a634\"},{\"type\":\"PreviewSaveTool\",\"id\":\"bc29ef9b-2f2d-4b2f-cb53-04cf6e1c59e6\"},{\"type\":\"ResizeTool\",\"id\":\"70c21479-4ce1-4a1e-ca58-0bd59aa88a22\"},{\"type\":\"ResetTool\",\"id\":\"5e23918a-9e6c-4e81-ce31-f47d3a8f1c8c\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 10\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"2bd35c9f-27df-4cc3-ccab-859c6ffcfbdc\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"ba512549-6d91-45cf-c599-f213c1ba95f4\"},\"id\":\"f4489a9c-afbf-4979-c945-f604e447f979\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"970ff8a8-f9f1-4ba2-cb4f-17f035aea1a0\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"3fd18432-8ab0-46fb-c64b-f5395079e4a9\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '3fd18432-8ab0-46fb-c64b-f5395079e4a9'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"99fddbbf-c947-4d98-cd9d-cfde08543b2e\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3022,409,383,316,337,219,127,108,54,13,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"99fddbbf-c947-4d98-cd9d-cfde08543b2e\",\"doc\":null,\"tags\":[]}},{\"id\":\"d9429efd-3f36-4672-c672-a6a995104dcd\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"d9429efd-3f36-4672-c672-a6a995104dcd\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"b56b3649-6fb0-47c7-c7d2-652fc99b2547\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"b56b3649-6fb0-47c7-c7d2-652fc99b2547\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"b03d1662-fdba-4a38-cacf-b7c35dc5bc28\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"b56b3649-6fb0-47c7-c7d2-652fc99b2547\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"99fddbbf-c947-4d98-cd9d-cfde08543b2e\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"d9429efd-3f36-4672-c672-a6a995104dcd\"},\"selection_glyph\":null,\"id\":\"b03d1662-fdba-4a38-cacf-b7c35dc5bc28\",\"tags\":[]}},{\"id\":\"f7da0849-091d-4e82-ce77-0410d8b4e4f1\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"99fddbbf-c947-4d98-cd9d-cfde08543b2e\"}}],\"id\":\"f7da0849-091d-4e82-ce77-0410d8b4e4f1\",\"tags\":[],\"doc\":null}},{\"id\":\"b9ad490e-9ff6-4745-c7e0-67605ce7dc13\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"99fddbbf-c947-4d98-cd9d-cfde08543b2e\"}}],\"id\":\"b9ad490e-9ff6-4745-c7e0-67605ce7dc13\",\"tags\":[],\"doc\":null}},{\"id\":\"af1800bf-195c-4260-c2cd-fad0d22d1d04\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"af1800bf-195c-4260-c2cd-fad0d22d1d04\",\"geometries\":[],\"doc\":null}},{\"id\":\"7055d031-4ed8-4731-c75c-b4a8180ba9bf\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"7055d031-4ed8-4731-c75c-b4a8180ba9bf\",\"tags\":[],\"doc\":null}},{\"id\":\"e006cdfb-80eb-4595-c560-40766cacb47a\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"e006cdfb-80eb-4595-c560-40766cacb47a\",\"tags\":[],\"doc\":null}},{\"id\":\"35ac0dcd-c2d7-47e9-c7c6-aad71a405360\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"7055d031-4ed8-4731-c75c-b4a8180ba9bf\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e006cdfb-80eb-4595-c560-40766cacb47a\"},\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"35ac0dcd-c2d7-47e9-c7c6-aad71a405360\",\"doc\":null,\"tags\":[]}},{\"id\":\"8098eaa1-a02d-4540-c5cf-8211b6989969\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e006cdfb-80eb-4595-c560-40766cacb47a\"},\"id\":\"8098eaa1-a02d-4540-c5cf-8211b6989969\",\"doc\":null,\"tags\":[]}},{\"id\":\"ffc75395-8da6-4811-c885-f20da365339f\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"ffc75395-8da6-4811-c885-f20da365339f\",\"tags\":[],\"doc\":null}},{\"id\":\"e3e101e3-7e9b-462a-c66e-db0231d9963e\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"e3e101e3-7e9b-462a-c66e-db0231d9963e\",\"tags\":[],\"doc\":null}},{\"id\":\"bac18925-f8de-4306-c35a-806b09282122\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"ffc75395-8da6-4811-c885-f20da365339f\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e3e101e3-7e9b-462a-c66e-db0231d9963e\"},\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"bac18925-f8de-4306-c35a-806b09282122\",\"doc\":null,\"tags\":[]}},{\"id\":\"2147c563-08ee-4b19-cbe4-a707e5e3a7ac\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e3e101e3-7e9b-462a-c66e-db0231d9963e\"},\"id\":\"2147c563-08ee-4b19-cbe4-a707e5e3a7ac\",\"doc\":null,\"tags\":[]}},{\"id\":\"20c3458f-c893-472d-c7ea-b516d8f3887c\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"20c3458f-c893-472d-c7ea-b516d8f3887c\",\"doc\":null,\"tags\":[]}},{\"id\":\"e20071fd-22f1-4eeb-cea5-b26656d5198f\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"e20071fd-22f1-4eeb-cea5-b26656d5198f\",\"doc\":null,\"tags\":[]}},{\"id\":\"fbf9de6c-fa39-4c96-cc1b-5c1c04618cb6\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"fbf9de6c-fa39-4c96-cc1b-5c1c04618cb6\",\"tags\":[],\"doc\":null}},{\"id\":\"786e4e56-96a1-4797-c77c-1c5281aec095\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"786e4e56-96a1-4797-c77c-1c5281aec095\",\"tags\":[],\"doc\":null}},{\"id\":\"fba2a041-142b-406c-c0c9-0be5453da036\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"fba2a041-142b-406c-c0c9-0be5453da036\",\"tags\":[],\"doc\":null}},{\"id\":\"f6a70f69-ea55-4bf5-cb0b-73fd74787678\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"f6a70f69-ea55-4bf5-cb0b-73fd74787678\",\"tags\":[],\"doc\":null}},{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"f7da0849-091d-4e82-ce77-0410d8b4e4f1\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"af1800bf-195c-4260-c2cd-fad0d22d1d04\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"35ac0dcd-c2d7-47e9-c7c6-aad71a405360\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"b03d1662-fdba-4a38-cacf-b7c35dc5bc28\"},{\"type\":\"LinearAxis\",\"id\":\"35ac0dcd-c2d7-47e9-c7c6-aad71a405360\"},{\"type\":\"Grid\",\"id\":\"8098eaa1-a02d-4540-c5cf-8211b6989969\"},{\"type\":\"LinearAxis\",\"id\":\"bac18925-f8de-4306-c35a-806b09282122\"},{\"type\":\"Grid\",\"id\":\"2147c563-08ee-4b19-cbe4-a707e5e3a7ac\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"20c3458f-c893-472d-c7ea-b516d8f3887c\"},{\"type\":\"WheelZoomTool\",\"id\":\"e20071fd-22f1-4eeb-cea5-b26656d5198f\"},{\"type\":\"BoxZoomTool\",\"id\":\"fbf9de6c-fa39-4c96-cc1b-5c1c04618cb6\"},{\"type\":\"PreviewSaveTool\",\"id\":\"786e4e56-96a1-4797-c77c-1c5281aec095\"},{\"type\":\"ResizeTool\",\"id\":\"fba2a041-142b-406c-c0c9-0be5453da036\"},{\"type\":\"ResetTool\",\"id\":\"f6a70f69-ea55-4bf5-cb0b-73fd74787678\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 10\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"bac18925-f8de-4306-c35a-806b09282122\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"b9ad490e-9ff6-4745-c7e0-67605ce7dc13\"},\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\"});\n",
" } else {\n",
" load_lib(bokehjs_url, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", new Date())\n",
" var modelid = \"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"99fddbbf-c947-4d98-cd9d-cfde08543b2e\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[3022,409,383,316,337,219,127,108,54,13,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"99fddbbf-c947-4d98-cd9d-cfde08543b2e\",\"doc\":null,\"tags\":[]}},{\"id\":\"d9429efd-3f36-4672-c672-a6a995104dcd\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"d9429efd-3f36-4672-c672-a6a995104dcd\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"b56b3649-6fb0-47c7-c7d2-652fc99b2547\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"b56b3649-6fb0-47c7-c7d2-652fc99b2547\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"b03d1662-fdba-4a38-cacf-b7c35dc5bc28\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"b56b3649-6fb0-47c7-c7d2-652fc99b2547\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"99fddbbf-c947-4d98-cd9d-cfde08543b2e\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"d9429efd-3f36-4672-c672-a6a995104dcd\"},\"selection_glyph\":null,\"id\":\"b03d1662-fdba-4a38-cacf-b7c35dc5bc28\",\"tags\":[]}},{\"id\":\"f7da0849-091d-4e82-ce77-0410d8b4e4f1\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"99fddbbf-c947-4d98-cd9d-cfde08543b2e\"}}],\"id\":\"f7da0849-091d-4e82-ce77-0410d8b4e4f1\",\"tags\":[],\"doc\":null}},{\"id\":\"b9ad490e-9ff6-4745-c7e0-67605ce7dc13\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"99fddbbf-c947-4d98-cd9d-cfde08543b2e\"}}],\"id\":\"b9ad490e-9ff6-4745-c7e0-67605ce7dc13\",\"tags\":[],\"doc\":null}},{\"id\":\"af1800bf-195c-4260-c2cd-fad0d22d1d04\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"af1800bf-195c-4260-c2cd-fad0d22d1d04\",\"geometries\":[],\"doc\":null}},{\"id\":\"7055d031-4ed8-4731-c75c-b4a8180ba9bf\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"7055d031-4ed8-4731-c75c-b4a8180ba9bf\",\"tags\":[],\"doc\":null}},{\"id\":\"e006cdfb-80eb-4595-c560-40766cacb47a\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"e006cdfb-80eb-4595-c560-40766cacb47a\",\"tags\":[],\"doc\":null}},{\"id\":\"35ac0dcd-c2d7-47e9-c7c6-aad71a405360\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"7055d031-4ed8-4731-c75c-b4a8180ba9bf\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e006cdfb-80eb-4595-c560-40766cacb47a\"},\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Value\",\"id\":\"35ac0dcd-c2d7-47e9-c7c6-aad71a405360\",\"doc\":null,\"tags\":[]}},{\"id\":\"8098eaa1-a02d-4540-c5cf-8211b6989969\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e006cdfb-80eb-4595-c560-40766cacb47a\"},\"id\":\"8098eaa1-a02d-4540-c5cf-8211b6989969\",\"doc\":null,\"tags\":[]}},{\"id\":\"ffc75395-8da6-4811-c885-f20da365339f\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"ffc75395-8da6-4811-c885-f20da365339f\",\"tags\":[],\"doc\":null}},{\"id\":\"e3e101e3-7e9b-462a-c66e-db0231d9963e\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"e3e101e3-7e9b-462a-c66e-db0231d9963e\",\"tags\":[],\"doc\":null}},{\"id\":\"bac18925-f8de-4306-c35a-806b09282122\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"ffc75395-8da6-4811-c885-f20da365339f\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e3e101e3-7e9b-462a-c66e-db0231d9963e\"},\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":\"Number\",\"id\":\"bac18925-f8de-4306-c35a-806b09282122\",\"doc\":null,\"tags\":[]}},{\"id\":\"2147c563-08ee-4b19-cbe4-a707e5e3a7ac\",\"type\":\"Grid\",\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"e3e101e3-7e9b-462a-c66e-db0231d9963e\"},\"id\":\"2147c563-08ee-4b19-cbe4-a707e5e3a7ac\",\"doc\":null,\"tags\":[]}},{\"id\":\"20c3458f-c893-472d-c7ea-b516d8f3887c\",\"type\":\"PanTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"20c3458f-c893-472d-c7ea-b516d8f3887c\",\"doc\":null,\"tags\":[]}},{\"id\":\"e20071fd-22f1-4eeb-cea5-b26656d5198f\",\"type\":\"WheelZoomTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"dimensions\":[\"width\",\"height\"],\"id\":\"e20071fd-22f1-4eeb-cea5-b26656d5198f\",\"doc\":null,\"tags\":[]}},{\"id\":\"fbf9de6c-fa39-4c96-cc1b-5c1c04618cb6\",\"type\":\"BoxZoomTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"fbf9de6c-fa39-4c96-cc1b-5c1c04618cb6\",\"tags\":[],\"doc\":null}},{\"id\":\"786e4e56-96a1-4797-c77c-1c5281aec095\",\"type\":\"PreviewSaveTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"786e4e56-96a1-4797-c77c-1c5281aec095\",\"tags\":[],\"doc\":null}},{\"id\":\"fba2a041-142b-406c-c0c9-0be5453da036\",\"type\":\"ResizeTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"fba2a041-142b-406c-c0c9-0be5453da036\",\"tags\":[],\"doc\":null}},{\"id\":\"f6a70f69-ea55-4bf5-cb0b-73fd74787678\",\"type\":\"ResetTool\",\"attributes\":{\"plot\":{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"id\":\"f6a70f69-ea55-4bf5-cb0b-73fd74787678\",\"tags\":[],\"doc\":null}},{\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"type\":\"Plot\",\"attributes\":{\"x_range\":{\"type\":\"DataRange1d\",\"id\":\"f7da0849-091d-4e82-ce77-0410d8b4e4f1\"},\"tool_events\":{\"type\":\"ToolEvents\",\"id\":\"af1800bf-195c-4260-c2cd-fad0d22d1d04\"},\"below\":[{\"type\":\"LinearAxis\",\"id\":\"35ac0dcd-c2d7-47e9-c7c6-aad71a405360\"}],\"renderers\":[{\"type\":\"GlyphRenderer\",\"id\":\"b03d1662-fdba-4a38-cacf-b7c35dc5bc28\"},{\"type\":\"LinearAxis\",\"id\":\"35ac0dcd-c2d7-47e9-c7c6-aad71a405360\"},{\"type\":\"Grid\",\"id\":\"8098eaa1-a02d-4540-c5cf-8211b6989969\"},{\"type\":\"LinearAxis\",\"id\":\"bac18925-f8de-4306-c35a-806b09282122\"},{\"type\":\"Grid\",\"id\":\"2147c563-08ee-4b19-cbe4-a707e5e3a7ac\"}],\"above\":[],\"tools\":[{\"type\":\"PanTool\",\"id\":\"20c3458f-c893-472d-c7ea-b516d8f3887c\"},{\"type\":\"WheelZoomTool\",\"id\":\"e20071fd-22f1-4eeb-cea5-b26656d5198f\"},{\"type\":\"BoxZoomTool\",\"id\":\"fbf9de6c-fa39-4c96-cc1b-5c1c04618cb6\"},{\"type\":\"PreviewSaveTool\",\"id\":\"786e4e56-96a1-4797-c77c-1c5281aec095\"},{\"type\":\"ResizeTool\",\"id\":\"fba2a041-142b-406c-c0c9-0be5453da036\"},{\"type\":\"ResetTool\",\"id\":\"f6a70f69-ea55-4bf5-cb0b-73fd74787678\"}],\"doc\":null,\"right\":[],\"title\":\"Activation histogram: Layer 10\",\"extra_x_ranges\":{},\"left\":[{\"type\":\"LinearAxis\",\"id\":\"bac18925-f8de-4306-c35a-806b09282122\"}],\"y_range\":{\"type\":\"DataRange1d\",\"id\":\"b9ad490e-9ff6-4745-c7e0-67605ce7dc13\"},\"id\":\"59e96a8e-fbd0-4c61-cc41-36c64cd1b7fe\",\"extra_y_ranges\":{},\"tags\":[]}}];\n",
" Bokeh.load_models(all_models);\n",
" var model = Bokeh.Collections(modeltype).get(modelid);\n",
" $(\"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\").html(''); // clear any previous plot in window_id\n",
" var view = new model.default_view({model: model, el: \"#3fd18432-8ab0-46fb-c64b-f5395079e4a9\"});\n",
" });\n",
" }\n",
"});\n",
"</script>\n",
"<div class=\"plotdiv\" id=\"b9418c92-e6fc-4e00-cedc-9ef170f77adb\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"-- Xavier initialization\n",
"for k,v in pairs(model:findModules('nn.Linear')) do\n",
" local n = v.weight:size(1)\n",
" v.weight:uniform(-math.sqrt(3/n),math.sqrt(3/n))\n",
"end\n",
"\n",
"model:forward(x)\n",
"\n",
"-- Plot histogram of activations\n",
"for i = 2, 20, 2 do\n",
" out = model.modules[i].output\n",
" plot = Plot():histogram(out, 100, 0, 1):draw()\n",
" plot:title(('Activation histogram: Layer %d'):format(i/2)):redraw()\n",
" plot:xaxis('Value'):yaxis('Number'):redraw()\n",
"end"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"### Step 3: Use MSR method to initialize the weights. Plot the activation of each ReLU layer."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false,
"scrolled": false
},
"outputs": [
{
"data": {
"text/html": [
"<script type=\"text/javascript\">\n",
"$(function() {\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\"){\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" function load_lib(url, callback){\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading){\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", new Date());\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", new Date());\n",
" window._bokeh_is_loading = true;\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = function(){\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh-0.7.0.min.css\");\n",
" window._bokeh_onload_callbacks.forEach(function(callback){callback()});\n",
" };\n",
" s.onerror = function(){\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
"\n",
" bokehjs_url = \"https://cdn.pydata.org/bokeh-0.7.0.min.js\"\n",
"\n",
" var elt = document.getElementById(\"1a1280f1-9345-4dab-cd73-75b571378a73\");\n",
" if(elt==null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '1a1280f1-9345-4dab-cd73-75b571378a73'\"\n",
" + \"but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" if(typeof(Bokeh) !== \"undefined\") {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" var modelid = \"00bfd2e2-5e1b-4253-c240-c7c9c7ff2ce8\";\n",
" var modeltype = \"Plot\";\n",
" var all_models = [{\"id\":\"05c565dc-093f-4e26-ce8f-75510b139f87\",\"type\":\"ColumnDataSource\",\"attributes\":{\"data\":{\"y1\":[2591,107,67,88,60,86,78,73,84,94,61,56,58,72,9,8,11,3,2,6,2,7,8,4,0,0,2,6,5,2,6,6,3,7,4,5,2,7,4,3,4,3,2,2,2,0,5,0,1,2,2,1,1,1,1,3,2,0,0,1,2,1,0,0,3,2,1,2,1,1,0,2,1,0,1,2,0,1,1,1,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0],\"x0\":[0,0.01010101010101,0.02020202020202,0.03030303030303,0.04040404040404,0.050505050505051,0.060606060606061,0.070707070707071,0.080808080808081,0.090909090909091,0.1010101010101,0.11111111111111,0.12121212121212,0.13131313131313,0.14141414141414,0.15151515151515,0.16161616161616,0.17171717171717,0.18181818181818,0.19191919191919,0.2020202020202,0.21212121212121,0.22222222222222,0.23232323232323,0.24242424242424,0.25252525252525,0.26262626262626,0.27272727272727,0.28282828282828,0.29292929292929,0.3030303030303,0.31313131313131,0.32323232323232,0.33333333333333,0.34343434343434,0.35353535353535,0.36363636363636,0.37373737373737,0.38383838383838,0.39393939393939,0.4040404040404,0.41414141414141,0.42424242424242,0.43434343434343,0.44444444444444,0.45454545454545,0.46464646464646,0.47474747474747,0.48484848484848,0.49494949494949,0.50505050505051,0.51515151515152,0.52525252525253,0.53535353535354,0.54545454545455,0.55555555555556,0.56565656565657,0.57575757575758,0.58585858585859,0.5959595959596,0.60606060606061,0.61616161616162,0.62626262626263,0.63636363636364,0.64646464646465,0.65656565656566,0.66666666666667,0.67676767676768,0.68686868686869,0.6969696969697,0.70707070707071,0.71717171717172,0.72727272727273,0.73737373737374,0.74747474747475,0.75757575757576,0.76767676767677,0.77777777777778,0.78787878787879,0.7979797979798,0.80808080808081,0.81818181818182,0.82828282828283,0.83838383838384,0.84848484848485,0.85858585858586,0.86868686868687,0.87878787878788,0.88888888888889,0.8989898989899,0.90909090909091,0.91919191919192,0.92929292929293,0.93939393939394,0.94949494949495,0.95959595959596,0.96969696969697,0.97979797979798,0.98989898989899,1],\"x1\":[0.01,0.02010101010101,0.03020202020202,0.04030303030303,0.05040404040404,0.060505050505051,0.070606060606061,0.080707070707071,0.090808080808081,0.10090909090909,0.1110101010101,0.12111111111111,0.13121212121212,0.14131313131313,0.15141414141414,0.16151515151515,0.17161616161616,0.18171717171717,0.19181818181818,0.20191919191919,0.2120202020202,0.22212121212121,0.23222222222222,0.24232323232323,0.25242424242424,0.26252525252525,0.27262626262626,0.28272727272727,0.29282828282828,0.30292929292929,0.3130303030303,0.32313131313131,0.33323232323232,0.34333333333333,0.35343434343434,0.36353535353535,0.37363636363636,0.38373737373737,0.39383838383838,0.40393939393939,0.4140404040404,0.42414141414141,0.43424242424242,0.44434343434343,0.45444444444444,0.46454545454545,0.47464646464646,0.48474747474747,0.49484848484848,0.50494949494949,0.51505050505051,0.52515151515152,0.53525252525253,0.54535353535354,0.55545454545455,0.56555555555556,0.57565656565657,0.58575757575758,0.59585858585859,0.6059595959596,0.61606060606061,0.62616161616162,0.63626262626263,0.64636363636364,0.65646464646465,0.66656565656566,0.67666666666667,0.68676767676768,0.69686868686869,0.7069696969697,0.71707070707071,0.72717171717172,0.73727272727273,0.74737373737374,0.75747474747475,0.76757575757576,0.77767676767677,0.78777777777778,0.79787878787879,0.8079797979798,0.81808080808081,0.82818181818182,0.83828282828283,0.84838383838384,0.85848484848485,0.86858585858586,0.87868686868687,0.88878787878788,0.89888888888889,0.9089898989899,0.91909090909091,0.92919191919192,0.93929292929293,0.94939393939394,0.95949494949495,0.96959595959596,0.97969696969697,0.98979797979798,0.99989898989899,1.01],\"y0\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},\"column_names\":[\"y1\",\"x0\",\"x1\",\"y0\"],\"cont_ranges\":{},\"discrete_ranges\":{},\"selected\":[],\"id\":\"05c565dc-093f-4e26-ce8f-75510b139f87\",\"doc\":null,\"tags\":[]}},{\"id\":\"f892b728-56d3-4b21-cb2e-dc8a55a3ff17\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"f892b728-56d3-4b21-cb2e-dc8a55a3ff17\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"5cb527e6-8ee8-44e2-c412-a670de6ec1c3\",\"type\":\"Quad\",\"attributes\":{\"fill_alpha\":{\"units\":\"data\",\"value\":0.7},\"bottom\":{\"units\":\"data\",\"field\":\"y0\"},\"doc\":null,\"right\":{\"units\":\"data\",\"field\":\"x1\"},\"fill_color\":{\"value\":\"red\"},\"top\":{\"units\":\"data\",\"field\":\"y1\"},\"line_color\":{\"value\":\"red\"},\"line_alpha\":{\"units\":\"data\",\"value\":1},\"id\":\"5cb527e6-8ee8-44e2-c412-a670de6ec1c3\",\"left\":{\"units\":\"data\",\"field\":\"x0\"},\"tags\":[]}},{\"id\":\"14b6b789-2ef6-4e91-cee8-89e4208dd193\",\"type\":\"GlyphRenderer\",\"attributes\":{\"name\":null,\"nonselection_glyph\":{\"type\":\"Quad\",\"id\":\"5cb527e6-8ee8-44e2-c412-a670de6ec1c3\"},\"doc\":null,\"server_data_source\":null,\"data_source\":{\"type\":\"ColumnDataSource\",\"id\":\"05c565dc-093f-4e26-ce8f-75510b139f87\"},\"glyph\":{\"type\":\"Quad\",\"id\":\"f892b728-56d3-4b21-cb2e-dc8a55a3ff17\"},\"selection_glyph\":null,\"id\":\"14b6b789-2ef6-4e91-cee8-89e4208dd193\",\"tags\":[]}},{\"id\":\"a89ac8ac-f663-481e-c84f-8995c805ca40\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"x0\",\"x1\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"05c565dc-093f-4e26-ce8f-75510b139f87\"}}],\"id\":\"a89ac8ac-f663-481e-c84f-8995c805ca40\",\"tags\":[],\"doc\":null}},{\"id\":\"f0a80c1d-49fd-4bbc-cbdc-d9194da2a893\",\"type\":\"DataRange1d\",\"attributes\":{\"sources\":[{\"columns\":[\"y1\",\"y0\"],\"source\":{\"type\":\"ColumnDataSource\",\"id\":\"05c565dc-093f-4e26-ce8f-75510b139f87\"}}],\"id\":\"f0a80c1d-49fd-4bbc-cbdc-d9194da2a893\",\"tags\":[],\"doc\":null}},{\"id\":\"c5083ecd-8591-487d-c849-2481b455152b\",\"type\":\"ToolEvents\",\"attributes\":{\"tags\":[],\"id\":\"c5083ecd-8591-487d-c849-2481b455152b\",\"geometries\":[],\"doc\":null}},{\"id\":\"e68dd2f2-4c55-43bc-c3ec-3046d30a1d3d\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"e68dd2f2-4c55-43bc-c3ec-3046d30a1d3d\",\"tags\":[],\"doc\":null}},{\"id\":\"39f2a439-5012-4c52-cca5-d24eae95c4ab\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"39f2a439-5012-4c52-cca5-d24eae95c4ab\",\"tags\":[],\"doc\":null}},{\"id\":\"c3ed202a-2f24-43bf-c37c-3d3647d248d7\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"e68dd2f2-4c55-43bc-c3ec-3046d30a1d3d\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"39f2a439-5012-4c52-cca5-d24eae95c4ab\"},\"plot\":{\"id\":\"00bfd2e2-5e1b-4253-c240-c7c9c7ff2ce8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"axis_label\":null,\"id\":\"c3ed202a-2f24-43bf-c37c-3d3647d248d7\",\"doc\":null,\"tags\":[]}},{\"id\":\"5d814c77-c1f3-4578-c5ae-937f6fd00400\",\"type\":\"Grid\",\"attributes\":{\"dimension\":0,\"plot\":{\"id\":\"00bfd2e2-5e1b-4253-c240-c7c9c7ff2ce8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"39f2a439-5012-4c52-cca5-d24eae95c4ab\"},\"id\":\"5d814c77-c1f3-4578-c5ae-937f6fd00400\",\"doc\":null,\"tags\":[]}},{\"id\":\"9f1f57ca-c242-4e6d-ce83-4beb8aeeb92a\",\"type\":\"BasicTickFormatter\",\"attributes\":{\"id\":\"9f1f57ca-c242-4e6d-ce83-4beb8aeeb92a\",\"tags\":[],\"doc\":null}},{\"id\":\"b460de3f-07d7-4af5-cac5-4a8fe282382f\",\"type\":\"BasicTicker\",\"attributes\":{\"num_minor_ticks\":5,\"id\":\"b460de3f-07d7-4af5-cac5-4a8fe282382f\",\"tags\":[],\"doc\":null}},{\"id\":\"1227d2df-af85-4d7e-cd2c-c19ae7669cc8\",\"type\":\"LinearAxis\",\"attributes\":{\"formatter\":{\"type\":\"BasicTickFormatter\",\"id\":\"9f1f57ca-c242-4e6d-ce83-4beb8aeeb92a\"},\"ticker\":{\"type\":\"BasicTicker\",\"id\":\"b460de3f-07d7-4af5-cac5-4a8fe282382f\"},\"plot\":{\"id\":\"00bfd2e2-5e1b-4253-c240-c7c9c7ff2ce8\",\"type\":\"Plot\",\"subtype\":\"Figure\"},\"
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment