Akshat1000 commited on
Commit
b9c6fd9
1 Parent(s): 8c610d5

Upload llllmmm.ipynb

Browse files
Files changed (1) hide show
  1. llllmmm.ipynb +1971 -135
llllmmm.ipynb CHANGED
@@ -1,144 +1,1980 @@
1
  {
2
- "cells": [
3
- {
4
- "cell_type": "code",
5
- "id": "initial_id",
6
- "metadata": {
7
- "ExecuteTime": {
8
- "end_time": "2024-07-01T11:08:00.253851Z",
9
- "start_time": "2024-07-01T11:08:00.067738Z"
10
- }
11
- },
12
- "source": [
13
- "import torch\n",
14
- "from transformers import AutoTokenizer, AutoModelForCausalLM,TrainingArguments\n",
15
- "device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")"
16
- ],
17
- "outputs": [],
18
- "execution_count": 2
19
- },
20
- {
21
- "cell_type": "code",
22
- "id": "df5ce2489db64f8d",
23
- "metadata": {
24
- "ExecuteTime": {
25
- "end_time": "2024-07-01T11:08:15.731889Z",
26
- "start_time": "2024-07-01T11:08:03.640950Z"
27
- }
28
- },
29
- "source": [
30
- "model = AutoModelForCausalLM.from_pretrained(\"meta-llama/Llama-2-7b-hf\", device_map=\"auto\", torch_dtype = \"auto\",cache_dir=\"D:/a\" )\n",
31
- "tokenizer = AutoTokenizer.from_pretrained(\"meta-llama/Llama-2-7b-hf\", cache_dir=\"D:/a\", use_fast=True)"
32
- ],
33
- "outputs": [
34
  {
35
- "data": {
36
- "text/plain": [
37
- "Loading checkpoint shards: 0%| | 0/2 [00:00<?, ?it/s]"
 
 
 
 
 
 
 
 
 
 
 
38
  ],
39
- "application/vnd.jupyter.widget-view+json": {
40
- "version_major": 2,
41
- "version_minor": 0,
42
- "model_id": "475b288bdaa84157adbb7b99f89c7e5c"
43
- }
44
- },
45
- "metadata": {},
46
- "output_type": "display_data"
47
  },
48
  {
49
- "name": "stderr",
50
- "output_type": "stream",
51
- "text": [
52
- "WARNING:root:Some parameters are on the meta device device because they were offloaded to the disk.\n"
53
- ]
54
- }
55
- ],
56
- "execution_count": 3
57
- },
58
- {
59
- "cell_type": "code",
60
- "id": "7ce8ee88e61ac738",
61
- "metadata": {
62
- "ExecuteTime": {
63
- "end_time": "2024-07-01T11:08:50.346303Z",
64
- "start_time": "2024-07-01T11:08:50.336252Z"
65
- }
66
- },
67
- "source": [
68
- "def get_llama2_response(prompt, max_new_tokens=50):\n",
69
- " inputs = tokenizer(prompt, return_tensors=\"pt\").to(device)\n",
70
- " outputs = model.generate(**inputs, max_new_tokens=max_new_tokens, temperature= 0.00001)\n",
71
- " response = tokenizer.decode(outputs(0), skip_special_tokens=True)\n",
72
- " return response"
73
- ],
74
- "outputs": [],
75
- "execution_count": 7
76
- },
77
- {
78
- "metadata": {},
79
- "cell_type": "code",
80
- "outputs": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  {
82
- "data": {
83
- "text/plain": [
84
- "'Q:how to find the llama A:The llama is a South American camelid, a domesticated species of the genus Lama. It is used for'"
85
- ]
86
- },
87
- "execution_count": 9,
88
- "metadata": {},
89
- "output_type": "execute_result"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  }
91
- ],
92
- "execution_count": 9,
93
- "source": [
94
- "prompt = \"Q:how to find the llama A:\"\n",
95
- "get_llama2_response(prompt, max_new_tokens=25)"
96
- ],
97
- "id": "a6ad65ea85069793"
98
- },
99
- {
100
- "metadata": {
101
- "jupyter": {
102
- "is_executing": true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  }
104
- },
105
- "cell_type": "code",
106
- "source": [
107
- "prompt = \"Q:SQL query to extract data from Employee Table A:\"\n",
108
- "get_llama2_response(prompt, max_new_tokens=25)"
109
- ],
110
- "id": "de9f0fcc6dc9fa82",
111
- "outputs": [],
112
- "execution_count": null
113
- },
114
- {
115
- "metadata": {},
116
- "cell_type": "code",
117
- "source": "",
118
- "id": "e7f9c4411f2d8b57",
119
- "outputs": [],
120
- "execution_count": null
121
- }
122
- ],
123
- "metadata": {
124
- "kernelspec": {
125
- "display_name": "Python 3 (ipykernel)",
126
- "language": "python",
127
- "name": "python3"
128
  },
129
- "language_info": {
130
- "codemirror_mode": {
131
- "name": "ipython",
132
- "version": 3
133
- },
134
- "file_extension": ".py",
135
- "mimetype": "text/x-python",
136
- "name": "python",
137
- "nbconvert_exporter": "python",
138
- "pygments_lexer": "ipython3",
139
- "version": "3.12.4"
140
- }
141
- },
142
- "nbformat": 4,
143
- "nbformat_minor": 5
144
- }
 
