Skip to content

Instantly share code, notes, and snippets.

@rsignell-usgs
Last active July 15, 2018 18:27
Show Gist options
  • Save rsignell-usgs/0fd37ecffae8b7a0b72072a9e917e622 to your computer and use it in GitHub Desktop.
Save rsignell-usgs/0fd37ecffae8b7a0b72072a9e917e622 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Read National Water Model data from NetCDF on FUSE"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"%matplotlib inline\n",
"import xarray as xr\n",
"import pandas as pd\n",
"\n",
"from dask.distributed import Client, progress\n",
"from dask_kubernetes import KubeCluster"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"root = '/s3/noaa-nwm-pds'"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"dates = pd.date_range(start='2018-07-01T00:00', end='2018-07-08T00:00', freq='H')"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"cluster = KubeCluster.from_yaml('/home/jovyan/custom-worker-template.yaml')"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"cluster.scale(25);"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"client = Client(cluster)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table style=\"border: 2px solid white;\">\n",
"<tr>\n",
"<td style=\"vertical-align: top; border: 0px solid white\">\n",
"<h3>Client</h3>\n",
"<ul>\n",
" <li><b>Scheduler: </b>tcp://192.168.18.213:43383\n",
" <li><b>Dashboard: </b><a href='/user/rsignell-usgs/proxy/8787/status' target='_blank'>/user/rsignell-usgs/proxy/8787/status</a>\n",
"</ul>\n",
"</td>\n",
"<td style=\"vertical-align: top; border: 0px solid white\">\n",
"<h3>Cluster</h3>\n",
"<ul>\n",
" <li><b>Workers: </b>24</li>\n",
" <li><b>Cores: </b>48</li>\n",
" <li><b>Memory: </b>144.00 GB</li>\n",
"</ul>\n",
"</td>\n",
"</tr>\n",
"</table>"
],
"text/plain": [
"<Client: scheduler='tcp://192.168.18.213:43383' processes=0 cores=0>"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"client"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"urls = ['{}/nwm.{}/forcing_short_range/nwm.t{}z.short_range.forcing.f001.conus.nc'.format(root,a.strftime('%Y%m%d'),a.strftime('%H')) for a in dates]"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"# /s3/noaa-nwm-pds/nwm.20180615/forcing_short_range/nwm.t00z.short_range.forcing.f001.conus.nc"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 4.27 s, sys: 288 ms, total: 4.56 s\n",
"Wall time: 4.64 s\n"
]
}
],
"source": [
"%%time\n",
"ds = xr.open_mfdataset(urls, concat_dim='time')"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<xarray.Dataset>\n",
"Dimensions: (nv: 2, reference_time: 169, time: 169, x: 4608, y: 3840)\n",
"Coordinates:\n",
" * reference_time (reference_time) datetime64[ns] 2018-07-01 ...\n",
" * x (x) float64 -2.304e+06 -2.303e+06 -2.302e+06 ...\n",
" * y (y) float64 -1.92e+06 -1.919e+06 -1.918e+06 ...\n",
" * time (time) datetime64[ns] 2018-07-01T01:00:00 ...\n",
"Dimensions without coordinates: nv\n",
"Data variables:\n",
" time_bounds (time, nv) datetime64[ns] dask.array<shape=(169, 2), chunksize=(1, 2)>\n",
" ProjectionCoordinateSystem (time) |S1 b'' b'' b'' b'' b'' b'' b'' b'' ...\n",
" T2D (time, y, x) float64 dask.array<shape=(169, 3840, 4608), chunksize=(1, 3840, 4608)>\n",
" LWDOWN (time, y, x) float64 dask.array<shape=(169, 3840, 4608), chunksize=(1, 3840, 4608)>\n",
" Q2D (time, y, x) float64 dask.array<shape=(169, 3840, 4608), chunksize=(1, 3840, 4608)>\n",
" U2D (time, y, x) float64 dask.array<shape=(169, 3840, 4608), chunksize=(1, 3840, 4608)>\n",
" V2D (time, y, x) float64 dask.array<shape=(169, 3840, 4608), chunksize=(1, 3840, 4608)>\n",
" PSFC (time, y, x) float64 dask.array<shape=(169, 3840, 4608), chunksize=(1, 3840, 4608)>\n",
" RAINRATE (time, y, x) float32 dask.array<shape=(169, 3840, 4608), chunksize=(1, 3840, 4608)>\n",
" SWDOWN (time, y, x) float64 dask.array<shape=(169, 3840, 4608), chunksize=(1, 3840, 4608)>\n",
"Attributes:\n",
" model_initialization_time: 2018-07-01_00:00:00\n",
" model_output_valid_time: 2018-07-01_01:00:00"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ds"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"var = 'T2D'"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"23.92326144"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ds[var].nbytes/1.e9"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "381b65dd0f5b4ca8b2882e0dc9348493",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox()"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"mean_var = ds[var].mean(dim='time').persist()\n",
"progress(mean_var)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"isub=2\n",
"mean_var[::isub,::isub].plot.imshow(figsize=(8,6));"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%%time\n",
"ds1d = ds[var][:,2000,2000]\n",
"ds1d.plot()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python [conda root]",
"language": "python",
"name": "conda-root-py"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.5"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"0bbfb6c33b5747fc95568080fb58d1b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_2b99ebb9cd334642b51d20f4bbd50d02",
"style": "IPY_MODEL_ef71a998948c43b3a2ed957c993eb47e",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">57 / 57</div>"
}
},
"0e2e87928d754c78bdf6b2028cbe144a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_69c5fb4eb85f407483c9c1b49703878b",
"max": 1,
"style": "IPY_MODEL_c687f2ba69834e9f8bd8c4179ea7a62c",
"value": 1
}
},
"10ca9838c3d34778b48df5f695d4fdca": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"11141782dc654f75a30f1d33d41fc536": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"13cc5aae80674af697441fb5b2f71a55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"14a77267f32949d6820d455be0510540": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"15124db5b8e8482da7f007a73bd738a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"158e9749d92545ea9d6cca9a4d92faa5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_2be828a174834befb55641ddc1152615",
"style": "IPY_MODEL_3ffcd558aa2c4ff48f0696ce48ea28d1",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">open_dataset</div>"
}
},
"179f67276911418ea7c44bffd8242e79": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e96a9762392d40b5938c47233157e529",
"style": "IPY_MODEL_b51b39e0023c450388688421081fdf3f",
"value": "<div style=\"padding: 0px 10px 5px 10px\"><b>Finished:</b> 2min 0.9s</div>"
}
},
"17ad1776c2c64385a3eda50f20a4e68a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"189e253baece4d7eada826be59314fb6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"1f777a7d5e62488993c022a647f8cf4a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"201086c8ad1e4700b86f65f38c81a90c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_842dcc5c9e1e4811850d78a0b2f77214",
"style": "IPY_MODEL_11141782dc654f75a30f1d33d41fc536",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">169 / 169</div>"
}
},
"20dd893bf0994196a45c11241cfc3243": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_7297ea5227be425f9b288e7cdfbe23c9",
"max": 1,
"style": "IPY_MODEL_a02f3df5bc8c447a92258113c1e62d3a",
"value": 1
}
},
"22190be6a82e4b0d91fe868cc0d1ea5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_5e0a64e73b9d4db3a6195ab2e67cfee1",
"style": "IPY_MODEL_c5fd2fb7a248426bbbf8b65e519636ac",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">169 / 169</div>"
}
},
"23bc196b5e614988815dddbf1306ff6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"23cb6581ae9b4d3686f493ca953ef303": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"254600fd3b274b15a36f43f6b87f30ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c04a86808e1643b592f1077589ac8acb",
"style": "IPY_MODEL_f3daa829b4e14b2a92bd8e440eb0b858",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">open_dataset</div>"
}
},
"26b5f0fb935b4698816b576aabe4faa9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_aed3f0ce454c4265bac39b9be4be048b",
"style": "IPY_MODEL_d982d2d74e004b9b8506e76bc4a47b96",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">mean_combine-partial</div>"
}
},
"2b99ebb9cd334642b51d20f4bbd50d02": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"2be828a174834befb55641ddc1152615": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"2c93004a34634722910478a28c52f588": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"2d108f563e57458bb0794478f82814f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2d3c8612c0ab43009f9b6c3b3f00dfb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_498afd2b4e064a6298f06d6a79918569",
"IPY_MODEL_cf2172bdf6a944d59fce91f064a29db0",
"IPY_MODEL_95f41d11c6dd4809b86fc6999af785a0"
],
"layout": "IPY_MODEL_5ac2af9e7a654a06adc32dcf5f5ad3fa"
}
},
"2e666d811caf4d8a8de3d36153436713": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"2f0678642d984352899c0b418764e29a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"307f5d15609f4b68b7e3231bd90f8111": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"32eb371d632b4a4c8d2267be212ed3fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_c6b28bb3f6b845f0b1baee69ec1ddd84",
"IPY_MODEL_a232fa84e94544a9a95d5f3ea7874001",
"IPY_MODEL_c7758551a64748b5ac82d692f3e830cd"
],
"layout": "IPY_MODEL_740a603ffda34e1b8d20da8f4383e5be"
}
},
"3424b55c338a48b98d658bbc933f6386": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e5d0e195523941af911b0add362a8875",
"style": "IPY_MODEL_8b5c3b4e5db745a78ddd5098a6140c24",
"value": "<div style=\"padding: 0px 10px 5px 10px\"><b>Finished:</b> 1min 52.5s</div>"
}
},
"35480ce3a6594f8591f3e9487fe3f67c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_201086c8ad1e4700b86f65f38c81a90c",
"IPY_MODEL_95b4888f5dc54e92811d5115f5e2d8f2",
"IPY_MODEL_254600fd3b274b15a36f43f6b87f30ae"
],
"layout": "IPY_MODEL_15124db5b8e8482da7f007a73bd738a6"
}
},
"35ded539297f467b8c96d17020720fd5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"3615e83b5ad04faa84cad84036764217": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"381b65dd0f5b4ca8b2882e0dc9348493": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3424b55c338a48b98d658bbc933f6386",
"IPY_MODEL_955d102dc1b644d6bdafec8eef3a60ea"
],
"layout": "IPY_MODEL_3615e83b5ad04faa84cad84036764217"
}
},
"3b049bcdf764408d96f27d1493a25d92": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f8bea9a96370411ea28f7faf028bfc80",
"IPY_MODEL_0e2e87928d754c78bdf6b2028cbe144a",
"IPY_MODEL_26b5f0fb935b4698816b576aabe4faa9"
],
"layout": "IPY_MODEL_2c93004a34634722910478a28c52f588"
}
},
"3eba2e05c54e41698633c812476b73f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3ffcd558aa2c4ff48f0696ce48ea28d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"408cbd6f14f7470aab630af677f582b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"4278ceb2e8f046f4b83948b2ccaf32e8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"4328144ac0a545dda41d2fe347558a64": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"498afd2b4e064a6298f06d6a79918569": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f023aa31a9a44b31a3cb443b77613a32",
"style": "IPY_MODEL_c43c2ef890df4711966dc992a9d608ea",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">1 / 1</div>"
}
},
"5023e5a2c7634aa198cfc6424bc9e296": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"516a011915cf4f1080d15b51565d3175": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"53e9678ebf0c46bcbe7342713b4c014d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"564ed205c4044ea7a80bc51ba1bad54f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_179f67276911418ea7c44bffd8242e79",
"IPY_MODEL_ffacb4ef9a9943c78f347be39718685e"
],
"layout": "IPY_MODEL_ab3b13e3d9ac494b8698d38fb9f7d1c8"
}
},
"59e7ac8c1d0a4102972ba8d2ae4cd01c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"5a295792aa504d7d87d4e7ce0fd161a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5ac2af9e7a654a06adc32dcf5f5ad3fa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"5b18b32cf9b34b80b6d948f2facfb243": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"5e0a64e73b9d4db3a6195ab2e67cfee1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"5eb09a59f1b84409acff3b943c551c6c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c74d641333594ff5be35f6f4fa854c65",
"style": "IPY_MODEL_5023e5a2c7634aa198cfc6424bc9e296",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">mean_agg-aggregate</div>"
}
},
"6005ac1aa0ea4812b2321939faceeb87": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"63479b26f9e84fb18db7137a28212c10": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_671213dcca5644cdab851797ce4ee07f",
"max": 1,
"style": "IPY_MODEL_17ad1776c2c64385a3eda50f20a4e68a",
"value": 1
}
},
"636e543144d746658a849c9a7be51ffc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"671213dcca5644cdab851797ce4ee07f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"677fafb648854981b22cc31e1cc43add": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"69c5fb4eb85f407483c9c1b49703878b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"6b2088fa936846fb9ef6d2c4186890b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6ea80ef3e6c24b47a9eaeb93ba9b32e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d6f8c218f1a34e4e8b5542986e5bd108",
"style": "IPY_MODEL_d2ad1694619f4b05a1e23442fa5d5ce6",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">169 / 169</div>"
}
},
"7141a33783fe4ade8c852fb90b99031a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1f777a7d5e62488993c022a647f8cf4a",
"style": "IPY_MODEL_ade9db9d2e474afbb67a08b4d19f07ec",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">169 / 169</div>"
}
},
"7297ea5227be425f9b288e7cdfbe23c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"740a603ffda34e1b8d20da8f4383e5be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7e8f58e0cecc4659a78e2b3159472c5e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f57ac21981314a1e91f8af78a5a7cb68",
"style": "IPY_MODEL_b212f92f78f74d85b1c7183e1deb0b9a",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">169 / 169</div>"
}
},
"7ea3a98ebcb54755a900fcc525fab535": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7f58bfca269047e7a4ddb2a55fe3d851": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7f9918a7664443b2bbafb201da276291": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7141a33783fe4ade8c852fb90b99031a",
"IPY_MODEL_c97178d41df749119a092c556b08f6ea",
"IPY_MODEL_b4e53d9aeeb3452692bd70e0f64595cd"
],
"layout": "IPY_MODEL_189e253baece4d7eada826be59314fb6"
}
},
"8199fd54d9454183aa52b34af0f8099b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"842dcc5c9e1e4811850d78a0b2f77214": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"861b53b8adda4b0c8f765f39159e2d2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_2f0678642d984352899c0b418764e29a",
"style": "IPY_MODEL_636e543144d746658a849c9a7be51ffc",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">1 / 1</div>"
}
},
"86cc881e489a47009158a05a094dadb4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_307f5d15609f4b68b7e3231bd90f8111",
"style": "IPY_MODEL_23bc196b5e614988815dddbf1306ff6d",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">169 / 169</div>"
}
},
"8a015f595ce04f83bc17d6731bf365e7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"8b12e391ea2b41528b12663517ae64d8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"8b5c3b4e5db745a78ddd5098a6140c24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8d0cea9ea6aa41a9830ac9342ecfed5d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_95403d95378143bb91669ee9adeac830",
"style": "IPY_MODEL_2d108f563e57458bb0794478f82814f0",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">concatenate</div>"
}
},
"8e142755e1624dceb4af1abf35619c7d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_ad71d56c76cd44aa81482bbf49dff2a1",
"max": 1,
"style": "IPY_MODEL_f89e48ccedd04b0998ad8bfb37c01d4a",
"value": 1
}
},
"9090472ce47d4743b12c0ab8f177c72b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_c3883e6bb9124259bf7119d5af166e8b",
"IPY_MODEL_63479b26f9e84fb18db7137a28212c10",
"IPY_MODEL_dda6220be66047ed8ce362ce209b3861"
],
"layout": "IPY_MODEL_e2abb06343194636aac0a745bbf3c45e"
}
},
"91dce0b5269e499c84233fba53c02288": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"9456d0b14e144b31974b17c7f855c387": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_9d87c3abd29b4c88a9012fd1da78d7aa",
"max": 1,
"style": "IPY_MODEL_91dce0b5269e499c84233fba53c02288",
"value": 1
}
},
"95403d95378143bb91669ee9adeac830": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"955d102dc1b644d6bdafec8eef3a60ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c7e19be64db9491e8d23087660d2ccd5",
"IPY_MODEL_a19e8680a94f4e9c81828ad7b75daeae",
"IPY_MODEL_9090472ce47d4743b12c0ab8f177c72b",
"IPY_MODEL_d6b68cbdf88c429ea77541da23b4eb33",
"IPY_MODEL_ac33177d64bf4bd9b10617f14dd3cf5c",
"IPY_MODEL_2d3c8612c0ab43009f9b6c3b3f00dfb3"
],
"layout": "IPY_MODEL_53e9678ebf0c46bcbe7342713b4c014d"
}
},
"95b4888f5dc54e92811d5115f5e2d8f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_6005ac1aa0ea4812b2321939faceeb87",
"max": 1,
"style": "IPY_MODEL_eee9f4eb3cef44fb8bc9cd1e97e1ccbf",
"value": 1
}
},
"95f41d11c6dd4809b86fc6999af785a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_8a015f595ce04f83bc17d6731bf365e7",
"style": "IPY_MODEL_ced564537c77429fa6426a8a3334a8e2",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">mean_agg-aggregate</div>"
}
},
"9a7c00ebe9bc4f828307bb0064486ff2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"9bda1fc664db444ab3c5219be47484ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7e8f58e0cecc4659a78e2b3159472c5e",
"IPY_MODEL_8e142755e1624dceb4af1abf35619c7d",
"IPY_MODEL_d577081d37d243db893f14eec6972501"
],
"layout": "IPY_MODEL_677fafb648854981b22cc31e1cc43add"
}
},
"9d87c3abd29b4c88a9012fd1da78d7aa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a02f3df5bc8c447a92258113c1e62d3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"a19e8680a94f4e9c81828ad7b75daeae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_86cc881e489a47009158a05a094dadb4",
"IPY_MODEL_bc999bc289ca44d2bbd240b8433001be",
"IPY_MODEL_158e9749d92545ea9d6cca9a4d92faa5"
],
"layout": "IPY_MODEL_d109e101217e466aabacde4a8e250e95"
}
},
"a232fa84e94544a9a95d5f3ea7874001": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_e8211f0ecc964650937a6a32eb6f3d99",
"max": 1,
"style": "IPY_MODEL_14a77267f32949d6820d455be0510540",
"value": 1
}
},
"a4e08cbf11e749ef8e6e92b7dbe3a199": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a563b33ab7f548958e4fe06b8d4517c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_861b53b8adda4b0c8f765f39159e2d2c",
"IPY_MODEL_a57d5b9ab2ce420aa4fe7d6e178af577",
"IPY_MODEL_5eb09a59f1b84409acff3b943c551c6c"
],
"layout": "IPY_MODEL_35ded539297f467b8c96d17020720fd5"
}
},
"a57d5b9ab2ce420aa4fe7d6e178af577": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_2e666d811caf4d8a8de3d36153436713",
"max": 1,
"style": "IPY_MODEL_9a7c00ebe9bc4f828307bb0064486ff2",
"value": 1
}
},
"a59d321945c9414a905dd17e2fd80ca3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"a9b1bf99d4e84609be7576e8fcd4e894": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"ab3b13e3d9ac494b8698d38fb9f7d1c8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"ab450bd014ee48fbb483d861337fd572": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_8199fd54d9454183aa52b34af0f8099b",
"max": 1,
"style": "IPY_MODEL_a59d321945c9414a905dd17e2fd80ca3",
"value": 1
}
},
"ac33177d64bf4bd9b10617f14dd3cf5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_0bbfb6c33b5747fc95568080fb58d1b3",
"IPY_MODEL_ab450bd014ee48fbb483d861337fd572",
"IPY_MODEL_e7a057e52201446ab71df278ab5927f6"
],
"layout": "IPY_MODEL_b1d8363377ef4d35aef9dbb1474573d7"
}
},
"ad0f2084f5744f17ab08f51cd2d2b4f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ad71d56c76cd44aa81482bbf49dff2a1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"ade9db9d2e474afbb67a08b4d19f07ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"aeb4ab51dd5042acae05a1a032080e40": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"aed3f0ce454c4265bac39b9be4be048b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"b1d8363377ef4d35aef9dbb1474573d7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"b212f92f78f74d85b1c7183e1deb0b9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b4e53d9aeeb3452692bd70e0f64595cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_516a011915cf4f1080d15b51565d3175",
"style": "IPY_MODEL_e98ec96b9263401f9bb9ad333f7e5bde",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">mean_chunk</div>"
}
},
"b51b39e0023c450388688421081fdf3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bc999bc289ca44d2bbd240b8433001be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_408cbd6f14f7470aab630af677f582b1",
"max": 1,
"style": "IPY_MODEL_d54aa22594cb48d2acfdfc0076a2b0c1",
"value": 1
}
},
"bde5b7e2c52c433b9ca4e14655cd0d4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bed52bbd4971434eb4bf1258617d8038": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_10ca9838c3d34778b48df5f695d4fdca",
"style": "IPY_MODEL_ad0f2084f5744f17ab08f51cd2d2b4f8",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">open_dataset-concatenate</div>"
}
},
"bf5d14de0eb2483eb0efb4d08043d0ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c04a86808e1643b592f1077589ac8acb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c3883e6bb9124259bf7119d5af166e8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a4e08cbf11e749ef8e6e92b7dbe3a199",
"style": "IPY_MODEL_3eba2e05c54e41698633c812476b73f5",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">169 / 169</div>"
}
},
"c43c2ef890df4711966dc992a9d608ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c5fd2fb7a248426bbbf8b65e519636ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c687f2ba69834e9f8bd8c4179ea7a62c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"c6b28bb3f6b845f0b1baee69ec1ddd84": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_23cb6581ae9b4d3686f493ca953ef303",
"style": "IPY_MODEL_5a295792aa504d7d87d4e7ce0fd161a6",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">169 / 169</div>"
}
},
"c74d641333594ff5be35f6f4fa854c65": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c7758551a64748b5ac82d692f3e830cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_4328144ac0a545dda41d2fe347558a64",
"style": "IPY_MODEL_e39fb8b5970b4d3fad461358fc38031b",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">open_dataset-concatenate</div>"
}
},
"c7e19be64db9491e8d23087660d2ccd5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_6ea80ef3e6c24b47a9eaeb93ba9b32e0",
"IPY_MODEL_20dd893bf0994196a45c11241cfc3243",
"IPY_MODEL_bed52bbd4971434eb4bf1258617d8038"
],
"layout": "IPY_MODEL_aeb4ab51dd5042acae05a1a032080e40"
}
},
"c97178d41df749119a092c556b08f6ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_a9b1bf99d4e84609be7576e8fcd4e894",
"max": 1,
"style": "IPY_MODEL_de0899edb9b04d60b9b0622a6a82664c",
"value": 1
}
},
"ced564537c77429fa6426a8a3334a8e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cf2172bdf6a944d59fce91f064a29db0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "FloatProgressModel",
"state": {
"bar_style": "success",
"layout": "IPY_MODEL_4278ceb2e8f046f4b83948b2ccaf32e8",
"max": 1,
"style": "IPY_MODEL_effd293b577042e8814ffb143e0b7017",
"value": 1
}
},
"d109e101217e466aabacde4a8e250e95": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"d2ad1694619f4b05a1e23442fa5d5ce6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d54aa22594cb48d2acfdfc0076a2b0c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"d577081d37d243db893f14eec6972501": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_fcbc7fde129c4354bc106acabff176fb",
"style": "IPY_MODEL_bde5b7e2c52c433b9ca4e14655cd0d4c",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">concatenate</div>"
}
},
"d6b68cbdf88c429ea77541da23b4eb33": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_22190be6a82e4b0d91fe868cc0d1ea5c",
"IPY_MODEL_9456d0b14e144b31974b17c7f855c387",
"IPY_MODEL_8d0cea9ea6aa41a9830ac9342ecfed5d"
],
"layout": "IPY_MODEL_7f58bfca269047e7a4ddb2a55fe3d851"
}
},
"d6f8c218f1a34e4e8b5542986e5bd108": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"d982d2d74e004b9b8506e76bc4a47b96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dda6220be66047ed8ce362ce209b3861": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7ea3a98ebcb54755a900fcc525fab535",
"style": "IPY_MODEL_6b2088fa936846fb9ef6d2c4186890b9",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">mean_chunk</div>"
}
},
"de0899edb9b04d60b9b0622a6a82664c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"e2abb06343194636aac0a745bbf3c45e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e39fb8b5970b4d3fad461358fc38031b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e5d0e195523941af911b0add362a8875": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e7a057e52201446ab71df278ab5927f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_8b12e391ea2b41528b12663517ae64d8",
"style": "IPY_MODEL_bf5d14de0eb2483eb0efb4d08043d0ff",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align:left; word-wrap: break-word;\">mean_combine-partial</div>"
}
},
"e8211f0ecc964650937a6a32eb6f3d99": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e96a9762392d40b5938c47233157e529": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e98ec96b9263401f9bb9ad333f7e5bde": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eee9f4eb3cef44fb8bc9cd1e97e1ccbf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"ef71a998948c43b3a2ed957c993eb47e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"effd293b577042e8814ffb143e0b7017": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"f023aa31a9a44b31a3cb443b77613a32": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"f3daa829b4e14b2a92bd8e440eb0b858": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f57ac21981314a1e91f8af78a5a7cb68": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"f89e48ccedd04b0998ad8bfb37c01d4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "ProgressStyleModel",
"state": {
"description_width": ""
}
},
"f8bea9a96370411ea28f7faf028bfc80": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_59e7ac8c1d0a4102972ba8d2ae4cd01c",
"style": "IPY_MODEL_13cc5aae80674af697441fb5b2f71a55",
"value": "<div style=\"padding: 0px 10px 0px 10px; text-align: right\">57 / 57</div>"
}
},
"fcbc7fde129c4354bc106acabff176fb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.0.0",
"model_name": "LayoutModel",
"state": {}
},
"ffacb4ef9a9943c78f347be39718685e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.2.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_32eb371d632b4a4c8d2267be212ed3fc",
"IPY_MODEL_35480ce3a6594f8591f3e9487fe3f67c",
"IPY_MODEL_7f9918a7664443b2bbafb201da276291",
"IPY_MODEL_9bda1fc664db444ab3c5219be47484ae",
"IPY_MODEL_3b049bcdf764408d96f27d1493a25d92",
"IPY_MODEL_a563b33ab7f548958e4fe06b8d4517c3"
],
"layout": "IPY_MODEL_5b18b32cf9b34b80b6d948f2facfb243"
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment