Text Generation
PEFT
Safetensors
dfurman commited on
Commit
895f1dd
1 Parent(s): 9b903b9

Upload finetune_falcon7b_oasst1_with_bnb_peft.ipynb

Browse files
finetune_falcon7b_oasst1_with_bnb_peft.ipynb CHANGED
@@ -1629,24 +1629,106 @@
1629
  },
1630
  {
1631
  "cell_type": "code",
1632
- "execution_count": null,
1633
  "metadata": {
1634
- "id": "hsD1VKqeA62Z"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1635
  },
1636
- "outputs": [],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1637
  "source": [
1638
  "import torch\n",
1639
  "from peft import PeftModel, PeftConfig\n",
1640
  "from transformers import AutoModelForCausalLM, AutoTokenizer\n",
1641
  "\n",
1642
- "peft_model_id = \"dfurmanWMP/falcon-7b-chat-oasst1\"\n",
1643
  "config = PeftConfig.from_pretrained(peft_model_id)\n",
1644
  "model = AutoModelForCausalLM.from_pretrained(\n",
1645
  " config.base_model_name_or_path, \n",
1646
  " return_dict=True, \n",
1647
  " load_in_8bit=True, \n",
1648
  " device_map={\"\":0},\n",
1649
- " use_auth_token=True,\n",
1650
  " trust_remote_code=True,\n",
1651
  ")\n",
1652
  "tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)\n",
@@ -1684,9 +1766,9 @@
1684
  "height": 53
1685
  },
1686
  "id": "jlpAYdyVGoyo",
1687
- "outputId": "3f31d691-fb7f-4133-b44b-0b8638259e48"
1688
  },
1689
- "execution_count": 4,
1690
  "outputs": [
1691
  {
1692
  "output_type": "execute_result",
@@ -1699,7 +1781,7 @@
1699
  }
1700
  },
1701
  "metadata": {},
1702
- "execution_count": 4
1703
  }
1704
  ]
1705
  },
@@ -1720,9 +1802,9 @@
1720
  "base_uri": "https://localhost:8080/"
1721
  },
1722
  "id": "5UpKIshHJQmm",
1723
- "outputId": "5d280110-4739-453e-ca45-98d8059353a9"
1724
  },
1725
- "execution_count": 5,
1726
  "outputs": [
1727
  {
1728
  "output_type": "execute_result",
@@ -1740,19 +1822,19 @@
1740
  ]
1741
  },
1742
  "metadata": {},
1743
- "execution_count": 5
1744
  }
1745
  ]
1746
  },
1747
  {
1748
  "cell_type": "code",
1749
- "execution_count": 6,
1750
  "metadata": {
1751
  "colab": {
1752
  "base_uri": "https://localhost:8080/"
1753
  },
1754
  "id": "MDqJWba-tpnv",
1755
- "outputId": "81f07920-e374-4071-c54a-266cf1eaaa26"
1756
  },
1757
  "outputs": [
1758
  {
@@ -1789,9 +1871,9 @@
1789
  "base_uri": "https://localhost:8080/"
1790
  },
1791
  "id": "RCe7ly02JVis",
1792
- "outputId": "dab0fa7e-81fb-4bc5-e249-9e93fa7b5af1"
1793
  },
1794
- "execution_count": 7,
1795
  "outputs": [
1796
  {
1797
  "output_type": "stream",
@@ -9991,6 +10073,1032 @@
9991
  "_view_name": "StyleView",
9992
  "description_width": ""
9993
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9994
  }
9995
  }
9996
  }
 
1629
  },
1630
  {
1631
  "cell_type": "code",
1632
+ "execution_count": 11,
1633
  "metadata": {
1634
+ "colab": {
1635
+ "base_uri": "https://localhost:8080/",
1636
+ "height": 113,
1637
+ "referenced_widgets": [
1638
+ "8cbd584670c949b1ae0be34ba2624e9f",
1639
+ "016794f341634054a0958e1db42c4243",
1640
+ "6af46abb0e7d4b3198302bb2f4aa8bd7",
1641
+ "02caecb6b1814a34a0e264451ce5cbfa",
1642
+ "5894072560c2470193848542f31f2c36",
1643
+ "070bea93b2554794b0acaab492791bf5",
1644
+ "4353a30953044bd68db966fb11de3d31",
1645
+ "6f7bd66e8dd840c881abbf616c2bb21a",
1646
+ "97f250200a7446d787b3ac0d65808849",
1647
+ "6a70ccb4dc91405c97d4e6342a601260",
1648
+ "4f46f81d53ff4269b1c3f48b78ad3e96",
1649
+ "c84f780648dd43b387bd825c2bf21ea6",
1650
+ "22910dbe439f409ca9a776dd969e4920",
1651
+ "1d4672981e4c4073a65f7cac9e7e63b7",
1652
+ "5b1b971fee8d454caa6524f0ca0be091",
1653
+ "f70d526253d54a679c9f5dd814de2123",
1654
+ "a689ec73a49d42daaa2ecc9ad69b2faa",
1655
+ "6849d267afd64263b447ffa36d988651",
1656
+ "d54e3163a2b746599afdc44933b47af8",
1657
+ "b26f404b48044cf7a4c77877a5c92b5c",
1658
+ "fc428118dbca4df6b30d9def8ccc3e28",
1659
+ "c6fc1039f6894698ae8418d83775c266",
1660
+ "5d1e2e2f48d3429d85b9d3a80cc982fe",
1661
+ "e950d075fc174617832e71ffee770838",
1662
+ "d9e000681f074772972ed8961eae2207",
1663
+ "8d942f61ac5142d2b595b20a010d6010",
1664
+ "27aa9197bfeb475aa933facd7426354f",
1665
+ "5747603d9e294fa788d197c403940b64",
1666
+ "c0fbde154e6c4e599a6d9d0829816548",
1667
+ "b23276da91514942b475c2e912152b98",
1668
+ "50ed875cbf0649faba421a6a40fb9214",
1669
+ "45b23a89b6bc45b3a0b1645d2c745db8",
1670
+ "e4f69091e840474a8fd321404fdb460f"
1671
+ ]
1672
+ },
1673
+ "id": "hsD1VKqeA62Z",
1674
+ "outputId": "ac11b44d-74e6-4281-980f-652a0d323a6a"
1675
  },
1676
+ "outputs": [
1677
+ {
1678
+ "output_type": "display_data",
1679
+ "data": {
1680
+ "text/plain": [
1681
+ "Downloading (…)/adapter_config.json: 0%| | 0.00/333 [00:00<?, ?B/s]"
1682
+ ],
1683
+ "application/vnd.jupyter.widget-view+json": {
1684
+ "version_major": 2,
1685
+ "version_minor": 0,
1686
+ "model_id": "8cbd584670c949b1ae0be34ba2624e9f"
1687
+ }
1688
+ },
1689
+ "metadata": {}
1690
+ },
1691
+ {
1692
+ "output_type": "display_data",
1693
+ "data": {
1694
+ "text/plain": [
1695
+ "Loading checkpoint shards: 0%| | 0/2 [00:00<?, ?it/s]"
1696
+ ],
1697
+ "application/vnd.jupyter.widget-view+json": {
1698
+ "version_major": 2,
1699
+ "version_minor": 0,
1700
+ "model_id": "c84f780648dd43b387bd825c2bf21ea6"
1701
+ }
1702
+ },
1703
+ "metadata": {}
1704
+ },
1705
+ {
1706
+ "output_type": "display_data",
1707
+ "data": {
1708
+ "text/plain": [
1709
+ "Downloading adapter_model.bin: 0%| | 0.00/18.9M [00:00<?, ?B/s]"
1710
+ ],
1711
+ "application/vnd.jupyter.widget-view+json": {
1712
+ "version_major": 2,
1713
+ "version_minor": 0,
1714
+ "model_id": "5d1e2e2f48d3429d85b9d3a80cc982fe"
1715
+ }
1716
+ },
1717
+ "metadata": {}
1718
+ }
1719
+ ],
1720
  "source": [
1721
  "import torch\n",
1722
  "from peft import PeftModel, PeftConfig\n",
1723
  "from transformers import AutoModelForCausalLM, AutoTokenizer\n",
1724
  "\n",
1725
+ "peft_model_id = \"dfurman/falcon-7b-chat-oasst1\"\n",
1726
  "config = PeftConfig.from_pretrained(peft_model_id)\n",
1727
  "model = AutoModelForCausalLM.from_pretrained(\n",
1728
  " config.base_model_name_or_path, \n",
1729
  " return_dict=True, \n",
1730
  " load_in_8bit=True, \n",
1731
  " device_map={\"\":0},\n",
 
1732
  " trust_remote_code=True,\n",
1733
  ")\n",
1734
  "tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)\n",
 
1766
  "height": 53
1767
  },
1768
  "id": "jlpAYdyVGoyo",
1769
+ "outputId": "4f9acc11-e3f0-4ba6-80b4-ddf74333d764"
1770
  },