1
  {
2
+ "cells": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  {
4
+ "cell_type": "code",
5
+ "id": "initial_id",
6
+ "metadata": {
7
+ "ExecuteTime": {
8
+ "end_time": "2024-07-01T11:08:00.253851Z",
9
+ "start_time": "2024-07-01T11:08:00.067738Z"
10
+ },
11
+ "id": "initial_id"
12
+ },
13
+ "source": [
14
+ "import torch\n",
15
+ "from transformers import AutoTokenizer, AutoModelForSeq2SeqLM, TrainingArguments\n",
16
+ "device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n",
17
+ "modelName=\"google-t5/t5-large\""
18
  ],
19
+ "outputs": [],
20
+ "execution_count": 11
 
 
 
 
 
 
21
  },
22
  {
23
+ "cell_type": "code",
24
+ "id": "df5ce2489db64f8d",
25
+ "metadata": {
26
+ "ExecuteTime": {
27
+ "end_time": "2024-07-01T11:08:15.731889Z",
28
+ "start_time": "2024-07-01T11:08:03.640950Z"
29
+ },
30
+ "colab": {
31
+ "base_uri": "https://localhost:8080/",
32
+ "height": 336,
33
+ "referenced_widgets": [
34
+ "862cf57104f9417c89304dd4dabe423b",
35
+ "dd0486901a544b3b9a2241a7c2687e45",
36
+ "83db99b45e07443f93323b0d4a2b6123",
37
+ "1f870de8520646e48f81158c0e91cc69",
38
+ "fbd62b548faa4b57900ad114f616b8be",
39
+ "e5831ea8ddb24c13a58206c3b2105289",
40
+ "6211f1d590884b3ea13a5b3b327e5ce4",
41
+ "baa5bc3b299c4d92a40cc57dde604234",
42
+ "26c35a5e2404485b9edafd208e591ec4",
43
+ "be8461f2a274440fb986b0cab0ee7294",
44
+ "a32d56f15ca14ee983428a17a98b6428",
45
+ "ea1b0a22fbc1463aba924049c9e14f01",
46
+ "b75e1eaeaeb34482bd9ad362fa7234df",
47
+ "1464d10b061d4141a80c11bb8f43d421",
48
+ "d319f231bd3b463799b5ccff4d0e2991",
49
+ "d98d861b836b4ac7b90d032d0e626126",
50
+ "65339806b36248609c0cdf5b2058da99",
51
+ "811774b3b16d40b1ab35ac374c2b5141",
52
+ "21e139b2a50f4eb0a4bfbfd9da79b4cc",
53
+ "8bdc1bc6d52445d99454f4c8b1903044",
54
+ "8b0c04b3fe7546858d0555144cf40e3b",
55
+ "892bd307f77b45c885c1a61bfd229439",
56
+ "aee8a770b18341de904a7e2bbb019424",
57
+ "e5d7d41c1e67451cae59b992706c0592",
58
+ "ebb9e9e05ac9452292bf734dbb2e707d",
59
+ "35e46cf2dca748368c95703794d7c0ed",
60
+ "becd058ba229403d85b906c49db69e61",
61
+ "ab406b8adf4146078bc5c57d31f6f405",
62
+ "19a48a7be73d46858f0d3d35d97e5c1d",
63
+ "e445e34f32944a0e88df4d7bb88251f3",
64
+ "322ad5c458884148b410aedc7b076d47",
65
+ "4d5e46b60ae1462d9d9d00b55342bd06",
66
+ "8065efbe037946b5a99a92df63bb65d1",
67
+ "b4835d10c5cf45b7b5d00cc1f4c7224b",
68
+ "d5dc3aa40ba747e48d40fc6c7e1c9ab9",
69
+ "94b13990da8140d289eb48460afb239b",
70
+ "cd7fe2f3f3a945a1bde15a24b9bc124b",
71
+ "69b58423c5da48b985f6365a0c3be9ce",
72
+ "1bc829b42be24648908dc8e93bb7d589",
73
+ "c7acf97b800a4e5d8c4ba5197ecb650b",
74
+ "ae5ed23ebf514ffbb4d2ab0b32dc0875",
75
+ "3bd82485e1ae44dabb4c07de0adbb1a2",
76
+ "d16ffd33b7434c9f8a9132438a7c55cb",
77
+ "eb794ab5bfd2413c86380b5dc5f31494",
78
+ "698856b6905d4f82b59e95851d9ae534",
79
+ "de6c4520d29146eab51a49976107f172",
80
+ "a6ce2d53ad8f462f9c169708f6d5c73d",
81
+ "d560b2a5ff664d12956c742d51c1646f",
82
+ "b205eb1e6d3446f5b75f1d783bfbbcf6",
83
+ "c2e186e1bbfa4ff0a4b1e679011dc920",
84
+ "a49d8021b0074bafabd89995b0e5a0e7",
85
+ "eb2bfb8ebb2b45b6a67247db552d1df6",
86
+ "920c4484283c4355a209bfb5188b6a6e",
87
+ "3b0cf610ae764791805a2ceafc61adc4",
88
+ "a2493b9c90f3421db9b727c1a7396e8d"
89
+ ]
90
+ },
91
+ "id": "df5ce2489db64f8d",
92
+ "outputId": "837fe222-f0e5-4c9a-bc94-bb3d83414c29"
93
+ },
94
+ "source": [
95
+ "tokenizer = AutoTokenizer.from_pretrained(modelName)\n",
96
+ "model = AutoModelForSeq2SeqLM.from_pretrained(modelName).to(device)"
97
+ ],
98
+ "outputs": [
99
+ {
100
+ "output_type": "stream",
101
+ "name": "stderr",
102
+ "text": [
103
+ "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_token.py:89: UserWarning: \n",
104
+ "The secret `HF_TOKEN` does not exist in your Colab secrets.\n",
105
+ "To authenticate with the Hugging Face Hub, create a token in your settings tab (https://huggingface.co/settings/tokens), set it as secret in your Google Colab and restart your session.\n",
106
+ "You will be able to reuse this secret in all of your notebooks.\n",
107
+ "Please note that authentication is recommended but still optional to access public models or datasets.\n",
108
+ " warnings.warn(\n",
109
+ "/usr/local/lib/python3.10/dist-packages/huggingface_hub/file_download.py:1132: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`.\n",
110
+ " warnings.warn(\n"
111
+ ]
112
+ },
113
+ {
114
+ "output_type": "display_data",
115
+ "data": {
116
+ "text/plain": [
117
+ "config.json: 0%| | 0.00/1.21k [00:00<?, ?B/s]"
118
+ ],
119
+ "application/vnd.jupyter.widget-view+json": {
120
+ "version_major": 2,
121
+ "version_minor": 0,
122
+ "model_id": "862cf57104f9417c89304dd4dabe423b"
123
+ }
124
+ },
125
+ "metadata": {}
126
+ },
127
+ {
128
+ "output_type": "display_data",
129
+ "data": {
130
+ "text/plain": [
131
+ "spiece.model: 0%| | 0.00/792k [00:00<?, ?B/s]"
132
+ ],
133
+ "application/vnd.jupyter.widget-view+json": {
134
+ "version_major": 2,
135
+ "version_minor": 0,
136
+ "model_id": "ea1b0a22fbc1463aba924049c9e14f01"
137
+ }
138
+ },
139
+ "metadata": {}
140
+ },
141
+ {
142
+ "output_type": "display_data",
143
+ "data": {
144
+ "text/plain": [
145
+ "tokenizer.json: 0%| | 0.00/1.39M [00:00<?, ?B/s]"
146
+ ],
147
+ "application/vnd.jupyter.widget-view+json": {
148
+ "version_major": 2,
149
+ "version_minor": 0,
150
+ "model_id": "aee8a770b18341de904a7e2bbb019424"
151
+ }
152
+ },
153
+ "metadata": {}
154
+ },
155
+ {
156
+ "output_type": "display_data",
157
+ "data": {
158
+ "text/plain": [
159
+ "model.safetensors: 0%| | 0.00/2.95G [00:00<?, ?B/s]"
160
+ ],
161
+ "application/vnd.jupyter.widget-view+json": {
162
+ "version_major": 2,
163
+ "version_minor": 0,
164
+ "model_id": "b4835d10c5cf45b7b5d00cc1f4c7224b"
165
+ }
166
+ },
167
+ "metadata": {}
168
+ },
169
+ {
170
+ "output_type": "display_data",
171
+ "data": {
172
+ "text/plain": [
173
+ "generation_config.json: 0%| | 0.00/147 [00:00<?, ?B/s]"
174
+ ],
175
+ "application/vnd.jupyter.widget-view+json": {
176
+ "version_major": 2,
177
+ "version_minor": 0,
178
+ "model_id": "698856b6905d4f82b59e95851d9ae534"
179
+ }
180
+ },
181
+ "metadata": {}
182
+ }
183
+ ],
184
+ "execution_count": 2
185
+ },
186
  {
187
+ "cell_type": "code",
188
+ "id": "7ce8ee88e61ac738",
189
+ "metadata": {
190
+ "ExecuteTime": {
191
+ "end_time": "2024-07-01T11:08:50.346303Z",
192
+ "start_time": "2024-07-01T11:08:50.336252Z"
193
+ },
194
+ "id": "7ce8ee88e61ac738"
195
+ },
196
+ "source": [
197
+ "def get_llama2_response(prompt, max_new_tokens=100):\n",
198
+ " inputs = tokenizer(prompt, return_tensors=\"pt\")\n",
199
+ " outputs = model.generate(**inputs, max_new_tokens=max_new_tokens, temperature= 1)\n",
200
+ " response = tokenizer.decode(outputs[0], skip_special_tokens=True ,clean_up_tokenization_spaces=True) # Use indexing instead of calling\n",
201
+ " return response"
202
+ ],
203
+ "outputs": [],
204
+ "execution_count": 7
205
+ },
206
+ {
207
+ "metadata": {
208
+ "jupyter": {
209
+ "is_executing": true
210
+ },
211
+ "colab": {
212
+ "base_uri": "https://localhost:8080/",
213
+ "height": 70
214
+ },
215
+ "id": "de9f0fcc6dc9fa82",
216
+ "outputId": "c860d3e9-d630-491c-a837-dc84ff8be5ac"
217
+ },
218
+ "cell_type": "code",
219
+ "source": [
220
+ "prompt =\"Explain How TO Ride A Horse:\"\n",
221
+ "get_llama2_response(prompt, max_new_tokens=100)"
222
+ ],
223
+ "id": "de9f0fcc6dc9fa82",
224
+ "outputs": [
225
+ {
226
+ "output_type": "execute_result",
227
+ "data": {
228
+ "text/plain": [
229
+ "'- How TO RIDE A Horse: How TO How TO Ride A Horse: How TO Ride A Horse: How TO Ride A Horse: How TO Ride A Horse: How TO Ride A Horse: How TO Ride A Horse: How TO Ride A Horse: How TO Ride A Horse: How TO Ride A Horse:. Explain How TO Ride Explain How TO Ride A Horse:::::::: Explain How'"
230
+ ],
231
+ "application/vnd.google.colaboratory.intrinsic+json": {
232
+ "type": "string"
233
+ }
234
+ },
235
+ "metadata": {},
236
+ "execution_count": 10
237
+ }
238
+ ],
239
+ "execution_count": 10
240
  }
241
+ ],
242
+ "metadata": {
243
+ "kernelspec": {
244
+ "display_name": "Python 3 (ipykernel)",
245
+ "language": "python",
246
+ "name": "python3"
247
+ },
248
+ "language_info": {
249
+ "codemirror_mode": {
250
+ "name": "ipython",
251
+ "version": 3
252
+ },
253
+ "file_extension": ".py",
254
+ "mimetype": "text/x-python",
255
+ "name": "python",
256
+ "nbconvert_exporter": "python",
257
+ "pygments_lexer": "ipython3",
258
+ "version": "3.12.4"
259
+ },
260
+ "colab": {
261
+ "provenance": []
262
+ },
263
+ "widgets": {
264
+ "application/vnd.jupyter.widget-state+json": {
265
+ "862cf57104f9417c89304dd4dabe423b": {
266
+ "model_module": "@jupyter-widgets/controls",
267
+ "model_name": "HBoxModel",
268
+ "model_module_version": "1.5.0",
269
+ "state": {
270
+ "_dom_classes": [],
271
+ "_model_module": "@jupyter-widgets/controls",
272
+ "_model_module_version": "1.5.0",
273
+ "_model_name": "HBoxModel",
274
+ "_view_count": null,
275
+ "_view_module": "@jupyter-widgets/controls",
276
+ "_view_module_version": "1.5.0",
277
+ "_view_name": "HBoxView",
278
+ "box_style": "",
279
+ "children": [
280
+ "IPY_MODEL_dd0486901a544b3b9a2241a7c2687e45",
281
+ "IPY_MODEL_83db99b45e07443f93323b0d4a2b6123",
282
+ "IPY_MODEL_1f870de8520646e48f81158c0e91cc69"
283
+ ],
284
+ "layout": "IPY_MODEL_fbd62b548faa4b57900ad114f616b8be"
285
+ }
286
+ },
287
+ "dd0486901a544b3b9a2241a7c2687e45": {
288
+ "model_module": "@jupyter-widgets/controls",
289
+ "model_name": "HTMLModel",
290
+ "model_module_version": "1.5.0",
291
+ "state": {
292
+ "_dom_classes": [],
293
+ "_model_module": "@jupyter-widgets/controls",
294
+ "_model_module_version": "1.5.0",
295
+ "_model_name": "HTMLModel",
296
+ "_view_count": null,
297
+ "_view_module": "@jupyter-widgets/controls",
298
+ "_view_module_version": "1.5.0",
299
+ "_view_name": "HTMLView",
300
+ "description": "",
301
+ "description_tooltip": null,
302
+ "layout": "IPY_MODEL_e5831ea8ddb24c13a58206c3b2105289",
303
+ "placeholder": "​",
304
+ "style": "IPY_MODEL_6211f1d590884b3ea13a5b3b327e5ce4",
305
+ "value": "config.json: 100%"
306
+ }
307
+ },
308
+ "83db99b45e07443f93323b0d4a2b6123": {
309
+ "model_module": "@jupyter-widgets/controls",
310
+ "model_name": "FloatProgressModel",
311
+ "model_module_version": "1.5.0",
312
+ "state": {
313
+ "_dom_classes": [],
314
+ "_model_module": "@jupyter-widgets/controls",
315
+ "_model_module_version": "1.5.0",
316
+ "_model_name": "FloatProgressModel",
317
+ "_view_count": null,
318
+ "_view_module": "@jupyter-widgets/controls",
319
+ "_view_module_version": "1.5.0",
320
+ "_view_name": "ProgressView",
321
+ "bar_style": "success",
322
+ "description": "",
323
+ "description_tooltip": null,
324
+ "layout": "IPY_MODEL_baa5bc3b299c4d92a40cc57dde604234",
325
+ "max": 1209,
326
+ "min": 0,
327
+ "orientation": "horizontal",
328
+ "style": "IPY_MODEL_26c35a5e2404485b9edafd208e591ec4",
329
+ "value": 1209
330
+ }
331
+ },
332
+ "1f870de8520646e48f81158c0e91cc69": {
333
+ "model_module": "@jupyter-widgets/controls",
334
+ "model_name": "HTMLModel",
335
+ "model_module_version": "1.5.0",
336
+ "state": {
337
+ "_dom_classes": [],
338
+ "_model_module": "@jupyter-widgets/controls",
339
+ "_model_module_version": "1.5.0",
340
+ "_model_name": "HTMLModel",
341
+ "_view_count": null,
342
+ "_view_module": "@jupyter-widgets/controls",
343
+ "_view_module_version": "1.5.0",
344
+ "_view_name": "HTMLView",
345
+ "description": "",
346
+ "description_tooltip": null,
347
+ "layout": "IPY_MODEL_be8461f2a274440fb986b0cab0ee7294",
348
+ "placeholder": "​",
349
+ "style": "IPY_MODEL_a32d56f15ca14ee983428a17a98b6428",
350
+ "value": " 1.21k/1.21k [00:00&lt;00:00, 75.6kB/s]"
351
+ }
352
+ },
353
+ "fbd62b548faa4b57900ad114f616b8be": {
354
+ "model_module": "@jupyter-widgets/base",
355
+ "model_name": "LayoutModel",
356
+ "model_module_version": "1.2.0",
357
+ "state": {
358
+ "_model_module": "@jupyter-widgets/base",
359
+ "_model_module_version": "1.2.0",
360
+ "_model_name": "LayoutModel",
361
+ "_view_count": null,
362
+ "_view_module": "@jupyter-widgets/base",
363
+ "_view_module_version": "1.2.0",
364
+ "_view_name": "LayoutView",
365
+ "align_content": null,
366
+ "align_items": null,
367
+ "align_self": null,
368
+ "border": null,
369
+ "bottom": null,
370
+ "display": null,
371
+ "flex": null,
372
+ "flex_flow": null,
373
+ "grid_area": null,
374
+ "grid_auto_columns": null,
375
+ "grid_auto_flow": null,
376
+ "grid_auto_rows": null,
377
+ "grid_column": null,
378
+ "grid_gap": null,
379
+ "grid_row": null,
380
+ "grid_template_areas": null,
381
+ "grid_template_columns": null,
382
+ "grid_template_rows": null,
383
+ "height": null,
384
+ "justify_content": null,
385
+ "justify_items": null,
386
+ "left": null,
387
+ "margin": null,
388
+ "max_height": null,
389
+ "max_width": null,
390
+ "min_height": null,
391
+ "min_width": null,
392
+ "object_fit": null,
393
+ "object_position": null,
394
+ "order": null,
395
+ "overflow": null,
396
+ "overflow_x": null,
397
+ "overflow_y": null,
398
+ "padding": null,
399
+ "right": null,
400
+ "top": null,
401
+ "visibility": null,
402
+ "width": null
403
+ }
404
+ },
405
+ "e5831ea8ddb24c13a58206c3b2105289": {
406
+ "model_module": "@jupyter-widgets/base",
407
+ "model_name": "LayoutModel",
408
+ "model_module_version": "1.2.0",
409
+ "state": {
410
+ "_model_module": "@jupyter-widgets/base",
411
+ "_model_module_version": "1.2.0",
412
+ "_model_name": "LayoutModel",
413
+ "_view_count": null,
414
+ "_view_module": "@jupyter-widgets/base",
415
+ "_view_module_version": "1.2.0",
416
+ "_view_name": "LayoutView",
417
+ "align_content": null,
418
+ "align_items": null,
419
+ "align_self": null,
420
+ "border": null,
421
+ "bottom": null,
422
+ "display": null,
423
+ "flex": null,
424
+ "flex_flow": null,
425
+ "grid_area": null,
426
+ "grid_auto_columns": null,
427
+ "grid_auto_flow": null,
428
+ "grid_auto_rows": null,
429
+ "grid_column": null,
430
+ "grid_gap": null,
431
+ "grid_row": null,
432
+ "grid_template_areas": null,
433
+ "grid_template_columns": null,
434
+ "grid_template_rows": null,
435
+ "height": null,
436
+ "justify_content": null,
437
+ "justify_items": null,
438
+ "left": null,
439
+ "margin": null,
440
+ "max_height": null,
441
+ "max_width": null,
442
+ "min_height": null,
443
+ "min_width": null,
444
+ "object_fit": null,
445
+ "object_position": null,
446
+ "order": null,
447
+ "overflow": null,
448
+ "overflow_x": null,
449
+ "overflow_y": null,
450
+ "padding": null,
451
+ "right": null,
452
+ "top": null,
453
+ "visibility": null,
454
+ "width": null
455
+ }
456
+ },
457
+ "6211f1d590884b3ea13a5b3b327e5ce4": {
458
+ "model_module": "@jupyter-widgets/controls",
459
+ "model_name": "DescriptionStyleModel",
460
+ "model_module_version": "1.5.0",
461
+ "state": {
462
+ "_model_module": "@jupyter-widgets/controls",
463
+ "_model_module_version": "1.5.0",
464
+ "_model_name": "DescriptionStyleModel",
465
+ "_view_count": null,
466
+ "_view_module": "@jupyter-widgets/base",
467
+ "_view_module_version": "1.2.0",
468
+ "_view_name": "StyleView",
469
+ "description_width": ""
470
+ }
471
+ },
472
+ "baa5bc3b299c4d92a40cc57dde604234": {
473
+ "model_module": "@jupyter-widgets/base",
474
+ "model_name": "LayoutModel",
475
+ "model_module_version": "1.2.0",
476
+ "state": {
477
+ "_model_module": "@jupyter-widgets/base",
478
+ "_model_module_version": "1.2.0",
479
+ "_model_name": "LayoutModel",
480
+ "_view_count": null,
481
+ "_view_module": "@jupyter-widgets/base",
482
+ "_view_module_version": "1.2.0",
483
+ "_view_name": "LayoutView",
484
+ "align_content": null,
485
+ "align_items": null,
486
+ "align_self": null,
487
+ "border": null,
488
+ "bottom": null,
489
+ "display": null,
490
+ "flex": null,
491
+ "flex_flow": null,
492
+ "grid_area": null,
493
+ "grid_auto_columns": null,
494
+ "grid_auto_flow": null,
495
+ "grid_auto_rows": null,
496
+ "grid_column": null,
497
+ "grid_gap": null,
498
+ "grid_row": null,
499
+ "grid_template_areas": null,
500
+ "grid_template_columns": null,
501
+ "grid_template_rows": null,
502
+ "height": null,
503
+ "justify_content": null,
504
+ "justify_items": null,
505
+ "left": null,
506
+ "margin": null,
507
+ "max_height": null,
508
+ "max_width": null,
509
+ "min_height": null,
510
+ "min_width": null,
511
+ "object_fit": null,
512
+ "object_position": null,
513
+ "order": null,
514
+ "overflow": null,
515
+ "overflow_x": null,
516
+ "overflow_y": null,
517
+ "padding": null,
518
+ "right": null,
519
+ "top": null,
520
+ "visibility": null,
521
+ "width": null
522
+ }
523
+ },
524
+ "26c35a5e2404485b9edafd208e591ec4": {
525
+ "model_module": "@jupyter-widgets/controls",
526
+ "model_name": "ProgressStyleModel",
527
+ "model_module_version": "1.5.0",
528
+ "state": {
529
+ "_model_module": "@jupyter-widgets/controls",
530
+ "_model_module_version": "1.5.0",
531
+ "_model_name": "ProgressStyleModel",
532
+ "_view_count": null,
533
+ "_view_module": "@jupyter-widgets/base",
534
+ "_view_module_version": "1.2.0",
535
+ "_view_name": "StyleView",
536
+ "bar_color": null,
537
+ "description_width": ""
538
+ }
539
+ },
540
+ "be8461f2a274440fb986b0cab0ee7294": {
541
+ "model_module": "@jupyter-widgets/base",
542
+ "model_name": "LayoutModel",
543
+ "model_module_version": "1.2.0",
544
+ "state": {
545
+ "_model_module": "@jupyter-widgets/base",
546
+ "_model_module_version": "1.2.0",
547
+ "_model_name": "LayoutModel",
548
+ "_view_count": null,
549
+ "_view_module": "@jupyter-widgets/base",
550
+ "_view_module_version": "1.2.0",
551
+ "_view_name": "LayoutView",
552
+ "align_content": null,
553
+ "align_items": null,
554
+ "align_self": null,
555
+ "border": null,
556
+ "bottom": null,
557
+ "display": null,
558
+ "flex": null,
559
+ "flex_flow": null,
560
+ "grid_area": null,
561
+ "grid_auto_columns": null,
562
+ "grid_auto_flow": null,
563
+ "grid_auto_rows": null,
564
+ "grid_column": null,
565
+ "grid_gap": null,
566
+ "grid_row": null,
567
+ "grid_template_areas": null,
568
+ "grid_template_columns": null,
569
+ "grid_template_rows": null,
570
+ "height": null,
571
+ "justify_content": null,
572
+ "justify_items": null,
573
+ "left": null,
574
+ "margin": null,
575
+ "max_height": null,
576
+ "max_width": null,
577
+ "min_height": null,
578
+ "min_width": null,
579
+ "object_fit": null,
580
+ "object_position": null,
581
+ "order": null,
582
+ "overflow": null,
583
+ "overflow_x": null,
584
+ "overflow_y": null,
585
+ "padding": null,
586
+ "right": null,
587
+ "top": null,
588
+ "visibility": null,
589
+ "width": null
590
+ }
591
+ },
592
+ "a32d56f15ca14ee983428a17a98b6428": {
593
+ "model_module": "@jupyter-widgets/controls",
594
+ "model_name": "DescriptionStyleModel",
595
+ "model_module_version": "1.5.0",
596
+ "state": {
597
+ "_model_module": "@jupyter-widgets/controls",
598
+ "_model_module_version": "1.5.0",
599
+ "_model_name": "DescriptionStyleModel",
600
+ "_view_count": null,
601
+ "_view_module": "@jupyter-widgets/base",
602
+ "_view_module_version": "1.2.0",
603
+ "_view_name": "StyleView",
604
+ "description_width": ""
605
+ }
606
+ },
607
+ "ea1b0a22fbc1463aba924049c9e14f01": {
608
+ "model_module": "@jupyter-widgets/controls",
609
+ "model_name": "HBoxModel",
610
+ "model_module_version": "1.5.0",
611
+ "state": {
612
+ "_dom_classes": [],
613
+ "_model_module": "@jupyter-widgets/controls",
614
+ "_model_module_version": "1.5.0",
615
+ "_model_name": "HBoxModel",
616
+ "_view_count": null,
617
+ "_view_module": "@jupyter-widgets/controls",
618
+ "_view_module_version": "1.5.0",
619
+ "_view_name": "HBoxView",
620
+ "box_style": "",
621
+ "children": [
622
+ "IPY_MODEL_b75e1eaeaeb34482bd9ad362fa7234df",
623
+ "IPY_MODEL_1464d10b061d4141a80c11bb8f43d421",
624
+ "IPY_MODEL_d319f231bd3b463799b5ccff4d0e2991"
625
+ ],
626
+ "layout": "IPY_MODEL_d98d861b836b4ac7b90d032d0e626126"
627
+ }
628
+ },
629
+ "b75e1eaeaeb34482bd9ad362fa7234df": {
630
+ "model_module": "@jupyter-widgets/controls",
631
+ "model_name": "HTMLModel",
632
+ "model_module_version": "1.5.0",
633
+ "state": {
634
+ "_dom_classes": [],
635
+ "_model_module": "@jupyter-widgets/controls",
636
+ "_model_module_version": "1.5.0",
637
+ "_model_name": "HTMLModel",
638
+ "_view_count": null,
639
+ "_view_module": "@jupyter-widgets/controls",
640
+ "_view_module_version": "1.5.0",
641
+ "_view_name": "HTMLView",
642
+ "description": "",
643
+ "description_tooltip": null,
644
+ "layout": "IPY_MODEL_65339806b36248609c0cdf5b2058da99",
645
+ "placeholder": "​",
646
+ "style": "IPY_MODEL_811774b3b16d40b1ab35ac374c2b5141",
647
+ "value": "spiece.model: 100%"
648
+ }
649
+ },
650
+ "1464d10b061d4141a80c11bb8f43d421": {
651
+ "model_module": "@jupyter-widgets/controls",
652
+ "model_name": "FloatProgressModel",
653
+ "model_module_version": "1.5.0",
654
+ "state": {
655
+ "_dom_classes": [],
656
+ "_model_module": "@jupyter-widgets/controls",
657
+ "_model_module_version": "1.5.0",
658
+ "_model_name": "FloatProgressModel",
659
+ "_view_count": null,
660
+ "_view_module": "@jupyter-widgets/controls",
661
+ "_view_module_version": "1.5.0",
662
+ "_view_name": "ProgressView",
663
+ "bar_style": "success",
664
+ "description": "",
665
+ "description_tooltip": null,
666
+ "layout": "IPY_MODEL_21e139b2a50f4eb0a4bfbfd9da79b4cc",
667
+ "max": 791656,
668
+ "min": 0,
669
+ "orientation": "horizontal",
670
+ "style": "IPY_MODEL_8bdc1bc6d52445d99454f4c8b1903044",
671
+ "value": 791656
672
+ }
673
+ },
674
+ "d319f231bd3b463799b5ccff4d0e2991": {
675
+ "model_module": "@jupyter-widgets/controls",
676
+ "model_name": "HTMLModel",
677
+ "model_module_version": "1.5.0",
678
+ "state": {
679
+ "_dom_classes": [],
680
+ "_model_module": "@jupyter-widgets/controls",
681
+ "_model_module_version": "1.5.0",
682
+ "_model_name": "HTMLModel",
683
+ "_view_count": null,
684
+ "_view_module": "@jupyter-widgets/controls",
685
+ "_view_module_version": "1.5.0",
686
+ "_view_name": "HTMLView",
687
+ "description": "",
688
+ "description_tooltip": null,
689
+ "layout": "IPY_MODEL_8b0c04b3fe7546858d0555144cf40e3b",
690
+ "placeholder": "​",
691
+ "style": "IPY_MODEL_892bd307f77b45c885c1a61bfd229439",
692
+ "value": " 792k/792k [00:00&lt;00:00, 10.4MB/s]"
693
+ }
694
+ },
695
+ "d98d861b836b4ac7b90d032d0e626126": {
696
+ "model_module": "@jupyter-widgets/base",
697
+ "model_name": "LayoutModel",
698
+ "model_module_version": "1.2.0",
699
+ "state": {
700
+ "_model_module": "@jupyter-widgets/base",
701
+ "_model_module_version": "1.2.0",
702
+ "_model_name": "LayoutModel",
703
+ "_view_count": null,
704
+ "_view_module": "@jupyter-widgets/base",
705
+ "_view_module_version": "1.2.0",
706
+ "_view_name": "LayoutView",
707
+ "align_content": null,
708
+ "align_items": null,
709
+ "align_self": null,
710
+ "border": null,
711
+ "bottom": null,
712
+ "display": null,
713
+ "flex": null,
714
+ "flex_flow": null,
715
+ "grid_area": null,
716
+ "grid_auto_columns": null,
717
+ "grid_auto_flow": null,
718
+ "grid_auto_rows": null,
719
+ "grid_column": null,
720
+ "grid_gap": null,
721
+ "grid_row": null,
722
+ "grid_template_areas": null,
723
+ "grid_template_columns": null,
724
+ "grid_template_rows": null,
725
+ "height": null,
726
+ "justify_content": null,
727
+ "justify_items": null,
728
+ "left": null,
729
+ "margin": null,
730
+ "max_height": null,
731
+ "max_width": null,
732
+ "min_height": null,
733
+ "min_width": null,
734
+ "object_fit": null,
735
+ "object_position": null,
736
+ "order": null,
737
+ "overflow": null,
738
+ "overflow_x": null,
739
+ "overflow_y": null,
740
+ "padding": null,
741
+ "right": null,
742
+ "top": null,
743
+ "visibility": null,
744
+ "width": null
745
+ }
746
+ },
747
+ "65339806b36248609c0cdf5b2058da99": {
748
+ "model_module": "@jupyter-widgets/base",
749
+ "model_name": "LayoutModel",
750
+ "model_module_version": "1.2.0",
751
+ "state": {
752
+ "_model_module": "@jupyter-widgets/base",
753
+ "_model_module_version": "1.2.0",
754
+ "_model_name": "LayoutModel",
755
+ "_view_count": null,
756
+ "_view_module": "@jupyter-widgets/base",
757
+ "_view_module_version": "1.2.0",
758
+ "_view_name": "LayoutView",
759
+ "align_content": null,
760
+ "align_items": null,
761
+ "align_self": null,
762
+ "border": null,
763
+ "bottom": null,
764
+ "display": null,
765
+ "flex": null,
766
+ "flex_flow": null,
767
+ "grid_area": null,
768
+ "grid_auto_columns": null,
769
+ "grid_auto_flow": null,
770
+ "grid_auto_rows": null,
771
+ "grid_column": null,
772
+ "grid_gap": null,
773
+ "grid_row": null,
774
+ "grid_template_areas": null,
775
+ "grid_template_columns": null,
776
+ "grid_template_rows": null,
777
+ "height": null,
778
+ "justify_content": null,
779
+ "justify_items": null,
780
+ "left": null,
781
+ "margin": null,
782
+ "max_height": null,
783
+ "max_width": null,
784
+ "min_height": null,
785
+ "min_width": null,
786
+ "object_fit": null,
787
+ "object_position": null,
788
+ "order": null,
789
+ "overflow": null,
790
+ "overflow_x": null,
791
+ "overflow_y": null,
792
+ "padding": null,
793
+ "right": null,
794
+ "top": null,
795
+ "visibility": null,
796
+ "width": null
797
+ }
798
+ },
799
+ "811774b3b16d40b1ab35ac374c2b5141": {
800
+ "model_module": "@jupyter-widgets/controls",
801
+ "model_name": "DescriptionStyleModel",
802
+ "model_module_version": "1.5.0",
803
+ "state": {
804
+ "_model_module": "@jupyter-widgets/controls",
805
+ "_model_module_version": "1.5.0",
806
+ "_model_name": "DescriptionStyleModel",
807
+ "_view_count": null,
808
+ "_view_module": "@jupyter-widgets/base",
809
+ "_view_module_version": "1.2.0",
810
+ "_view_name": "StyleView",
811
+ "description_width": ""
812
+ }
813
+ },
814
+ "21e139b2a50f4eb0a4bfbfd9da79b4cc": {
815
+ "model_module": "@jupyter-widgets/base",
816
+ "model_name": "LayoutModel",
817
+ "model_module_version": "1.2.0",
818
+ "state": {
819
+ "_model_module": "@jupyter-widgets/base",
820
+ "_model_module_version": "1.2.0",
821
+ "_model_name": "LayoutModel",
822
+ "_view_count": null,
823
+ "_view_module": "@jupyter-widgets/base",
824
+ "_view_module_version": "1.2.0",
825
+ "_view_name": "LayoutView",
826
+ "align_content": null,
827
+ "align_items": null,
828
+ "align_self": null,
829
+ "border": null,
830
+ "bottom": null,
831
+ "display": null,
832
+ "flex": null,
833
+ "flex_flow": null,
834
+ "grid_area": null,
835
+ "grid_auto_columns": null,
836
+ "grid_auto_flow": null,
837
+ "grid_auto_rows": null,
838
+ "grid_column": null,
839
+ "grid_gap": null,
840
+ "grid_row": null,
841
+ "grid_template_areas": null,
842
+ "grid_template_columns": null,
843
+ "grid_template_rows": null,
844
+ "height": null,
845
+ "justify_content": null,
846
+ "justify_items": null,
847
+ "left": null,
848
+ "margin": null,
849
+ "max_height": null,
850
+ "max_width": null,
851
+ "min_height": null,
852
+ "min_width": null,
853
+ "object_fit": null,
854
+ "object_position": null,
855
+ "order": null,
856
+ "overflow": null,
857
+ "overflow_x": null,
858
+ "overflow_y": null,
859
+ "padding": null,
860
+ "right": null,
861
+ "top": null,
862
+ "visibility": null,
863
+ "width": null
864
+ }
865
+ },
866
+ "8bdc1bc6d52445d99454f4c8b1903044": {
867
+ "model_module": "@jupyter-widgets/controls",
868
+ "model_name": "ProgressStyleModel",
869
+ "model_module_version": "1.5.0",
870
+ "state": {
871
+ "_model_module": "@jupyter-widgets/controls",
872
+ "_model_module_version": "1.5.0",
873
+ "_model_name": "ProgressStyleModel",
874
+ "_view_count": null,
875
+ "_view_module": "@jupyter-widgets/base",
876
+ "_view_module_version": "1.2.0",
877
+ "_view_name": "StyleView",
878
+ "bar_color": null,
879
+ "description_width": ""
880
+ }
881
+ },
882
+ "8b0c04b3fe7546858d0555144cf40e3b": {
883
+ "model_module": "@jupyter-widgets/base",
884
+ "model_name": "LayoutModel",
885
+ "model_module_version": "1.2.0",
886
+ "state": {
887
+ "_model_module": "@jupyter-widgets/base",
888
+ "_model_module_version": "1.2.0",
889
+ "_model_name": "LayoutModel",
890
+ "_view_count": null,
891
+ "_view_module": "@jupyter-widgets/base",
892
+ "_view_module_version": "1.2.0",
893
+ "_view_name": "LayoutView",
894
+ "align_content": null,
895
+ "align_items": null,
896
+ "align_self": null,
897
+ "border": null,
898
+ "bottom": null,
899
+ "display": null,
900
+ "flex": null,
901
+ "flex_flow": null,
902
+ "grid_area": null,
903
+ "grid_auto_columns": null,
904
+ "grid_auto_flow": null,
905
+ "grid_auto_rows": null,
906
+ "grid_column": null,
907
+ "grid_gap": null,
908
+ "grid_row": null,
909
+ "grid_template_areas": null,
910
+ "grid_template_columns": null,
911
+ "grid_template_rows": null,
912
+ "height": null,
913
+ "justify_content": null,
914
+ "justify_items": null,
915
+ "left": null,
916
+ "margin": null,
917
+ "max_height": null,
918
+ "max_width": null,
919
+ "min_height": null,
920
+ "min_width": null,
921
+ "object_fit": null,
922
+ "object_position": null,
923
+ "order": null,
924
+ "overflow": null,
925
+ "overflow_x": null,
926
+ "overflow_y": null,
927
+ "padding": null,
928
+ "right": null,
929
+ "top": null,
930
+ "visibility": null,
931
+ "width": null
932
+ }
933
+ },
934
+ "892bd307f77b45c885c1a61bfd229439": {
935
+ "model_module": "@jupyter-widgets/controls",
936
+ "model_name": "DescriptionStyleModel",
937
+ "model_module_version": "1.5.0",
938
+ "state": {
939
+ "_model_module": "@jupyter-widgets/controls",
940
+ "_model_module_version": "1.5.0",
941
+ "_model_name": "DescriptionStyleModel",
942
+ "_view_count": null,
943
+ "_view_module": "@jupyter-widgets/base",
944
+ "_view_module_version": "1.2.0",
945
+ "_view_name": "StyleView",
946
+ "description_width": ""
947
+ }
948
+ },
949
+ "aee8a770b18341de904a7e2bbb019424": {
950
+ "model_module": "@jupyter-widgets/controls",
951
+ "model_name": "HBoxModel",
952
+ "model_module_version": "1.5.0",
953
+ "state": {
954
+ "_dom_classes": [],
955
+ "_model_module": "@jupyter-widgets/controls",
956
+ "_model_module_version": "1.5.0",
957
+ "_model_name": "HBoxModel",
958
+ "_view_count": null,
959
+ "_view_module": "@jupyter-widgets/controls",
960
+ "_view_module_version": "1.5.0",
961
+ "_view_name": "HBoxView",
962
+ "box_style": "",
963
+ "children": [
964
+ "IPY_MODEL_e5d7d41c1e67451cae59b992706c0592",
965
+ "IPY_MODEL_ebb9e9e05ac9452292bf734dbb2e707d",
966
+ "IPY_MODEL_35e46cf2dca748368c95703794d7c0ed"
967
+ ],
968
+ "layout": "IPY_MODEL_becd058ba229403d85b906c49db69e61"
969
+ }
970
+ },
971
+ "e5d7d41c1e67451cae59b992706c0592": {
972
+ "model_module": "@jupyter-widgets/controls",
973
+ "model_name": "HTMLModel",
974
+ "model_module_version": "1.5.0",
975
+ "state": {
976
+ "_dom_classes": [],
977
+ "_model_module": "@jupyter-widgets/controls",
978
+ "_model_module_version": "1.5.0",
979
+ "_model_name": "HTMLModel",
980
+ "_view_count": null,
981
+ "_view_module": "@jupyter-widgets/controls",
982
+ "_view_module_version": "1.5.0",
983
+ "_view_name": "HTMLView",
984
+ "description": "",
985
+ "description_tooltip": null,
986
+ "layout": "IPY_MODEL_ab406b8adf4146078bc5c57d31f6f405",
987
+ "placeholder": "​",
988
+ "style": "IPY_MODEL_19a48a7be73d46858f0d3d35d97e5c1d",
989
+ "value": "tokenizer.json: 100%"
990
+ }
991
+ },
992
+ "ebb9e9e05ac9452292bf734dbb2e707d": {
993
+ "model_module": "@jupyter-widgets/controls",
994
+ "model_name": "FloatProgressModel",
995
+ "model_module_version": "1.5.0",
996
+ "state": {
997
+ "_dom_classes": [],
998
+ "_model_module": "@jupyter-widgets/controls",
999
+ "_model_module_version": "1.5.0",
1000
+ "_model_name": "FloatProgressModel",
1001
+ "_view_count": null,
1002
+ "_view_module": "@jupyter-widgets/controls",
1003
+ "_view_module_version": "1.5.0",
1004
+ "_view_name": "ProgressView",
1005
+ "bar_style": "success",
1006
+ "description": "",
1007
+ "description_tooltip": null,
1008
+ "layout": "IPY_MODEL_e445e34f32944a0e88df4d7bb88251f3",
1009
+ "max": 1389353,
1010
+ "min": 0,
1011
+ "orientation": "horizontal",
1012
+ "style": "IPY_MODEL_322ad5c458884148b410aedc7b076d47",
1013
+ "value": 1389353
1014
+ }
1015
+ },
1016
+ "35e46cf2dca748368c95703794d7c0ed": {
1017
+ "model_module": "@jupyter-widgets/controls",
1018
+ "model_name": "HTMLModel",
1019
+ "model_module_version": "1.5.0",
1020
+ "state": {
1021
+ "_dom_classes": [],
1022
+ "_model_module": "@jupyter-widgets/controls",
1023
+ "_model_module_version": "1.5.0",
1024
+ "_model_name": "HTMLModel",
1025
+ "_view_count": null,
1026
+ "_view_module": "@jupyter-widgets/controls",
1027
+ "_view_module_version": "1.5.0",
1028
+ "_view_name": "HTMLView",
1029
+ "description": "",
1030
+ "description_tooltip": null,
1031
+ "layout": "IPY_MODEL_4d5e46b60ae1462d9d9d00b55342bd06",
1032
+ "placeholder": "​",
1033
+ "style": "IPY_MODEL_8065efbe037946b5a99a92df63bb65d1",
1034
+ "value": " 1.39M/1.39M [00:00&lt;00:00, 37.2MB/s]"
1035
+ }
1036
+ },
1037
+ "becd058ba229403d85b906c49db69e61": {
1038
+ "model_module": "@jupyter-widgets/base",
1039
+ "model_name": "LayoutModel",
1040
+ "model_module_version": "1.2.0",
1041
+ "state": {
1042
+ "_model_module": "@jupyter-widgets/base",
1043
+ "_model_module_version": "1.2.0",
1044
+ "_model_name": "LayoutModel",
1045
+ "_view_count": null,
1046
+ "_view_module": "@jupyter-widgets/base",
1047
+ "_view_module_version": "1.2.0",
1048
+ "_view_name": "LayoutView",
1049
+ "align_content": null,
1050
+ "align_items": null,
1051
+ "align_self": null,
1052
+ "border": null,
1053
+ "bottom": null,
1054
+ "display": null,
1055
+ "flex": null,
1056
+ "flex_flow": null,
1057
+ "grid_area": null,
1058
+ "grid_auto_columns": null,
1059
+ "grid_auto_flow": null,
1060
+ "grid_auto_rows": null,
1061
+ "grid_column": null,
1062
+ "grid_gap": null,
1063
+ "grid_row": null,
1064
+ "grid_template_areas": null,
1065
+ "grid_template_columns": null,
1066
+ "grid_template_rows": null,
1067
+ "height": null,
1068
+ "justify_content": null,
1069
+ "justify_items": null,
1070
+ "left": null,
1071
+ "margin": null,
1072
+ "max_height": null,
1073
+ "max_width": null,
1074
+ "min_height": null,
1075
+ "min_width": null,
1076
+ "object_fit": null,
1077
+ "object_position": null,
1078
+ "order": null,
1079
+ "overflow": null,
1080
+ "overflow_x": null,
1081
+ "overflow_y": null,
1082
+ "padding": null,
1083
+ "right": null,
1084
+ "top": null,
1085
+ "visibility": null,
1086
+ "width": null
1087
+ }
1088
+ },
1089
+ "ab406b8adf4146078bc5c57d31f6f405": {
1090
+ "model_module": "@jupyter-widgets/base",
1091
+ "model_name": "LayoutModel",
1092
+ "model_module_version": "1.2.0",
1093
+ "state": {
1094
+ "_model_module": "@jupyter-widgets/base",
1095
+ "_model_module_version": "1.2.0",
1096
+ "_model_name": "LayoutModel",
1097
+ "_view_count": null,
1098
+ "_view_module": "@jupyter-widgets/base",
1099
+ "_view_module_version": "1.2.0",
1100
+ "_view_name": "LayoutView",
1101
+ "align_content": null,
1102
+ "align_items": null,
1103
+ "align_self": null,
1104
+ "border": null,
1105
+ "bottom": null,
1106
+ "display": null,
1107
+ "flex": null,
1108
+ "flex_flow": null,
1109
+ "grid_area": null,
1110
+ "grid_auto_columns": null,
1111
+ "grid_auto_flow": null,
1112
+ "grid_auto_rows": null,
1113
+ "grid_column": null,
1114
+ "grid_gap": null,
1115
+ "grid_row": null,
1116
+ "grid_template_areas": null,
1117
+ "grid_template_columns": null,
1118
+ "grid_template_rows": null,
1119
+ "height": null,
1120
+ "justify_content": null,
1121
+ "justify_items": null,
1122
+ "left": null,
1123
+ "margin": null,
1124
+ "max_height": null,
1125
+ "max_width": null,
1126
+ "min_height": null,
1127
+ "min_width": null,
1128
+ "object_fit": null,
1129
+ "object_position": null,
1130
+ "order": null,
1131
+ "overflow": null,
1132
+ "overflow_x": null,
1133
+ "overflow_y": null,
1134
+ "padding": null,
1135
+ "right": null,
1136
+ "top": null,
1137
+ "visibility": null,
1138
+ "width": null
1139
+ }
1140
+ },
1141
+ "19a48a7be73d46858f0d3d35d97e5c1d": {
1142
+ "model_module": "@jupyter-widgets/controls",
1143
+ "model_name": "DescriptionStyleModel",
1144
+ "model_module_version": "1.5.0",
1145
+ "state": {
1146
+ "_model_module": "@jupyter-widgets/controls",
1147
+ "_model_module_version": "1.5.0",
1148
+ "_model_name": "DescriptionStyleModel",
1149
+ "_view_count": null,
1150
+ "_view_module": "@jupyter-widgets/base",
1151
+ "_view_module_version": "1.2.0",
1152
+ "_view_name": "StyleView",
1153
+ "description_width": ""
1154
+ }
1155
+ },
1156
+ "e445e34f32944a0e88df4d7bb88251f3": {
1157
+ "model_module": "@jupyter-widgets/base",
1158
+ "model_name": "LayoutModel",
1159
+ "model_module_version": "1.2.0",
1160
+ "state": {
1161
+ "_model_module": "@jupyter-widgets/base",
1162
+ "_model_module_version": "1.2.0",
1163
+ "_model_name": "LayoutModel",
1164
+ "_view_count": null,
1165
+ "_view_module": "@jupyter-widgets/base",
1166
+ "_view_module_version": "1.2.0",
1167
+ "_view_name": "LayoutView",
1168
+ "align_content": null,
1169
+ "align_items": null,
1170
+ "align_self": null,
1171
+ "border": null,
1172
+ "bottom": null,
1173
+ "display": null,
1174
+ "flex": null,
1175
+ "flex_flow": null,
1176
+ "grid_area": null,
1177
+ "grid_auto_columns": null,
1178
+ "grid_auto_flow": null,
1179
+ "grid_auto_rows": null,
1180
+ "grid_column": null,
1181
+ "grid_gap": null,
1182
+ "grid_row": null,
1183
+ "grid_template_areas": null,
1184
+ "grid_template_columns": null,
1185
+ "grid_template_rows": null,
1186
+ "height": null,
1187
+ "justify_content": null,
1188
+ "justify_items": null,
1189
+ "left": null,
1190
+ "margin": null,
1191
+ "max_height": null,
1192
+ "max_width": null,
1193
+ "min_height": null,
1194
+ "min_width": null,
1195
+ "object_fit": null,
1196
+ "object_position": null,
1197
+ "order": null,
1198
+ "overflow": null,
1199
+ "overflow_x": null,
1200
+ "overflow_y": null,
1201
+ "padding": null,
1202
+ "right": null,
1203
+ "top": null,
1204
+ "visibility": null,
1205
+ "width": null
1206
+ }
1207
+ },
1208
+ "322ad5c458884148b410aedc7b076d47": {
1209
+ "model_module": "@jupyter-widgets/controls",
1210
+ "model_name": "ProgressStyleModel",
1211
+ "model_module_version": "1.5.0",
1212
+ "state": {
1213
+ "_model_module": "@jupyter-widgets/controls",
1214
+ "_model_module_version": "1.5.0",
1215
+ "_model_name": "ProgressStyleModel",
1216
+ "_view_count": null,
1217
+ "_view_module": "@jupyter-widgets/base",
1218
+ "_view_module_version": "1.2.0",
1219
+ "_view_name": "StyleView",
1220
+ "bar_color": null,
1221
+ "description_width": ""
1222
+ }
1223
+ },
1224
+ "4d5e46b60ae1462d9d9d00b55342bd06": {
1225
+ "model_module": "@jupyter-widgets/base",
1226
+ "model_name": "LayoutModel",
1227
+ "model_module_version": "1.2.0",
1228
+ "state": {
1229
+ "_model_module": "@jupyter-widgets/base",
1230
+ "_model_module_version": "1.2.0",
1231
+ "_model_name": "LayoutModel",
1232
+ "_view_count": null,
1233
+ "_view_module": "@jupyter-widgets/base",
1234
+ "_view_module_version": "1.2.0",
1235
+ "_view_name": "LayoutView",
1236
+ "align_content": null,
1237
+ "align_items": null,
1238
+ "align_self": null,
1239
+ "border": null,
1240
+ "bottom": null,
1241
+ "display": null,
1242
+ "flex": null,
1243
+ "flex_flow": null,
1244
+ "grid_area": null,
1245
+ "grid_auto_columns": null,
1246
+ "grid_auto_flow": null,
1247
+ "grid_auto_rows": null,
1248
+ "grid_column": null,
1249
+ "grid_gap": null,
1250
+ "grid_row": null,
1251
+ "grid_template_areas": null,
1252
+ "grid_template_columns": null,
1253
+ "grid_template_rows": null,
1254
+ "height": null,
1255
+ "justify_content": null,
1256
+ "justify_items": null,
1257
+ "left": null,
1258
+ "margin": null,
1259
+ "max_height": null,
1260
+ "max_width": null,
1261
+ "min_height": null,
1262
+ "min_width": null,
1263
+ "object_fit": null,
1264
+ "object_position": null,
1265
+ "order": null,
1266
+ "overflow": null,
1267
+ "overflow_x": null,
1268
+ "overflow_y": null,
1269
+ "padding": null,
1270
+ "right": null,
1271
+ "top": null,
1272
+ "visibility": null,
1273
+ "width": null
1274
+ }
1275
+ },
1276
+ "8065efbe037946b5a99a92df63bb65d1": {
1277
+ "model_module": "@jupyter-widgets/controls",
1278
+ "model_name": "DescriptionStyleModel",
1279
+ "model_module_version": "1.5.0",
1280
+ "state": {
1281
+ "_model_module": "@jupyter-widgets/controls",
1282
+ "_model_module_version": "1.5.0",
1283
+ "_model_name": "DescriptionStyleModel",
1284
+ "_view_count": null,
1285
+ "_view_module": "@jupyter-widgets/base",
1286
+ "_view_module_version": "1.2.0",
1287
+ "_view_name": "StyleView",
1288
+ "description_width": ""
1289
+ }
1290
+ },
1291
+ "b4835d10c5cf45b7b5d00cc1f4c7224b": {
1292
+ "model_module": "@jupyter-widgets/controls",
1293
+ "model_name": "HBoxModel",
1294
+ "model_module_version": "1.5.0",
1295
+ "state": {
1296
+ "_dom_classes": [],
1297
+ "_model_module": "@jupyter-widgets/controls",
1298
+ "_model_module_version": "1.5.0",
1299
+ "_model_name": "HBoxModel",
1300
+ "_view_count": null,
1301
+ "_view_module": "@jupyter-widgets/controls",
1302
+ "_view_module_version": "1.5.0",
1303
+ "_view_name": "HBoxView",
1304
+ "box_style": "",
1305
+ "children": [
1306
+ "IPY_MODEL_d5dc3aa40ba747e48d40fc6c7e1c9ab9",
1307
+ "IPY_MODEL_94b13990da8140d289eb48460afb239b",
1308
+ "IPY_MODEL_cd7fe2f3f3a945a1bde15a24b9bc124b"
1309
+ ],
1310
+ "layout": "IPY_MODEL_69b58423c5da48b985f6365a0c3be9ce"
1311
+ }
1312
+ },
1313
+ "d5dc3aa40ba747e48d40fc6c7e1c9ab9": {
1314
+ "model_module": "@jupyter-widgets/controls",
1315
+ "model_name": "HTMLModel",
1316
+ "model_module_version": "1.5.0",
1317
+ "state": {
1318
+ "_dom_classes": [],
1319
+ "_model_module": "@jupyter-widgets/controls",
1320
+ "_model_module_version": "1.5.0",
1321
+ "_model_name": "HTMLModel",
1322
+ "_view_count": null,
1323
+ "_view_module": "@jupyter-widgets/controls",
1324
+ "_view_module_version": "1.5.0",
1325
+ "_view_name": "HTMLView",
1326
+ "description": "",
1327
+ "description_tooltip": null,
1328
+ "layout": "IPY_MODEL_1bc829b42be24648908dc8e93bb7d589",
1329
+ "placeholder": "​",
1330
+ "style": "IPY_MODEL_c7acf97b800a4e5d8c4ba5197ecb650b",
1331
+ "value": "model.safetensors: 100%"
1332
+ }
1333
+ },
1334
+ "94b13990da8140d289eb48460afb239b": {
1335
+ "model_module": "@jupyter-widgets/controls",
1336
+ "model_name": "FloatProgressModel",
1337
+ "model_module_version": "1.5.0",
1338
+ "state": {
1339
+ "_dom_classes": [],
1340
+ "_model_module": "@jupyter-widgets/controls",
1341
+ "_model_module_version": "1.5.0",
1342
+ "_model_name": "FloatProgressModel",
1343
+ "_view_count": null,
1344
+ "_view_module": "@jupyter-widgets/controls",
1345
+ "_view_module_version": "1.5.0",
1346
+ "_view_name": "ProgressView",
1347
+ "bar_style": "success",
1348
+ "description": "",
1349
+ "description_tooltip": null,
1350
+ "layout": "IPY_MODEL_ae5ed23ebf514ffbb4d2ab0b32dc0875",
1351
+ "max": 2950736730,
1352
+ "min": 0,
1353
+ "orientation": "horizontal",
1354
+ "style": "IPY_MODEL_3bd82485e1ae44dabb4c07de0adbb1a2",
1355
+ "value": 2950736730
1356
+ }
1357
+ },
1358
+ "cd7fe2f3f3a945a1bde15a24b9bc124b": {
1359
+ "model_module": "@jupyter-widgets/controls",
1360
+ "model_name": "HTMLModel",
1361
+ "model_module_version": "1.5.0",
1362
+ "state": {
1363
+ "_dom_classes": [],
1364
+ "_model_module": "@jupyter-widgets/controls",
1365
+ "_model_module_version": "1.5.0",
1366
+ "_model_name": "HTMLModel",
1367
+ "_view_count": null,
1368
+ "_view_module": "@jupyter-widgets/controls",
1369
+ "_view_module_version": "1.5.0",
1370
+ "_view_name": "HTMLView",
1371
+ "description": "",
1372
+ "description_tooltip": null,
1373
+ "layout": "IPY_MODEL_d16ffd33b7434c9f8a9132438a7c55cb",
1374
+ "placeholder": "​",
1375
+ "style": "IPY_MODEL_eb794ab5bfd2413c86380b5dc5f31494",
1376
+ "value": " 2.95G/2.95G [02:38&lt;00:00, 20.8MB/s]"
1377
+ }
1378
+ },
1379
+ "69b58423c5da48b985f6365a0c3be9ce": {
1380
+ "model_module": "@jupyter-widgets/base",
1381
+ "model_name": "LayoutModel",
1382
+ "model_module_version": "1.2.0",
1383
+ "state": {
1384
+ "_model_module": "@jupyter-widgets/base",
1385
+ "_model_module_version": "1.2.0",
1386
+ "_model_name": "LayoutModel",
1387
+ "_view_count": null,
1388
+ "_view_module": "@jupyter-widgets/base",
1389
+ "_view_module_version": "1.2.0",
1390
+ "_view_name": "LayoutView",
1391
+ "align_content": null,
1392
+ "align_items": null,
1393
+ "align_self": null,
1394
+ "border": null,
1395
+ "bottom": null,
1396
+ "display": null,
1397
+ "flex": null,
1398
+ "flex_flow": null,
1399
+ "grid_area": null,
1400
+ "grid_auto_columns": null,
1401
+ "grid_auto_flow": null,
1402
+ "grid_auto_rows": null,
1403
+ "grid_column": null,
1404
+ "grid_gap": null,
1405
+ "grid_row": null,
1406
+ "grid_template_areas": null,
1407
+ "grid_template_columns": null,
1408
+ "grid_template_rows": null,
1409
+ "height": null,
1410
+ "justify_content": null,
1411
+ "justify_items": null,
1412
+ "left": null,
1413
+ "margin": null,
1414
+ "max_height": null,
1415
+ "max_width": null,
1416
+ "min_height": null,
1417
+ "min_width": null,
1418
+ "object_fit": null,
1419
+ "object_position": null,
1420
+ "order": null,
1421
+ "overflow": null,
1422
+ "overflow_x": null,
1423
+ "overflow_y": null,
1424
+ "padding": null,
1425
+ "right": null,
1426
+ "top": null,
1427
+ "visibility": null,
1428
+ "width": null
1429
+ }
1430
+ },
1431
+ "1bc829b42be24648908dc8e93bb7d589": {
1432
+ "model_module": "@jupyter-widgets/base",
1433
+ "model_name": "LayoutModel",
1434
+ "model_module_version": "1.2.0",
1435
+ "state": {
1436
+ "_model_module": "@jupyter-widgets/base",
1437
+ "_model_module_version": "1.2.0",
1438
+ "_model_name": "LayoutModel",
1439
+ "_view_count": null,
1440
+ "_view_module": "@jupyter-widgets/base",
1441
+ "_view_module_version": "1.2.0",
1442
+ "_view_name": "LayoutView",
1443
+ "align_content": null,
1444
+ "align_items": null,
1445
+ "align_self": null,
1446
+ "border": null,
1447
+ "bottom": null,
1448
+ "display": null,
1449
+ "flex": null,
1450
+ "flex_flow": null,
1451
+ "grid_area": null,
1452
+ "grid_auto_columns": null,
1453
+ "grid_auto_flow": null,
1454
+ "grid_auto_rows": null,
1455
+ "grid_column": null,
1456
+ "grid_gap": null,
1457
+ "grid_row": null,
1458
+ "grid_template_areas": null,
1459
+ "grid_template_columns": null,
1460
+ "grid_template_rows": null,
1461
+ "height": null,
1462
+ "justify_content": null,
1463
+ "justify_items": null,
1464
+ "left": null,
1465
+ "margin": null,
1466
+ "max_height": null,
1467
+ "max_width": null,
1468
+ "min_height": null,
1469
+ "min_width": null,
1470
+ "object_fit": null,
1471
+ "object_position": null,
1472
+ "order": null,
1473
+ "overflow": null,
1474
+ "overflow_x": null,
1475
+ "overflow_y": null,
1476
+ "padding": null,
1477
+ "right": null,
1478
+ "top": null,
1479
+ "visibility": null,
1480
+ "width": null
1481
+ }
1482
+ },
1483
+ "c7acf97b800a4e5d8c4ba5197ecb650b": {
1484
+ "model_module": "@jupyter-widgets/controls",
1485
+ "model_name": "DescriptionStyleModel",
1486
+ "model_module_version": "1.5.0",
1487
+ "state": {
1488
+ "_model_module": "@jupyter-widgets/controls",
1489
+ "_model_module_version": "1.5.0",
1490
+ "_model_name": "DescriptionStyleModel",
1491
+ "_view_count": null,
1492
+ "_view_module": "@jupyter-widgets/base",
1493
+ "_view_module_version": "1.2.0",
1494
+ "_view_name": "StyleView",
1495
+ "description_width": ""
1496
+ }
1497
+ },
1498
+ "ae5ed23ebf514ffbb4d2ab0b32dc0875": {
1499
+ "model_module": "@jupyter-widgets/base",
1500
+ "model_name": "LayoutModel",
1501
+ "model_module_version": "1.2.0",
1502
+ "state": {
1503
+ "_model_module": "@jupyter-widgets/base",
1504
+ "_model_module_version": "1.2.0",
1505
+ "_model_name": "LayoutModel",
1506
+ "_view_count": null,
1507
+ "_view_module": "@jupyter-widgets/base",
1508
+ "_view_module_version": "1.2.0",
1509
+ "_view_name": "LayoutView",
1510
+ "align_content": null,
1511
+ "align_items": null,
1512
+ "align_self": null,
1513
+ "border": null,
1514
+ "bottom": null,
1515
+ "display": null,
1516
+ "flex": null,
1517
+ "flex_flow": null,
1518
+ "grid_area": null,
1519
+ "grid_auto_columns": null,
1520
+ "grid_auto_flow": null,
1521
+ "grid_auto_rows": null,
1522
+ "grid_column": null,
1523
+ "grid_gap": null,
1524
+ "grid_row": null,
1525
+ "grid_template_areas": null,
1526
+ "grid_template_columns": null,
1527
+ "grid_template_rows": null,
1528
+ "height": null,
1529
+ "justify_content": null,
1530
+ "justify_items": null,
1531
+ "left": null,
1532
+ "margin": null,
1533
+ "max_height": null,
1534
+ "max_width": null,
1535
+ "min_height": null,
1536
+ "min_width": null,
1537
+ "object_fit": null,
1538
+ "object_position": null,
1539
+ "order": null,
1540
+ "overflow": null,
1541
+ "overflow_x": null,
1542
+ "overflow_y": null,
1543
+ "padding": null,
1544
+ "right": null,
1545
+ "top": null,
1546
+ "visibility": null,
1547
+ "width": null
1548
+ }
1549
+ },
1550
+ "3bd82485e1ae44dabb4c07de0adbb1a2": {
1551
+ "model_module": "@jupyter-widgets/controls",
1552
+ "model_name": "ProgressStyleModel",
1553
+ "model_module_version": "1.5.0",
1554
+ "state": {
1555
+ "_model_module": "@jupyter-widgets/controls",
1556
+ "_model_module_version": "1.5.0",
1557
+ "_model_name": "ProgressStyleModel",
1558
+ "_view_count": null,
1559
+ "_view_module": "@jupyter-widgets/base",
1560
+ "_view_module_version": "1.2.0",
1561
+ "_view_name": "StyleView",
1562
+ "bar_color": null,
1563
+ "description_width": ""
1564
+ }
1565
+ },
1566
+ "d16ffd33b7434c9f8a9132438a7c55cb": {
1567
+ "model_module": "@jupyter-widgets/base",
1568
+ "model_name": "LayoutModel",
1569
+ "model_module_version": "1.2.0",
1570
+ "state": {
1571
+ "_model_module": "@jupyter-widgets/base",
1572
+ "_model_module_version": "1.2.0",
1573
+ "_model_name": "LayoutModel",
1574
+ "_view_count": null,
1575
+ "_view_module": "@jupyter-widgets/base",
1576
+ "_view_module_version": "1.2.0",
1577
+ "_view_name": "LayoutView",
1578
+ "align_content": null,
1579
+ "align_items": null,
1580
+ "align_self": null,
1581
+ "border": null,
1582
+ "bottom": null,
1583
+ "display": null,
1584
+ "flex": null,
1585
+ "flex_flow": null,
1586
+ "grid_area": null,
1587
+ "grid_auto_columns": null,
1588
+ "grid_auto_flow": null,
1589
+ "grid_auto_rows": null,
1590
+ "grid_column": null,
1591
+ "grid_gap": null,
1592
+ "grid_row": null,
1593
+ "grid_template_areas": null,
1594
+ "grid_template_columns": null,
1595
+ "grid_template_rows": null,
1596
+ "height": null,
1597
+ "justify_content": null,
1598
+ "justify_items": null,
1599
+ "left": null,
1600
+ "margin": null,
1601
+ "max_height": null,
1602
+ "max_width": null,
1603
+ "min_height": null,
1604
+ "min_width": null,
1605
+ "object_fit": null,
1606
+ "object_position": null,
1607
+ "order": null,
1608
+ "overflow": null,
1609
+ "overflow_x": null,
1610
+ "overflow_y": null,
1611
+ "padding": null,
1612
+ "right": null,
1613
+ "top": null,
1614
+ "visibility": null,
1615
+ "width": null
1616
+ }
1617
+ },
1618
+ "eb794ab5bfd2413c86380b5dc5f31494": {
1619
+ "model_module": "@jupyter-widgets/controls",
1620
+ "model_name": "DescriptionStyleModel",
1621
+ "model_module_version": "1.5.0",
1622
+ "state": {
1623
+ "_model_module": "@jupyter-widgets/controls",
1624
+ "_model_module_version": "1.5.0",
1625
+ "_model_name": "DescriptionStyleModel",
1626
+ "_view_count": null,
1627
+ "_view_module": "@jupyter-widgets/base",
1628
+ "_view_module_version": "1.2.0",
1629
+ "_view_name": "StyleView",
1630
+ "description_width": ""
1631
+ }
1632
+ },
1633
+ "698856b6905d4f82b59e95851d9ae534": {
1634
+ "model_module": "@jupyter-widgets/controls",
1635
+ "model_name": "HBoxModel",
1636
+ "model_module_version": "1.5.0",
1637
+ "state": {
1638
+ "_dom_classes": [],
1639
+ "_model_module": "@jupyter-widgets/controls",
1640
+ "_model_module_version": "1.5.0",
1641
+ "_model_name": "HBoxModel",
1642
+ "_view_count": null,
1643
+ "_view_module": "@jupyter-widgets/controls",
1644
+ "_view_module_version": "1.5.0",
1645
+ "_view_name": "HBoxView",
1646
+ "box_style": "",
1647
+ "children": [
1648
+ "IPY_MODEL_de6c4520d29146eab51a49976107f172",
1649
+ "IPY_MODEL_a6ce2d53ad8f462f9c169708f6d5c73d",
1650
+ "IPY_MODEL_d560b2a5ff664d12956c742d51c1646f"
1651
+ ],
1652
+ "layout": "IPY_MODEL_b205eb1e6d3446f5b75f1d783bfbbcf6"
1653
+ }
1654
+ },
1655
+ "de6c4520d29146eab51a49976107f172": {
1656
+ "model_module": "@jupyter-widgets/controls",
1657
+ "model_name": "HTMLModel",
1658
+ "model_module_version": "1.5.0",
1659
+ "state": {
1660
+ "_dom_classes": [],
1661
+ "_model_module": "@jupyter-widgets/controls",
1662
+ "_model_module_version": "1.5.0",
1663
+ "_model_name": "HTMLModel",
1664
+ "_view_count": null,
1665
+ "_view_module": "@jupyter-widgets/controls",
1666
+ "_view_module_version": "1.5.0",
1667
+ "_view_name": "HTMLView",
1668
+ "description": "",
1669
+ "description_tooltip": null,
1670
+ "layout": "IPY_MODEL_c2e186e1bbfa4ff0a4b1e679011dc920",
1671
+ "placeholder": "​",
1672
+ "style": "IPY_MODEL_a49d8021b0074bafabd89995b0e5a0e7",
1673
+ "value": "generation_config.json: 100%"
1674
+ }
1675
+ },
1676
+ "a6ce2d53ad8f462f9c169708f6d5c73d": {
1677
+ "model_module": "@jupyter-widgets/controls",
1678
+ "model_name": "FloatProgressModel",
1679
+ "model_module_version": "1.5.0",
1680
+ "state": {
1681
+ "_dom_classes": [],
1682
+ "_model_module": "@jupyter-widgets/controls",
1683
+ "_model_module_version": "1.5.0",
1684
+ "_model_name": "FloatProgressModel",
1685
+ "_view_count": null,
1686
+ "_view_module": "@jupyter-widgets/controls",
1687
+ "_view_module_version": "1.5.0",
1688
+ "_view_name": "ProgressView",
1689
+ "bar_style": "success",
1690
+ "description": "",
1691
+ "description_tooltip": null,
1692
+ "layout": "IPY_MODEL_eb2bfb8ebb2b45b6a67247db552d1df6",
1693
+ "max": 147,
1694
+ "min": 0,
1695
+ "orientation": "horizontal",
1696
+ "style": "IPY_MODEL_920c4484283c4355a209bfb5188b6a6e",
1697
+ "value": 147
1698
+ }
1699
+ },
1700
+ "d560b2a5ff664d12956c742d51c1646f": {
1701
+ "model_module": "@jupyter-widgets/controls",
1702
+ "model_name": "HTMLModel",
1703
+ "model_module_version": "1.5.0",
1704
+ "state": {
1705
+ "_dom_classes": [],
1706
+ "_model_module": "@jupyter-widgets/controls",
1707
+ "_model_module_version": "1.5.0",
1708
+ "_model_name": "HTMLModel",
1709
+ "_view_count": null,
1710
+ "_view_module": "@jupyter-widgets/controls",
1711
+ "_view_module_version": "1.5.0",
1712
+ "_view_name": "HTMLView",
1713
+ "description": "",
1714
+ "description_tooltip": null,
1715
+ "layout": "IPY_MODEL_3b0cf610ae764791805a2ceafc61adc4",
1716
+ "placeholder": "​",
1717
+ "style": "IPY_MODEL_a2493b9c90f3421db9b727c1a7396e8d",
1718
+ "value": " 147/147 [00:00&lt;00:00, 7.28kB/s]"
1719
+ }
1720
+ },
1721
+ "b205eb1e6d3446f5b75f1d783bfbbcf6": {
1722
+ "model_module": "@jupyter-widgets/base",
1723
+ "model_name": "LayoutModel",
1724
+ "model_module_version": "1.2.0",
1725
+ "state": {
1726
+ "_model_module": "@jupyter-widgets/base",
1727
+ "_model_module_version": "1.2.0",
1728
+ "_model_name": "LayoutModel",
1729
+ "_view_count": null,
1730
+ "_view_module": "@jupyter-widgets/base",
1731
+ "_view_module_version": "1.2.0",
1732
+ "_view_name": "LayoutView",
1733
+ "align_content": null,
1734
+ "align_items": null,
1735
+ "align_self": null,
1736
+ "border": null,
1737
+ "bottom": null,
1738
+ "display": null,
1739
+ "flex": null,
1740
+ "flex_flow": null,
1741
+ "grid_area": null,
1742
+ "grid_auto_columns": null,
1743
+ "grid_auto_flow": null,
1744
+ "grid_auto_rows": null,
1745
+ "grid_column": null,
1746
+ "grid_gap": null,
1747
+ "grid_row": null,
1748
+ "grid_template_areas": null,
1749
+ "grid_template_columns": null,
1750
+ "grid_template_rows": null,
1751
+ "height": null,
1752
+ "justify_content": null,
1753
+ "justify_items": null,
1754
+ "left": null,
1755
+ "margin": null,
1756
+ "max_height": null,
1757
+ "max_width": null,
1758
+ "min_height": null,
1759
+ "min_width": null,
1760
+ "object_fit": null,
1761
+ "object_position": null,
1762
+ "order": null,
1763
+ "overflow": null,
1764
+ "overflow_x": null,
1765
+ "overflow_y": null,
1766
+ "padding": null,
1767
+ "right": null,
1768
+ "top": null,
1769
+ "visibility": null,
1770
+ "width": null
1771
+ }
1772
+ },
1773
+ "c2e186e1bbfa4ff0a4b1e679011dc920": {
1774
+ "model_module": "@jupyter-widgets/base",
1775
+ "model_name": "LayoutModel",
1776
+ "model_module_version": "1.2.0",
1777
+ "state": {
1778
+ "_model_module": "@jupyter-widgets/base",
1779
+ "_model_module_version": "1.2.0",
1780
+ "_model_name": "LayoutModel",
1781
+ "_view_count": null,
1782
+ "_view_module": "@jupyter-widgets/base",
1783
+ "_view_module_version": "1.2.0",
1784
+ "_view_name": "LayoutView",
1785
+ "align_content": null,
1786
+ "align_items": null,
1787
+ "align_self": null,
1788
+ "border": null,
1789
+ "bottom": null,
1790
+ "display": null,
1791
+ "flex": null,
1792
+ "flex_flow": null,
1793
+ "grid_area": null,
1794
+ "grid_auto_columns": null,
1795
+ "grid_auto_flow": null,
1796
+ "grid_auto_rows": null,
1797
+ "grid_column": null,
1798
+ "grid_gap": null,
1799
+ "grid_row": null,
1800
+ "grid_template_areas": null,
1801
+ "grid_template_columns": null,
1802
+ "grid_template_rows": null,
1803
+ "height": null,
1804
+ "justify_content": null,
1805
+ "justify_items": null,
1806
+ "left": null,
1807
+ "margin": null,
1808
+ "max_height": null,
1809
+ "max_width": null,
1810
+ "min_height": null,
1811
+ "min_width": null,
1812
+ "object_fit": null,
1813
+ "object_position": null,
1814
+ "order": null,
1815
+ "overflow": null,
1816
+ "overflow_x": null,
1817
+ "overflow_y": null,
1818
+ "padding": null,
1819
+ "right": null,
1820
+ "top": null,
1821
+ "visibility": null,
1822
+ "width": null
1823
+ }
1824
+ },
1825
+ "a49d8021b0074bafabd89995b0e5a0e7": {
1826
+ "model_module": "@jupyter-widgets/controls",
1827
+ "model_name": "DescriptionStyleModel",
1828
+ "model_module_version": "1.5.0",
1829
+ "state": {
1830
+ "_model_module": "@jupyter-widgets/controls",
1831
+ "_model_module_version": "1.5.0",
1832
+ "_model_name": "DescriptionStyleModel",
1833
+ "_view_count": null,
1834
+ "_view_module": "@jupyter-widgets/base",
1835
+ "_view_module_version": "1.2.0",
1836
+ "_view_name": "StyleView",
1837
+ "description_width": ""
1838
+ }
1839
+ },
1840
+ "eb2bfb8ebb2b45b6a67247db552d1df6": {
1841
+ "model_module": "@jupyter-widgets/base",
1842
+ "model_name": "LayoutModel",
1843
+ "model_module_version": "1.2.0",
1844
+ "state": {
1845
+ "_model_module": "@jupyter-widgets/base",
1846
+ "_model_module_version": "1.2.0",
1847
+ "_model_name": "LayoutModel",
1848
+ "_view_count": null,
1849
+ "_view_module": "@jupyter-widgets/base",
1850
+ "_view_module_version": "1.2.0",
1851
+ "_view_name": "LayoutView",
1852
+ "align_content": null,
1853
+ "align_items": null,
1854
+ "align_self": null,
1855
+ "border": null,
1856
+ "bottom": null,
1857
+ "display": null,
1858
+ "flex": null,
1859
+ "flex_flow": null,
1860
+ "grid_area": null,
1861
+ "grid_auto_columns": null,
1862
+ "grid_auto_flow": null,
1863
+ "grid_auto_rows": null,
1864
+ "grid_column": null,
1865
+ "grid_gap": null,
1866
+ "grid_row": null,
1867
+ "grid_template_areas": null,
1868
+ "grid_template_columns": null,
1869
+ "grid_template_rows": null,
1870
+ "height": null,
1871
+ "justify_content": null,
1872
+ "justify_items": null,
1873
+ "left": null,
1874
+ "margin": null,
1875
+ "max_height": null,
1876
+ "max_width": null,
1877
+ "min_height": null,
1878
+ "min_width": null,
1879
+ "object_fit": null,
1880
+ "object_position": null,
1881
+ "order": null,
1882
+ "overflow": null,
1883
+ "overflow_x": null,
1884
+ "overflow_y": null,
1885
+ "padding": null,
1886
+ "right": null,
1887
+ "top": null,
1888
+ "visibility": null,
1889
+ "width": null
1890
+ }
1891
+ },
1892
+ "920c4484283c4355a209bfb5188b6a6e": {
1893
+ "model_module": "@jupyter-widgets/controls",
1894
+ "model_name": "ProgressStyleModel",
1895
+ "model_module_version": "1.5.0",
1896
+ "state": {
1897
+ "_model_module": "@jupyter-widgets/controls",
1898
+ "_model_module_version": "1.5.0",
1899
+ "_model_name": "ProgressStyleModel",
1900
+ "_view_count": null,
1901
+ "_view_module": "@jupyter-widgets/base",
1902
+ "_view_module_version": "1.2.0",
1903
+ "_view_name": "StyleView",
1904
+ "bar_color": null,
1905
+ "description_width": ""
1906
+ }
1907
+ },
1908
+ "3b0cf610ae764791805a2ceafc61adc4": {
1909
+ "model_module": "@jupyter-widgets/base",
1910
+ "model_name": "LayoutModel",
1911
+ "model_module_version": "1.2.0",
1912
+ "state": {
1913
+ "_model_module": "@jupyter-widgets/base",
1914
+ "_model_module_version": "1.2.0",
1915
+ "_model_name": "LayoutModel",
1916
+ "_view_count": null,
1917
+ "_view_module": "@jupyter-widgets/base",
1918
+ "_view_module_version": "1.2.0",
1919
+ "_view_name": "LayoutView",
1920
+ "align_content": null,
1921
+ "align_items": null,
1922
+ "align_self": null,
1923
+ "border": null,
1924
+ "bottom": null,
1925
+ "display": null,
1926
+ "flex": null,
1927
+ "flex_flow": null,
1928
+ "grid_area": null,
1929
+ "grid_auto_columns": null,
1930
+ "grid_auto_flow": null,
1931
+ "grid_auto_rows": null,
1932
+ "grid_column": null,
1933
+ "grid_gap": null,
1934
+ "grid_row": null,
1935
+ "grid_template_areas": null,
1936
+ "grid_template_columns": null,
1937
+ "grid_template_rows": null,
1938
+ "height": null,
1939
+ "justify_content": null,
1940
+ "justify_items": null,
1941
+ "left": null,
1942
+ "margin": null,
1943
+ "max_height": null,
1944
+ "max_width": null,
1945
+ "min_height": null,
1946
+ "min_width": null,
1947
+ "object_fit": null,
1948
+ "object_position": null,
1949
+ "order": null,
1950
+ "overflow": null,
1951
+ "overflow_x": null,
1952
+ "overflow_y": null,
1953
+ "padding": null,
1954
+ "right": null,
1955
+ "top": null,
1956
+ "visibility": null,
1957
+ "width": null
1958
+ }
1959
+ },
1960
+ "a2493b9c90f3421db9b727c1a7396e8d": {
1961
+ "model_module": "@jupyter-widgets/controls",
1962
+ "model_name": "DescriptionStyleModel",
1963
+ "model_module_version": "1.5.0",
1964
+ "state": {
1965
+ "_model_module": "@jupyter-widgets/controls",
1966
+ "_model_module_version": "1.5.0",
1967
+ "_model_name": "DescriptionStyleModel",
1968
+ "_view_count": null,
1969
+ "_view_module": "@jupyter-widgets/base",
1970
+ "_view_module_version": "1.2.0",
1971
+ "_view_name": "StyleView",
1972
+ "description_width": ""
1973
+ }
1974
+ }
1975
+ }
1976
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1977
  },
1978
+ "nbformat": 4,
1979
+ "nbformat_minor": 5
1980
+ }