1771
+ "execution_count": 12,
1772
  "outputs": [
1773
  {
1774
  "output_type": "execute_result",
 
1781
  }
1782
  },
1783
  "metadata": {},
1784
+ "execution_count": 12
1785
  }
1786
  ]
1787
  },
 
1802
  "base_uri": "https://localhost:8080/"
1803
  },
1804
  "id": "5UpKIshHJQmm",
1805
+ "outputId": "e645a521-cc39-419d-fc91-8b8578ba6be4"
1806
  },
1807
+ "execution_count": 13,
1808
  "outputs": [
1809
  {
1810
  "output_type": "execute_result",
 
1822
  ]
1823
  },
1824
  "metadata": {},
1825
+ "execution_count": 13
1826
  }
1827
  ]
1828
  },
1829
  {
1830
  "cell_type": "code",
1831
+ "execution_count": 14,
1832
  "metadata": {
1833
  "colab": {
1834
  "base_uri": "https://localhost:8080/"
1835
  },
1836
  "id": "MDqJWba-tpnv",
1837
+ "outputId": "c79f934f-d7dd-4258-abfd-c3ee85570530"
1838
  },
1839
  "outputs": [
1840
  {
 
1871
  "base_uri": "https://localhost:8080/"
1872
  },
1873
  "id": "RCe7ly02JVis",
1874
+ "outputId": "7864d3b2-c875-41f9-c1cf-3cc0123c3c10"
1875
  },
1876
+ "execution_count": 15,
1877
  "outputs": [
1878
  {
1879
  "output_type": "stream",
 
10073
  "_view_name": "StyleView",
10074
  "description_width": ""
10075
  }
10076
+ },
10077
+ "8cbd584670c949b1ae0be34ba2624e9f": {
10078
+ "model_module": "@jupyter-widgets/controls",
10079
+ "model_name": "HBoxModel",
10080
+ "model_module_version": "1.5.0",
10081
+ "state": {
10082
+ "_dom_classes": [],
10083
+ "_model_module": "@jupyter-widgets/controls",
10084
+ "_model_module_version": "1.5.0",
10085
+ "_model_name": "HBoxModel",
10086
+ "_view_count": null,
10087
+ "_view_module": "@jupyter-widgets/controls",
10088
+ "_view_module_version": "1.5.0",
10089
+ "_view_name": "HBoxView",
10090
+ "box_style": "",
10091
+ "children": [
10092
+ "IPY_MODEL_016794f341634054a0958e1db42c4243",
10093
+ "IPY_MODEL_6af46abb0e7d4b3198302bb2f4aa8bd7",
10094
+ "IPY_MODEL_02caecb6b1814a34a0e264451ce5cbfa"
10095
+ ],
10096
+ "layout": "IPY_MODEL_5894072560c2470193848542f31f2c36"
10097
+ }
10098
+ },
10099
+ "016794f341634054a0958e1db42c4243": {
10100
+ "model_module": "@jupyter-widgets/controls",
10101
+ "model_name": "HTMLModel",
10102
+ "model_module_version": "1.5.0",
10103
+ "state": {
10104
+ "_dom_classes": [],
10105
+ "_model_module": "@jupyter-widgets/controls",
10106
+ "_model_module_version": "1.5.0",
10107
+ "_model_name": "HTMLModel",
10108
+ "_view_count": null,
10109
+ "_view_module": "@jupyter-widgets/controls",
10110
+ "_view_module_version": "1.5.0",
10111
+ "_view_name": "HTMLView",
10112
+ "description": "",
10113
+ "description_tooltip": null,
10114
+ "layout": "IPY_MODEL_070bea93b2554794b0acaab492791bf5",
10115
+ "placeholder": "​",
10116
+ "style": "IPY_MODEL_4353a30953044bd68db966fb11de3d31",
10117
+ "value": "Downloading (…)/adapter_config.json: 100%"
10118
+ }
10119
+ },
10120
+ "6af46abb0e7d4b3198302bb2f4aa8bd7": {
10121
+ "model_module": "@jupyter-widgets/controls",
10122
+ "model_name": "FloatProgressModel",
10123
+ "model_module_version": "1.5.0",
10124
+ "state": {
10125
+ "_dom_classes": [],
10126
+ "_model_module": "@jupyter-widgets/controls",
10127
+ "_model_module_version": "1.5.0",
10128
+ "_model_name": "FloatProgressModel",
10129
+ "_view_count": null,
10130
+ "_view_module": "@jupyter-widgets/controls",
10131
+ "_view_module_version": "1.5.0",
10132
+ "_view_name": "ProgressView",
10133
+ "bar_style": "success",
10134
+ "description": "",
10135
+ "description_tooltip": null,
10136
+ "layout": "IPY_MODEL_6f7bd66e8dd840c881abbf616c2bb21a",
10137
+ "max": 333,
10138
+ "min": 0,
10139
+ "orientation": "horizontal",
10140
+ "style": "IPY_MODEL_97f250200a7446d787b3ac0d65808849",
10141
+ "value": 333
10142
+ }
10143
+ },
10144
+ "02caecb6b1814a34a0e264451ce5cbfa": {
10145
+ "model_module": "@jupyter-widgets/controls",
10146
+ "model_name": "HTMLModel",
10147
+ "model_module_version": "1.5.0",
10148
+ "state": {
10149
+ "_dom_classes": [],
10150
+ "_model_module": "@jupyter-widgets/controls",
10151
+ "_model_module_version": "1.5.0",
10152
+ "_model_name": "HTMLModel",
10153
+ "_view_count": null,
10154
+ "_view_module": "@jupyter-widgets/controls",
10155
+ "_view_module_version": "1.5.0",
10156
+ "_view_name": "HTMLView",
10157
+ "description": "",
10158
+ "description_tooltip": null,
10159
+ "layout": "IPY_MODEL_6a70ccb4dc91405c97d4e6342a601260",
10160
+ "placeholder": "​",
10161
+ "style": "IPY_MODEL_4f46f81d53ff4269b1c3f48b78ad3e96",
10162
+ "value": " 333/333 [00:00&lt;00:00, 25.8kB/s]"
10163
+ }
10164
+ },
10165
+ "5894072560c2470193848542f31f2c36": {
10166
+ "model_module": "@jupyter-widgets/base",
10167
+ "model_name": "LayoutModel",
10168
+ "model_module_version": "1.2.0",
10169
+ "state": {
10170
+ "_model_module": "@jupyter-widgets/base",
10171
+ "_model_module_version": "1.2.0",
10172
+ "_model_name": "LayoutModel",
10173
+ "_view_count": null,
10174
+ "_view_module": "@jupyter-widgets/base",
10175
+ "_view_module_version": "1.2.0",
10176
+ "_view_name": "LayoutView",
10177
+ "align_content": null,
10178
+ "align_items": null,
10179
+ "align_self": null,
10180
+ "border": null,
10181
+ "bottom": null,
10182
+ "display": null,
10183
+ "flex": null,
10184
+ "flex_flow": null,
10185
+ "grid_area": null,
10186
+ "grid_auto_columns": null,
10187
+ "grid_auto_flow": null,
10188
+ "grid_auto_rows": null,
10189
+ "grid_column": null,
10190
+ "grid_gap": null,
10191
+ "grid_row": null,
10192
+ "grid_template_areas": null,
10193
+ "grid_template_columns": null,
10194
+ "grid_template_rows": null,
10195
+ "height": null,
10196
+ "justify_content": null,
10197
+ "justify_items": null,
10198
+ "left": null,
10199
+ "margin": null,
10200
+ "max_height": null,
10201
+ "max_width": null,
10202
+ "min_height": null,
10203
+ "min_width": null,
10204
+ "object_fit": null,
10205
+ "object_position": null,
10206
+ "order": null,
10207
+ "overflow": null,
10208
+ "overflow_x": null,
10209
+ "overflow_y": null,
10210
+ "padding": null,
10211
+ "right": null,
10212
+ "top": null,
10213
+ "visibility": null,
10214
+ "width": null
10215
+ }
10216
+ },
10217
+ "070bea93b2554794b0acaab492791bf5": {
10218
+ "model_module": "@jupyter-widgets/base",
10219
+ "model_name": "LayoutModel",
10220
+ "model_module_version": "1.2.0",
10221
+ "state": {
10222
+ "_model_module": "@jupyter-widgets/base",
10223
+ "_model_module_version": "1.2.0",
10224
+ "_model_name": "LayoutModel",
10225
+ "_view_count": null,
10226
+ "_view_module": "@jupyter-widgets/base",
10227
+ "_view_module_version": "1.2.0",
10228
+ "_view_name": "LayoutView",
10229
+ "align_content": null,
10230
+ "align_items": null,
10231
+ "align_self": null,
10232
+ "border": null,
10233
+ "bottom": null,
10234
+ "display": null,
10235
+ "flex": null,
10236
+ "flex_flow": null,
10237
+ "grid_area": null,
10238
+ "grid_auto_columns": null,
10239
+ "grid_auto_flow": null,
10240
+ "grid_auto_rows": null,
10241
+ "grid_column": null,
10242
+ "grid_gap": null,
10243
+ "grid_row": null,
10244
+ "grid_template_areas": null,
10245
+ "grid_template_columns": null,
10246
+ "grid_template_rows": null,
10247
+ "height": null,
10248
+ "justify_content": null,
10249
+ "justify_items": null,
10250
+ "left": null,
10251
+ "margin": null,
10252
+ "max_height": null,
10253
+ "max_width": null,
10254
+ "min_height": null,
10255
+ "min_width": null,
10256
+ "object_fit": null,
10257
+ "object_position": null,
10258
+ "order": null,
10259
+ "overflow": null,
10260
+ "overflow_x": null,
10261
+ "overflow_y": null,
10262
+ "padding": null,
10263
+ "right": null,
10264
+ "top": null,
10265
+ "visibility": null,
10266
+ "width": null
10267
+ }
10268
+ },
10269
+ "4353a30953044bd68db966fb11de3d31": {
10270
+ "model_module": "@jupyter-widgets/controls",
10271
+ "model_name": "DescriptionStyleModel",
10272
+ "model_module_version": "1.5.0",
10273
+ "state": {
10274
+ "_model_module": "@jupyter-widgets/controls",
10275
+ "_model_module_version": "1.5.0",
10276
+ "_model_name": "DescriptionStyleModel",
10277
+ "_view_count": null,
10278
+ "_view_module": "@jupyter-widgets/base",
10279
+ "_view_module_version": "1.2.0",
10280
+ "_view_name": "StyleView",
10281
+ "description_width": ""
10282
+ }
10283
+ },
10284
+ "6f7bd66e8dd840c881abbf616c2bb21a": {
10285
+ "model_module": "@jupyter-widgets/base",
10286
+ "model_name": "LayoutModel",
10287
+ "model_module_version": "1.2.0",
10288
+ "state": {
10289
+ "_model_module": "@jupyter-widgets/base",
10290
+ "_model_module_version": "1.2.0",
10291
+ "_model_name": "LayoutModel",
10292
+ "_view_count": null,
10293
+ "_view_module": "@jupyter-widgets/base",
10294
+ "_view_module_version": "1.2.0",
10295
+ "_view_name": "LayoutView",
10296
+ "align_content": null,
10297
+ "align_items": null,
10298
+ "align_self": null,
10299
+ "border": null,
10300
+ "bottom": null,
10301
+ "display": null,
10302
+ "flex": null,
10303
+ "flex_flow": null,
10304
+ "grid_area": null,
10305
+ "grid_auto_columns": null,
10306
+ "grid_auto_flow": null,
10307
+ "grid_auto_rows": null,
10308
+ "grid_column": null,
10309
+ "grid_gap": null,
10310
+ "grid_row": null,
10311
+ "grid_template_areas": null,
10312
+ "grid_template_columns": null,
10313
+ "grid_template_rows": null,
10314
+ "height": null,
10315
+ "justify_content": null,
10316
+ "justify_items": null,
10317
+ "left": null,
10318
+ "margin": null,
10319
+ "max_height": null,
10320
+ "max_width": null,
10321
+ "min_height": null,
10322
+ "min_width": null,
10323
+ "object_fit": null,
10324
+ "object_position": null,
10325
+ "order": null,
10326
+ "overflow": null,
10327
+ "overflow_x": null,
10328
+ "overflow_y": null,
10329
+ "padding": null,
10330
+ "right": null,
10331
+ "top": null,
10332
+ "visibility": null,
10333
+ "width": null
10334
+ }
10335
+ },
10336
+ "97f250200a7446d787b3ac0d65808849": {
10337
+ "model_module": "@jupyter-widgets/controls",
10338
+ "model_name": "ProgressStyleModel",
10339
+ "model_module_version": "1.5.0",
10340
+ "state": {
10341
+ "_model_module": "@jupyter-widgets/controls",
10342
+ "_model_module_version": "1.5.0",
10343
+ "_model_name": "ProgressStyleModel",
10344
+ "_view_count": null,
10345
+ "_view_module": "@jupyter-widgets/base",
10346
+ "_view_module_version": "1.2.0",
10347
+ "_view_name": "StyleView",
10348
+ "bar_color": null,
10349
+ "description_width": ""
10350
+ }
10351
+ },
10352
+ "6a70ccb4dc91405c97d4e6342a601260": {
10353
+ "model_module": "@jupyter-widgets/base",
10354
+ "model_name": "LayoutModel",
10355
+ "model_module_version": "1.2.0",
10356
+ "state": {
10357
+ "_model_module": "@jupyter-widgets/base",
10358
+ "_model_module_version": "1.2.0",
10359
+ "_model_name": "LayoutModel",
10360
+ "_view_count": null,
10361
+ "_view_module": "@jupyter-widgets/base",
10362
+ "_view_module_version": "1.2.0",
10363
+ "_view_name": "LayoutView",
10364
+ "align_content": null,
10365
+ "align_items": null,
10366
+ "align_self": null,
10367
+ "border": null,
10368
+ "bottom": null,
10369
+ "display": null,
10370
+ "flex": null,
10371
+ "flex_flow": null,
10372
+ "grid_area": null,
10373
+ "grid_auto_columns": null,
10374
+ "grid_auto_flow": null,
10375
+ "grid_auto_rows": null,
10376
+ "grid_column": null,
10377
+ "grid_gap": null,
10378
+ "grid_row": null,
10379
+ "grid_template_areas": null,
10380
+ "grid_template_columns": null,
10381
+ "grid_template_rows": null,
10382
+ "height": null,
10383
+ "justify_content": null,
10384
+ "justify_items": null,
10385
+ "left": null,
10386
+ "margin": null,
10387
+ "max_height": null,
10388
+ "max_width": null,
10389
+ "min_height": null,
10390
+ "min_width": null,
10391
+ "object_fit": null,
10392
+ "object_position": null,
10393
+ "order": null,
10394
+ "overflow": null,
10395
+ "overflow_x": null,
10396
+ "overflow_y": null,
10397
+ "padding": null,
10398
+ "right": null,
10399
+ "top": null,
10400
+ "visibility": null,
10401
+ "width": null
10402
+ }
10403
+ },
10404
+ "4f46f81d53ff4269b1c3f48b78ad3e96": {
10405
+ "model_module": "@jupyter-widgets/controls",
10406
+ "model_name": "DescriptionStyleModel",
10407
+ "model_module_version": "1.5.0",
10408
+ "state": {
10409
+ "_model_module": "@jupyter-widgets/controls",
10410
+ "_model_module_version": "1.5.0",
10411
+ "_model_name": "DescriptionStyleModel",
10412
+ "_view_count": null,
10413
+ "_view_module": "@jupyter-widgets/base",
10414
+ "_view_module_version": "1.2.0",
10415
+ "_view_name": "StyleView",
10416
+ "description_width": ""
10417
+ }
10418
+ },
10419
+ "c84f780648dd43b387bd825c2bf21ea6": {
10420
+ "model_module": "@jupyter-widgets/controls",
10421
+ "model_name": "HBoxModel",
10422
+ "model_module_version": "1.5.0",
10423
+ "state": {
10424
+ "_dom_classes": [],
10425
+ "_model_module": "@jupyter-widgets/controls",
10426
+ "_model_module_version": "1.5.0",
10427
+ "_model_name": "HBoxModel",
10428
+ "_view_count": null,
10429
+ "_view_module": "@jupyter-widgets/controls",
10430
+ "_view_module_version": "1.5.0",
10431
+ "_view_name": "HBoxView",
10432
+ "box_style": "",
10433
+ "children": [
10434
+ "IPY_MODEL_22910dbe439f409ca9a776dd969e4920",
10435
+ "IPY_MODEL_1d4672981e4c4073a65f7cac9e7e63b7",
10436
+ "IPY_MODEL_5b1b971fee8d454caa6524f0ca0be091"
10437
+ ],
10438
+ "layout": "IPY_MODEL_f70d526253d54a679c9f5dd814de2123"
10439
+ }
10440
+ },
10441
+ "22910dbe439f409ca9a776dd969e4920": {
10442
+ "model_module": "@jupyter-widgets/controls",
10443
+ "model_name": "HTMLModel",
10444
+ "model_module_version": "1.5.0",
10445
+ "state": {
10446
+ "_dom_classes": [],
10447
+ "_model_module": "@jupyter-widgets/controls",
10448
+ "_model_module_version": "1.5.0",
10449
+ "_model_name": "HTMLModel",
10450
+ "_view_count": null,
10451
+ "_view_module": "@jupyter-widgets/controls",
10452
+ "_view_module_version": "1.5.0",
10453
+ "_view_name": "HTMLView",
10454
+ "description": "",
10455
+ "description_tooltip": null,
10456
+ "layout": "IPY_MODEL_a689ec73a49d42daaa2ecc9ad69b2faa",
10457
+ "placeholder": "​",
10458
+ "style": "IPY_MODEL_6849d267afd64263b447ffa36d988651",
10459
+ "value": "Loading checkpoint shards: 100%"
10460
+ }
10461
+ },
10462
+ "1d4672981e4c4073a65f7cac9e7e63b7": {
10463
+ "model_module": "@jupyter-widgets/controls",
10464
+ "model_name": "FloatProgressModel",
10465
+ "model_module_version": "1.5.0",
10466
+ "state": {
10467
+ "_dom_classes": [],
10468
+ "_model_module": "@jupyter-widgets/controls",
10469
+ "_model_module_version": "1.5.0",
10470
+ "_model_name": "FloatProgressModel",
10471
+ "_view_count": null,
10472
+ "_view_module": "@jupyter-widgets/controls",
10473
+ "_view_module_version": "1.5.0",
10474
+ "_view_name": "ProgressView",
10475
+ "bar_style": "success",
10476
+ "description": "",
10477
+ "description_tooltip": null,
10478
+ "layout": "IPY_MODEL_d54e3163a2b746599afdc44933b47af8",
10479
+ "max": 2,
10480
+ "min": 0,
10481
+ "orientation": "horizontal",
10482
+ "style": "IPY_MODEL_b26f404b48044cf7a4c77877a5c92b5c",
10483
+ "value": 2
10484
+ }
10485
+ },
10486
+ "5b1b971fee8d454caa6524f0ca0be091": {
10487
+ "model_module": "@jupyter-widgets/controls",
10488
+ "model_name": "HTMLModel",
10489
+ "model_module_version": "1.5.0",
10490
+ "state": {
10491
+ "_dom_classes": [],
10492
+ "_model_module": "@jupyter-widgets/controls",
10493
+ "_model_module_version": "1.5.0",
10494
+ "_model_name": "HTMLModel",
10495
+ "_view_count": null,
10496
+ "_view_module": "@jupyter-widgets/controls",
10497
+ "_view_module_version": "1.5.0",
10498
+ "_view_name": "HTMLView",
10499
+ "description": "",
10500
+ "description_tooltip": null,
10501
+ "layout": "IPY_MODEL_fc428118dbca4df6b30d9def8ccc3e28",
10502
+ "placeholder": "​",
10503
+ "style": "IPY_MODEL_c6fc1039f6894698ae8418d83775c266",
10504
+ "value": " 2/2 [00:14&lt;00:00, 6.84s/it]"
10505
+ }
10506
+ },
10507
+ "f70d526253d54a679c9f5dd814de2123": {
10508
+ "model_module": "@jupyter-widgets/base",
10509
+ "model_name": "LayoutModel",
10510
+ "model_module_version": "1.2.0",
10511
+ "state": {
10512
+ "_model_module": "@jupyter-widgets/base",
10513
+ "_model_module_version": "1.2.0",
10514
+ "_model_name": "LayoutModel",
10515
+ "_view_count": null,
10516
+ "_view_module": "@jupyter-widgets/base",
10517
+ "_view_module_version": "1.2.0",
10518
+ "_view_name": "LayoutView",
10519
+ "align_content": null,
10520
+ "align_items": null,
10521
+ "align_self": null,
10522
+ "border": null,
10523
+ "bottom": null,
10524
+ "display": null,
10525
+ "flex": null,
10526
+ "flex_flow": null,
10527
+ "grid_area": null,
10528
+ "grid_auto_columns": null,
10529
+ "grid_auto_flow": null,
10530
+ "grid_auto_rows": null,
10531
+ "grid_column": null,
10532
+ "grid_gap": null,
10533
+ "grid_row": null,
10534
+ "grid_template_areas": null,
10535
+ "grid_template_columns": null,
10536
+ "grid_template_rows": null,
10537
+ "height": null,
10538
+ "justify_content": null,
10539
+ "justify_items": null,
10540
+ "left": null,
10541
+ "margin": null,
10542
+ "max_height": null,
10543
+ "max_width": null,
10544
+ "min_height": null,
10545
+ "min_width": null,
10546
+ "object_fit": null,
10547
+ "object_position": null,
10548
+ "order": null,
10549
+ "overflow": null,
10550
+ "overflow_x": null,
10551
+ "overflow_y": null,
10552
+ "padding": null,
10553
+ "right": null,
10554
+ "top": null,
10555
+ "visibility": null,
10556
+ "width": null
10557
+ }
10558
+ },
10559
+ "a689ec73a49d42daaa2ecc9ad69b2faa": {
10560
+ "model_module": "@jupyter-widgets/base",
10561
+ "model_name": "LayoutModel",
10562
+ "model_module_version": "1.2.0",
10563
+ "state": {
10564
+ "_model_module": "@jupyter-widgets/base",
10565
+ "_model_module_version": "1.2.0",
10566
+ "_model_name": "LayoutModel",
10567
+ "_view_count": null,
10568
+ "_view_module": "@jupyter-widgets/base",
10569
+ "_view_module_version": "1.2.0",
10570
+ "_view_name": "LayoutView",
10571
+ "align_content": null,
10572
+ "align_items": null,
10573
+ "align_self": null,
10574
+ "border": null,
10575
+ "bottom": null,
10576
+ "display": null,
10577
+ "flex": null,
10578
+ "flex_flow": null,
10579
+ "grid_area": null,
10580
+ "grid_auto_columns": null,
10581
+ "grid_auto_flow": null,
10582
+ "grid_auto_rows": null,
10583
+ "grid_column": null,
10584
+ "grid_gap": null,
10585
+ "grid_row": null,
10586
+ "grid_template_areas": null,
10587
+ "grid_template_columns": null,
10588
+ "grid_template_rows": null,
10589
+ "height": null,
10590
+ "justify_content": null,
10591
+ "justify_items": null,
10592
+ "left": null,
10593
+ "margin": null,
10594
+ "max_height": null,
10595
+ "max_width": null,
10596
+ "min_height": null,
10597
+ "min_width": null,
10598
+ "object_fit": null,
10599
+ "object_position": null,
10600
+ "order": null,
10601
+ "overflow": null,
10602
+ "overflow_x": null,
10603
+ "overflow_y": null,
10604
+ "padding": null,
10605
+ "right": null,
10606
+ "top": null,
10607
+ "visibility": null,
10608
+ "width": null
10609
+ }
10610
+ },
10611
+ "6849d267afd64263b447ffa36d988651": {
10612
+ "model_module": "@jupyter-widgets/controls",
10613
+ "model_name": "DescriptionStyleModel",
10614
+ "model_module_version": "1.5.0",
10615
+ "state": {
10616
+ "_model_module": "@jupyter-widgets/controls",
10617
+ "_model_module_version": "1.5.0",
10618
+ "_model_name": "DescriptionStyleModel",
10619
+ "_view_count": null,
10620
+ "_view_module": "@jupyter-widgets/base",
10621
+ "_view_module_version": "1.2.0",
10622
+ "_view_name": "StyleView",
10623
+ "description_width": ""
10624
+ }
10625
+ },
10626
+ "d54e3163a2b746599afdc44933b47af8": {
10627
+ "model_module": "@jupyter-widgets/base",
10628
+ "model_name": "LayoutModel",
10629
+ "model_module_version": "1.2.0",
10630
+ "state": {
10631
+ "_model_module": "@jupyter-widgets/base",
10632
+ "_model_module_version": "1.2.0",
10633
+ "_model_name": "LayoutModel",
10634
+ "_view_count": null,
10635
+ "_view_module": "@jupyter-widgets/base",
10636
+ "_view_module_version": "1.2.0",
10637
+ "_view_name": "LayoutView",
10638
+ "align_content": null,
10639
+ "align_items": null,
10640
+ "align_self": null,
10641
+ "border": null,
10642
+ "bottom": null,
10643
+ "display": null,
10644
+ "flex": null,
10645
+ "flex_flow": null,
10646
+ "grid_area": null,
10647
+ "grid_auto_columns": null,
10648
+ "grid_auto_flow": null,
10649
+ "grid_auto_rows": null,
10650
+ "grid_column": null,
10651
+ "grid_gap": null,
10652
+ "grid_row": null,
10653
+ "grid_template_areas": null,
10654
+ "grid_template_columns": null,
10655
+ "grid_template_rows": null,
10656
+ "height": null,
10657
+ "justify_content": null,
10658
+ "justify_items": null,
10659
+ "left": null,
10660
+ "margin": null,
10661
+ "max_height": null,
10662
+ "max_width": null,
10663
+ "min_height": null,
10664
+ "min_width": null,
10665
+ "object_fit": null,
10666
+ "object_position": null,
10667
+ "order": null,
10668
+ "overflow": null,
10669
+ "overflow_x": null,
10670
+ "overflow_y": null,
10671
+ "padding": null,
10672
+ "right": null,
10673
+ "top": null,
10674
+ "visibility": null,
10675
+ "width": null
10676
+ }
10677
+ },
10678
+ "b26f404b48044cf7a4c77877a5c92b5c": {
10679
+ "model_module": "@jupyter-widgets/controls",
10680
+ "model_name": "ProgressStyleModel",
10681
+ "model_module_version": "1.5.0",
10682
+ "state": {
10683
+ "_model_module": "@jupyter-widgets/controls",
10684
+ "_model_module_version": "1.5.0",
10685
+ "_model_name": "ProgressStyleModel",
10686
+ "_view_count": null,
10687
+ "_view_module": "@jupyter-widgets/base",
10688
+ "_view_module_version": "1.2.0",
10689
+ "_view_name": "StyleView",
10690
+ "bar_color": null,
10691
+ "description_width": ""
10692
+ }
10693
+ },
10694
+ "fc428118dbca4df6b30d9def8ccc3e28": {
10695
+ "model_module": "@jupyter-widgets/base",
10696
+ "model_name": "LayoutModel",
10697
+ "model_module_version": "1.2.0",
10698
+ "state": {
10699
+ "_model_module": "@jupyter-widgets/base",
10700
+ "_model_module_version": "1.2.0",
10701
+ "_model_name": "LayoutModel",
10702
+ "_view_count": null,
10703
+ "_view_module": "@jupyter-widgets/base",
10704
+ "_view_module_version": "1.2.0",
10705
+ "_view_name": "LayoutView",
10706
+ "align_content": null,
10707
+ "align_items": null,
10708
+ "align_self": null,
10709
+ "border": null,
10710
+ "bottom": null,
10711
+ "display": null,
10712
+ "flex": null,
10713
+ "flex_flow": null,
10714
+ "grid_area": null,
10715
+ "grid_auto_columns": null,
10716
+ "grid_auto_flow": null,
10717
+ "grid_auto_rows": null,
10718
+ "grid_column": null,
10719
+ "grid_gap": null,
10720
+ "grid_row": null,
10721
+ "grid_template_areas": null,
10722
+ "grid_template_columns": null,
10723
+ "grid_template_rows": null,
10724
+ "height": null,
10725
+ "justify_content": null,
10726
+ "justify_items": null,
10727
+ "left": null,
10728
+ "margin": null,
10729
+ "max_height": null,
10730
+ "max_width": null,
10731
+ "min_height": null,
10732
+ "min_width": null,
10733
+ "object_fit": null,
10734
+ "object_position": null,
10735
+ "order": null,
10736
+ "overflow": null,
10737
+ "overflow_x": null,
10738
+ "overflow_y": null,
10739
+ "padding": null,
10740
+ "right": null,
10741
+ "top": null,
10742
+ "visibility": null,
10743
+ "width": null
10744
+ }
10745
+ },
10746
+ "c6fc1039f6894698ae8418d83775c266": {
10747
+ "model_module": "@jupyter-widgets/controls",
10748
+ "model_name": "DescriptionStyleModel",
10749
+ "model_module_version": "1.5.0",
10750
+ "state": {
10751
+ "_model_module": "@jupyter-widgets/controls",
10752
+ "_model_module_version": "1.5.0",
10753
+ "_model_name": "DescriptionStyleModel",
10754
+ "_view_count": null,
10755
+ "_view_module": "@jupyter-widgets/base",
10756
+ "_view_module_version": "1.2.0",
10757
+ "_view_name": "StyleView",
10758
+ "description_width": ""
10759
+ }
10760
+ },
10761
+ "5d1e2e2f48d3429d85b9d3a80cc982fe": {
10762
+ "model_module": "@jupyter-widgets/controls",
10763
+ "model_name": "HBoxModel",
10764
+ "model_module_version": "1.5.0",
10765
+ "state": {
10766
+ "_dom_classes": [],
10767
+ "_model_module": "@jupyter-widgets/controls",
10768
+ "_model_module_version": "1.5.0",
10769
+ "_model_name": "HBoxModel",
10770
+ "_view_count": null,
10771
+ "_view_module": "@jupyter-widgets/controls",
10772
+ "_view_module_version": "1.5.0",
10773
+ "_view_name": "HBoxView",
10774
+ "box_style": "",
10775
+ "children": [
10776
+ "IPY_MODEL_e950d075fc174617832e71ffee770838",
10777
+ "IPY_MODEL_d9e000681f074772972ed8961eae2207",
10778
+ "IPY_MODEL_8d942f61ac5142d2b595b20a010d6010"
10779
+ ],
10780
+ "layout": "IPY_MODEL_27aa9197bfeb475aa933facd7426354f"
10781
+ }
10782
+ },
10783
+ "e950d075fc174617832e71ffee770838": {
10784
+ "model_module": "@jupyter-widgets/controls",
10785
+ "model_name": "HTMLModel",
10786
+ "model_module_version": "1.5.0",
10787
+ "state": {
10788
+ "_dom_classes": [],
10789
+ "_model_module": "@jupyter-widgets/controls",
10790
+ "_model_module_version": "1.5.0",
10791
+ "_model_name": "HTMLModel",
10792
+ "_view_count": null,
10793
+ "_view_module": "@jupyter-widgets/controls",
10794
+ "_view_module_version": "1.5.0",
10795
+ "_view_name": "HTMLView",
10796
+ "description": "",
10797
+ "description_tooltip": null,
10798
+ "layout": "IPY_MODEL_5747603d9e294fa788d197c403940b64",
10799
+ "placeholder": "​",
10800
+ "style": "IPY_MODEL_c0fbde154e6c4e599a6d9d0829816548",
10801
+ "value": "Downloading adapter_model.bin: 100%"
10802
+ }
10803
+ },
10804
+ "d9e000681f074772972ed8961eae2207": {
10805
+ "model_module": "@jupyter-widgets/controls",
10806
+ "model_name": "FloatProgressModel",
10807
+ "model_module_version": "1.5.0",
10808
+ "state": {
10809
+ "_dom_classes": [],
10810
+ "_model_module": "@jupyter-widgets/controls",
10811
+ "_model_module_version": "1.5.0",
10812
+ "_model_name": "FloatProgressModel",
10813
+ "_view_count": null,
10814
+ "_view_module": "@jupyter-widgets/controls",
10815
+ "_view_module_version": "1.5.0",
10816
+ "_view_name": "ProgressView",
10817
+ "bar_style": "success",
10818
+ "description": "",
10819
+ "description_tooltip": null,
10820
+ "layout": "IPY_MODEL_b23276da91514942b475c2e912152b98",
10821
+ "max": 18898161,
10822
+ "min": 0,
10823
+ "orientation": "horizontal",
10824
+ "style": "IPY_MODEL_50ed875cbf0649faba421a6a40fb9214",
10825
+ "value": 18898161
10826
+ }
10827
+ },
10828
+ "8d942f61ac5142d2b595b20a010d6010": {
10829
+ "model_module": "@jupyter-widgets/controls",
10830
+ "model_name": "HTMLModel",
10831
+ "model_module_version": "1.5.0",
10832
+ "state": {
10833
+ "_dom_classes": [],
10834
+ "_model_module": "@jupyter-widgets/controls",
10835
+ "_model_module_version": "1.5.0",
10836
+ "_model_name": "HTMLModel",
10837
+ "_view_count": null,
10838
+ "_view_module": "@jupyter-widgets/controls",
10839
+ "_view_module_version": "1.5.0",
10840
+ "_view_name": "HTMLView",
10841
+ "description": "",
10842
+ "description_tooltip": null,
10843
+ "layout": "IPY_MODEL_45b23a89b6bc45b3a0b1645d2c745db8",
10844
+ "placeholder": "​",
10845
+ "style": "IPY_MODEL_e4f69091e840474a8fd321404fdb460f",
10846
+ "value": " 18.9M/18.9M [00:02&lt;00:00, 9.08MB/s]"
10847
+ }
10848
+ },
10849
+ "27aa9197bfeb475aa933facd7426354f": {
10850
+ "model_module": "@jupyter-widgets/base",
10851
+ "model_name": "LayoutModel",
10852
+ "model_module_version": "1.2.0",
10853
+ "state": {
10854
+ "_model_module": "@jupyter-widgets/base",
10855
+ "_model_module_version": "1.2.0",
10856
+ "_model_name": "LayoutModel",
10857
+ "_view_count": null,
10858
+ "_view_module": "@jupyter-widgets/base",
10859
+ "_view_module_version": "1.2.0",
10860
+ "_view_name": "LayoutView",
10861
+ "align_content": null,
10862
+ "align_items": null,
10863
+ "align_self": null,
10864
+ "border": null,
10865
+ "bottom": null,
10866
+ "display": null,
10867
+ "flex": null,
10868
+ "flex_flow": null,
10869
+ "grid_area": null,
10870
+ "grid_auto_columns": null,
10871
+ "grid_auto_flow": null,
10872
+ "grid_auto_rows": null,
10873
+ "grid_column": null,
10874
+ "grid_gap": null,
10875
+ "grid_row": null,
10876
+ "grid_template_areas": null,
10877
+ "grid_template_columns": null,
10878
+ "grid_template_rows": null,
10879
+ "height": null,
10880
+ "justify_content": null,
10881
+ "justify_items": null,
10882
+ "left": null,
10883
+ "margin": null,
10884
+ "max_height": null,
10885
+ "max_width": null,
10886
+ "min_height": null,
10887
+ "min_width": null,
10888
+ "object_fit": null,
10889
+ "object_position": null,
10890
+ "order": null,
10891
+ "overflow": null,
10892
+ "overflow_x": null,
10893
+ "overflow_y": null,
10894
+ "padding": null,
10895
+ "right": null,
10896
+ "top": null,
10897
+ "visibility": null,
10898
+ "width": null
10899
+ }
10900
+ },
10901
+ "5747603d9e294fa788d197c403940b64": {
10902
+ "model_module": "@jupyter-widgets/base",
10903
+ "model_name": "LayoutModel",
10904
+ "model_module_version": "1.2.0",
10905
+ "state": {
10906
+ "_model_module": "@jupyter-widgets/base",
10907
+ "_model_module_version": "1.2.0",
10908
+ "_model_name": "LayoutModel",
10909
+ "_view_count": null,
10910
+ "_view_module": "@jupyter-widgets/base",
10911
+ "_view_module_version": "1.2.0",
10912
+ "_view_name": "LayoutView",
10913
+ "align_content": null,
10914
+ "align_items": null,
10915
+ "align_self": null,
10916
+ "border": null,
10917
+ "bottom": null,
10918
+ "display": null,
10919
+ "flex": null,
10920
+ "flex_flow": null,
10921
+ "grid_area": null,
10922
+ "grid_auto_columns": null,
10923
+ "grid_auto_flow": null,
10924
+ "grid_auto_rows": null,
10925
+ "grid_column": null,
10926
+ "grid_gap": null,
10927
+ "grid_row": null,
10928
+ "grid_template_areas": null,
10929
+ "grid_template_columns": null,
10930
+ "grid_template_rows": null,
10931
+ "height": null,
10932
+ "justify_content": null,
10933
+ "justify_items": null,
10934
+ "left": null,
10935
+ "margin": null,
10936
+ "max_height": null,
10937
+ "max_width": null,
10938
+ "min_height": null,
10939
+ "min_width": null,
10940
+ "object_fit": null,
10941
+ "object_position": null,
10942
+ "order": null,
10943
+ "overflow": null,
10944
+ "overflow_x": null,
10945
+ "overflow_y": null,
10946
+ "padding": null,
10947
+ "right": null,
10948
+ "top": null,
10949
+ "visibility": null,
10950
+ "width": null
10951
+ }
10952
+ },
10953
+ "c0fbde154e6c4e599a6d9d0829816548": {
10954
+ "model_module": "@jupyter-widgets/controls",
10955
+ "model_name": "DescriptionStyleModel",
10956
+ "model_module_version": "1.5.0",
10957
+ "state": {
10958
+ "_model_module": "@jupyter-widgets/controls",
10959
+ "_model_module_version": "1.5.0",
10960
+ "_model_name": "DescriptionStyleModel",
10961
+ "_view_count": null,
10962
+ "_view_module": "@jupyter-widgets/base",
10963
+ "_view_module_version": "1.2.0",
10964
+ "_view_name": "StyleView",
10965
+ "description_width": ""
10966
+ }
10967
+ },
10968
+ "b23276da91514942b475c2e912152b98": {
10969
+ "model_module": "@jupyter-widgets/base",
10970
+ "model_name": "LayoutModel",
10971
+ "model_module_version": "1.2.0",
10972
+ "state": {
10973
+ "_model_module": "@jupyter-widgets/base",
10974
+ "_model_module_version": "1.2.0",
10975
+ "_model_name": "LayoutModel",
10976
+ "_view_count": null,
10977
+ "_view_module": "@jupyter-widgets/base",
10978
+ "_view_module_version": "1.2.0",
10979
+ "_view_name": "LayoutView",
10980
+ "align_content": null,
10981
+ "align_items": null,
10982
+ "align_self": null,
10983
+ "border": null,
10984
+ "bottom": null,
10985
+ "display": null,
10986
+ "flex": null,
10987
+ "flex_flow": null,
10988
+ "grid_area": null,
10989
+ "grid_auto_columns": null,
10990
+ "grid_auto_flow": null,
10991
+ "grid_auto_rows": null,
10992
+ "grid_column": null,
10993
+ "grid_gap": null,
10994
+ "grid_row": null,
10995
+ "grid_template_areas": null,
10996
+ "grid_template_columns": null,
10997
+ "grid_template_rows": null,
10998
+ "height": null,
10999
+ "justify_content": null,
11000
+ "justify_items": null,
11001
+ "left": null,
11002
+ "margin": null,
11003
+ "max_height": null,
11004
+ "max_width": null,
11005
+ "min_height": null,
11006
+ "min_width": null,
11007
+ "object_fit": null,
11008
+ "object_position": null,
11009
+ "order": null,
11010
+ "overflow": null,
11011
+ "overflow_x": null,
11012
+ "overflow_y": null,
11013
+ "padding": null,
11014
+ "right": null,
11015
+ "top": null,
11016
+ "visibility": null,
11017
+ "width": null
11018
+ }
11019
+ },
11020
+ "50ed875cbf0649faba421a6a40fb9214": {
11021
+ "model_module": "@jupyter-widgets/controls",
11022
+ "model_name": "ProgressStyleModel",
11023
+ "model_module_version": "1.5.0",
11024
+ "state": {
11025
+ "_model_module": "@jupyter-widgets/controls",
11026
+ "_model_module_version": "1.5.0",
11027
+ "_model_name": "ProgressStyleModel",
11028
+ "_view_count": null,
11029
+ "_view_module": "@jupyter-widgets/base",
11030
+ "_view_module_version": "1.2.0",
11031
+ "_view_name": "StyleView",
11032
+ "bar_color": null,
11033
+ "description_width": ""
11034
+ }
11035
+ },
11036
+ "45b23a89b6bc45b3a0b1645d2c745db8": {
11037
+ "model_module": "@jupyter-widgets/base",
11038
+ "model_name": "LayoutModel",
11039
+ "model_module_version": "1.2.0",
11040
+ "state": {
11041
+ "_model_module": "@jupyter-widgets/base",
11042
+ "_model_module_version": "1.2.0",
11043
+ "_model_name": "LayoutModel",
11044
+ "_view_count": null,
11045
+ "_view_module": "@jupyter-widgets/base",
11046
+ "_view_module_version": "1.2.0",
11047
+ "_view_name": "LayoutView",
11048
+ "align_content": null,
11049
+ "align_items": null,
11050
+ "align_self": null,
11051
+ "border": null,
11052
+ "bottom": null,
11053
+ "display": null,
11054
+ "flex": null,
11055
+ "flex_flow": null,
11056
+ "grid_area": null,
11057
+ "grid_auto_columns": null,
11058
+ "grid_auto_flow": null,
11059
+ "grid_auto_rows": null,
11060
+ "grid_column": null,
11061
+ "grid_gap": null,
11062
+ "grid_row": null,
11063
+ "grid_template_areas": null,
11064
+ "grid_template_columns": null,
11065
+ "grid_template_rows": null,
11066
+ "height": null,
11067
+ "justify_content": null,
11068
+ "justify_items": null,
11069
+ "left": null,
11070
+ "margin": null,
11071
+ "max_height": null,
11072
+ "max_width": null,
11073
+ "min_height": null,
11074
+ "min_width": null,
11075
+ "object_fit": null,
11076
+ "object_position": null,
11077
+ "order": null,
11078
+ "overflow": null,
11079
+ "overflow_x": null,
11080
+ "overflow_y": null,
11081
+ "padding": null,
11082
+ "right": null,
11083
+ "top": null,
11084
+ "visibility": null,
11085
+ "width": null
11086
+ }
11087
+ },
11088
+ "e4f69091e840474a8fd321404fdb460f": {
11089
+ "model_module": "@jupyter-widgets/controls",
11090
+ "model_name": "DescriptionStyleModel",
11091
+ "model_module_version": "1.5.0",
11092
+ "state": {
11093
+ "_model_module": "@jupyter-widgets/controls",
11094
+ "_model_module_version": "1.5.0",
11095
+ "_model_name": "DescriptionStyleModel",
11096
+ "_view_count": null,
11097
+ "_view_module": "@jupyter-widgets/base",
11098
+ "_view_module_version": "1.2.0",
11099
+ "_view_name": "StyleView",
11100
+ "description_width": ""
11101
+ }
11102
  }
11103
  }
11104
  }