alpindale commited on
Commit
8c3f3a1
1 Parent(s): ba1b960

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,388 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gemma
3
+ library_name: transformers
4
+ extra_gated_heading: Access RecurrentGemma on Hugging Face
5
+ extra_gated_prompt: To access RecurrentGemma on Hugging Face, you’re required to review
6
+ and agree to Google’s usage license. To do this, please ensure you’re logged-in
7
+ to Hugging Face and click below. Requests are processed immediately.
8
+ extra_gated_button_content: Acknowledge license
9
+ ---
10
+
11
+ # RecurrentGemma Model Card
12
+
13
+ **Model Page**: [RecurrentGemma]( https://ai.google.dev/gemma/docs/recurrentgemma/model_card)
14
+
15
+ This model card corresponds to the 9B instruction version of the RecurrentGemma model. You can also visit the model card of the [9B base model](https://huggingface.co/google/recurrentgemma-9b).
16
+
17
+ **Resources and technical documentation:**
18
+
19
+ * [Responsible Generative AI Toolkit](https://ai.google.dev/responsible)
20
+ * [RecurrentGemma on Kaggle](https://www.kaggle.com/models/google/recurrentgemma)
21
+
22
+ **Terms of Use:** [Terms](https://www.kaggle.com/models/google/gemma/license/consent)
23
+
24
+ **Authors:** Google
25
+
26
+ ## Model information
27
+
28
+
29
+ ## Usage
30
+
31
+ Below we share some code snippets on how to get quickly started with running the model.
32
+
33
+ First, make sure to `pip install transformers`, then copy the snippet from the section that is relevant for your usecase.
34
+
35
+ ### Running the model on a single / multi GPU
36
+
37
+ ```python
38
+ from transformers import AutoTokenizer, AutoModelForCausalLM
39
+
40
+ tokenizer = AutoTokenizer.from_pretrained("google/recurrentgemma-9b-it")
41
+ model = AutoModelForCausalLM.from_pretrained("google/recurrentgemma-9b-it", device_map="auto")
42
+
43
+ input_text = "Write me a poem about Machine Learning."
44
+ input_ids = tokenizer(input_text, return_tensors="pt").to("cuda")
45
+
46
+ outputs = model.generate(**input_ids)
47
+ print(tokenizer.decode(outputs[0]))
48
+ ```
49
+
50
+ ### Chat Template
51
+
52
+ The instruction-tuned models use a chat template that must be adhered to for conversational use.
53
+ The easiest way to apply it is using the tokenizer's built-in chat template, as shown in the following snippet.
54
+
55
+ Let's load the model and apply the chat template to a conversation. In this example, we'll start with a single user interaction:
56
+
57
+ ```py
58
+ from transformers import AutoTokenizer, AutoModelForCausalLM
59
+ import transformers
60
+ import torch
61
+
62
+ tokenizer = AutoTokenizer.from_pretrained("google/recurrentgemma-9b-it")
63
+ model = AutoModelForCausalLM.from_pretrained(
64
+ "google/recurrentgemma-9b-it",
65
+ device_map="auto"
66
+ torch_dtype=dtype,
67
+ )
68
+ chat = [
69
+ { "role": "user", "content": "Write a hello world program" },
70
+ ]
71
+ prompt = tokenizer.apply_chat_template(chat, tokenize=False, add_generation_prompt=True)
72
+ ```
73
+
74
+ At this point, the prompt contains the following text:
75
+
76
+ ```
77
+ <bos><start_of_turn>user
78
+ Write a hello world program<end_of_turn>
79
+ <start_of_turn>model
80
+ ```
81
+
82
+ As you can see, each turn is preceded by a `<start_of_turn>` delimiter and then the role of the entity
83
+ (either `user`, for content supplied by the user, or `model` for LLM responses). Turns finish with
84
+ the `<end_of_turn>` token.
85
+
86
+ You can follow this format to build the prompt manually, if you need to do it without the tokenizer's
87
+ chat template.
88
+
89
+ After the prompt is ready, generation can be performed like this:
90
+
91
+ ```py
92
+ inputs = tokenizer.encode(prompt, add_special_tokens=False, return_tensors="pt")
93
+ outputs = model.generate(input_ids=inputs.to(model.device), max_new_tokens=150)
94
+ print(tokenizer.decode(outputs[0]))
95
+ ```
96
+
97
+ ### Model summary
98
+
99
+ #### Description
100
+
101
+ RecurrentGemma is a family of open language models built on a [novel recurrent
102
+ architecture](https://arxiv.org/abs/2402.19427) developed at Google. Both
103
+ pre-trained and instruction-tuned versions are available in English.
104
+
105
+ Like Gemma, RecurrentGemma models are well-suited for a variety of text
106
+ generation tasks, including question answering, summarization, and reasoning.
107
+ Because of its novel architecture, RecurrentGemma requires less memory than
108
+ Gemma and achieves faster inference when generating long sequences.
109
+
110
+ #### Inputs and outputs
111
+
112
+ * **Input:** Text string (e.g., a question, a prompt, or a document to be
113
+ summarized).
114
+ * **Output:** Generated English-language text in response to the input (e.g.,
115
+ an answer to the question, a summary of the document).
116
+
117
+ #### Citation
118
+
119
+ ```none
120
+ @article{recurrentgemma_2024,
121
+ title={RecurrentGemma},
122
+ url={},
123
+ DOI={},
124
+ publisher={Kaggle},
125
+ author={Griffin Team, Soham De, Samuel L Smith, Anushan Fernando, Alex Botev, George-Christian Muraru, Ruba Haroun, Leonard Berrada et al.},
126
+ year={2024}
127
+ }
128
+ ```
129
+
130
+ ### Model data
131
+
132
+ #### Training dataset and data processing
133
+
134
+ RecurrentGemma uses the same training data and data processing as used by the
135
+ Gemma model family. A full description can be found on the [Gemma model
136
+ card](https://ai.google.dev/gemma/docs/model_card#model_data).
137
+
138
+ ## Implementation information
139
+
140
+ ### Hardware and frameworks used during training
141
+
142
+ Like
143
+ [Gemma](https://ai.google.dev/gemma/docs/model_card#implementation_information),
144
+ RecurrentGemma was trained on
145
+ [TPUv5e](https://cloud.google.com/tpu/docs/intro-to-tpu?_gl=1*18wi411*_ga*MzE3NDU5OTY1LjE2MzQwNDA4NDY.*_ga_WH2QY8WWF5*MTcxMTA0MjUxMy4xNy4wLjE3MTEwNDI1MTkuMC4wLjA.&_ga=2.239449409.-317459965.1634040846),
146
+ using [JAX](https://github.com/google/jax) and [ML
147
+ Pathways](https://blog.google/technology/ai/introducing-pathways-next-generation-ai-architecture/).
148
+
149
+ ## Evaluation information
150
+
151
+ ### Benchmark results
152
+
153
+ #### Evaluation approach
154
+
155
+ These models were evaluated against a large collection of different datasets and
156
+ metrics to cover different aspects of text generation:
157
+
158
+ #### Evaluation results
159
+
160
+ Benchmark | Metric | RecurrentGemma 9B
161
+ ------------------- | ------------- | -----------------
162
+ [MMLU] | 5-shot, top-1 | 60.5
163
+ [HellaSwag] | 0-shot | 80.4
164
+ [PIQA] | 0-shot | 81.3
165
+ [SocialIQA] | 0-shot | 52.3
166
+ [BoolQ] | 0-shot | 80.3
167
+ [WinoGrande] | partial score | 73.6
168
+ [CommonsenseQA] | 7-shot | 73.2
169
+ [OpenBookQA] | | 51.8
170
+ [ARC-e][ARC-c] | | 78.8
171
+ [ARC-c] | | 52.0
172
+ [TriviaQA] | 5-shot | 70.5
173
+ [Natural Questions] | 5-shot | 21.7
174
+ [HumanEval] | pass@1 | 31.1
175
+ [MBPP] | 3-shot | 42.0
176
+ [GSM8K] | maj@1 | 42.6
177
+ [MATH] | 4-shot | 23.8
178
+ [AGIEval] | | 39.3
179
+ [BIG-Bench] | | 55.2
180
+ **Average** | | 56.1
181
+
182
+ ### Inference speed results
183
+
184
+ RecurrentGemma provides improved sampling speeds, particularly for long sequences or large batch sizes. We compared the sampling speeds of RecurrentGemma-9B to Gemma-7B. Note that Gemma-7B uses Multi-Head Attention, and the speed improvements would be smaller when comparing against a transformer using Multi-Query Attention.
185
+
186
+ #### Throughput
187
+
188
+ We evaluated throughput, i.e., the maximum number of tokens produced per second by increasing the batch size, of RecurrentGemma-9B compared to Gemma-7B, using a prefill of 2K tokens.
189
+
190
+ <img src="max_throughput.png" width="400" alt="Maximum Throughput comparison of RecurrentGemma-9B and Gemma-7B">
191
+
192
+ #### Latency
193
+
194
+ We also compared end-to-end speedups achieved by RecurrentGemma-9B over Gemma-7B when sampling a long sequence after a prefill of 4K tokens and using a batch size of 1.
195
+
196
+ \# Tokens Sampled | Gemma-7B (sec) | RecurrentGemma-9B (sec) | Improvement (%)
197
+ ----------------- | -------------- | ----------------------- | ---------------
198
+ 128 | 3.1 | 2.8 | 9.2%
199
+ 256 | 5.9 | 5.4 | 9.7%
200
+ 512 | 11.6 | 10.5 | 10.7%
201
+ 1024 | 23.5 | 20.6 | 14.2%
202
+ 2048 | 48.2 | 40.9 | 17.7%
203
+ 4096 | 101.9 | 81.5 | 25.0%
204
+ 8192 | OOM | 162.8 | -
205
+ 16384 | OOM | 325.2 | -
206
+
207
+ ## Ethics and safety
208
+
209
+ ### Ethics and safety evaluations
210
+
211
+ #### Evaluations approach
212
+
213
+ Our evaluation methods include structured evaluations and internal red-teaming
214
+ testing of relevant content policies. Red-teaming was conducted by a number of
215
+ different teams, each with different goals and human evaluation metrics. These
216
+ models were evaluated against a number of different categories relevant to
217
+ ethics and safety, including:
218
+
219
+ * **Text-to-text content safety:** Human evaluation on prompts covering safety
220
+ policies including child sexual abuse and exploitation, harassment, violence
221
+ and gore, and hate speech.
222
+ * **Text-to-text representational harms:** Benchmark against relevant academic
223
+ datasets such as WinoBias and BBQ Dataset.
224
+ * **Memorization:** Automated evaluation of memorization of training data,
225
+ including the risk of personally identifiable information exposure.
226
+ * **Large-scale harm:** Tests for “dangerous capabilities,” such as chemical,
227
+ biological, radiological, and nuclear (CBRN) risks; as well as tests for
228
+ persuasion and deception, cybersecurity, and autonomous replication.
229
+
230
+ #### Evaluation results
231
+
232
+ The results of ethics and safety evaluations are within acceptable thresholds
233
+ for meeting [internal
234
+ policies](https://storage.googleapis.com/gweb-uniblog-publish-prod/documents/2023_Google_AI_Principles_Progress_Update.pdf#page=11)
235
+ for categories such as child safety, content safety, representational harms,
236
+ memorization, large-scale harms. On top of robust internal evaluations, the
237
+ results of well known safety benchmarks like BBQ, Winogender, Winobias,
238
+ RealToxicity, and TruthfulQA are shown here.
239
+
240
+ Benchmark | Metric | RecurrentGemma 9B | RecurrentGemma 9B IT
241
+ ------------------------ | ------ | ----------------- | --------------------
242
+ [RealToxicity] | avg | 10.3 | 8.8
243
+ [BOLD] | | 39.8 | 47.9
244
+ [CrowS-Pairs] | top-1 | 38.7 | 39.5
245
+ [BBQ Ambig][BBQ] | top-1 | 95.9 | 67.1
246
+ [BBQ Disambig][BBQ] | top-1 | 78.6 | 78.9
247
+ [Winogender] | top-1 | 59.0 | 64.0
248
+ [TruthfulQA] | | 38.6 | 47.7
249
+ [Winobias 1_2][Winobias] | | 61.5 | 60.6
250
+ [Winobias 2_2][Winobias] | | 90.2 | 90.3
251
+ [Toxigen] | | 58.8 | 64.5
252
+
253
+ ## Model usage and limitations
254
+
255
+ ### Known limitations
256
+
257
+ These models have certain limitations that users should be aware of:
258
+
259
+ * **Training data**
260
+ * The quality and diversity of the training data significantly influence
261
+ the model's capabilities. Biases or gaps in the training data can lead
262
+ to limitations in the model's responses.
263
+ * The scope of the training dataset determines the subject areas the model
264
+ can handle effectively.
265
+ * **Context and task complexity**
266
+ * LLMs are better at tasks that can be framed with clear prompts and
267
+ instructions. Open-ended or highly complex tasks might be challenging.
268
+ * A model's performance can be influenced by the amount of context
269
+ provided (longer context generally leads to better outputs, up to a
270
+ certain point).
271
+ * **Language ambiguity and nuance**
272
+ * Natural language is inherently complex. LLMs might struggle to grasp
273
+ subtle nuances, sarcasm, or figurative language.
274
+ * **Factual accuracy**
275
+ * LLMs generate responses based on information they learned from their
276
+ training datasets, but they are not knowledge bases. They may generate
277
+ incorrect or outdated factual statements.
278
+ * **Common sense**
279
+ * LLMs rely on statistical patterns in language. They might lack the
280
+ ability to apply common sense reasoning in certain situations.
281
+
282
+ ### Ethical considerations and risks
283
+
284
+ The development of large language models (LLMs) raises several ethical concerns.
285
+ In creating an open model, we have carefully considered the following:
286
+
287
+ * **Bias and fairness**
288
+ * LLMs trained on large-scale, real-world text data can reflect
289
+ socio-cultural biases embedded in the training material. These models
290
+ underwent careful scrutiny, input data pre-processing described and
291
+ posterior evaluations reported in this card.
292
+ * **Misinformation and misuse**
293
+ * LLMs can be misused to generate text that is false, misleading, or
294
+ harmful.
295
+ * Guidelines are provided for responsible use with the model, see the
296
+ [Responsible Generative AI
297
+ Toolkit](https://ai.google.dev/gemma/responsible).
298
+ * **Transparency and accountability**
299
+ * This model card summarizes details on the models' architecture,
300
+ capabilities, limitations, and evaluation processes.
301
+ * A responsibly developed open model offers the opportunity to share
302
+ innovation by making LLM technology accessible to developers and
303
+ researchers across the AI ecosystem.
304
+
305
+ Risks Identified and Mitigations:
306
+
307
+ * **Perpetuation of biases:** It's encouraged to perform continuous monitoring
308
+ (using evaluation metrics, human review) and the exploration of de-biasing
309
+ techniques during model training, fine-tuning, and other use cases.
310
+ * **Generation of harmful content:** Mechanisms and guidelines for content
311
+ safety are essential. Developers are encouraged to exercise caution and
312
+ implement appropriate content safety safeguards based on their specific
313
+ product policies and application use cases.
314
+ * **Misuse for malicious purposes:** Technical limitations and developer and
315
+ end-user education can help mitigate against malicious applications of LLMs.
316
+ Educational resources and reporting mechanisms for users to flag misuse are
317
+ provided. Prohibited uses of Gemma models are outlined in our [terms of
318
+ use](https://www.kaggle.com/models/google/gemma/license/consent).
319
+ * **Privacy violations:** Models were trained on data filtered for removal of
320
+ PII (Personally Identifiable Information). Developers are encouraged to
321
+ adhere to privacy regulations with privacy-preserving techniques.
322
+
323
+ ## Intended usage
324
+
325
+ ### Application
326
+
327
+ Open Large Language Models (LLMs) have a wide range of applications across
328
+ various industries and domains. The following list of potential uses is not
329
+ comprehensive. The purpose of this list is to provide contextual information
330
+ about the possible use-cases that the model creators considered as part of model
331
+ training and development.
332
+
333
+ * **Content creation and communication**
334
+ * **Text generation:** These models can be used to generate creative text
335
+ formats like poems, scripts, code, marketing copy, email drafts, etc.
336
+ * **Chatbots and conversational AI:** Power conversational interfaces for
337
+ customer service, virtual assistants, or interactive applications.
338
+ * **Text summarization:** Generate concise summaries of a text corpus,
339
+ research papers, or reports.
340
+ * **Research and education**
341
+ * **Natural Language Processing (NLP) research:** These models can serve
342
+ as a foundation for researchers to experiment with NLP techniques,
343
+ develop algorithms, and contribute to the advancement of the field.
344
+ * **Language Learning Tools:** Support interactive language learning
345
+ experiences, aiding in grammar correction or providing writing practice.
346
+ * **Knowledge Exploration:** Assist researchers in exploring large bodies
347
+ of text by generating summaries or answering questions about specific
348
+ topics.
349
+
350
+ ### Benefits
351
+
352
+ At the time of release, this family of models provides high-performance open
353
+ large language model implementations designed from the ground up for Responsible
354
+ AI development compared to similarly sized models.
355
+
356
+ Using the benchmark evaluation metrics described in this document, these models
357
+ have shown to provide superior performance to other, comparably-sized open model
358
+ alternatives.
359
+
360
+ In particular, RecurrentGemma models achieve comparable performance to Gemma
361
+ models but are faster during inference and require less memory, especially on
362
+ long sequences.
363
+
364
+ [MMLU]: https://arxiv.org/abs/2009.03300
365
+ [HellaSwag]: https://arxiv.org/abs/1905.07830
366
+ [PIQA]: https://arxiv.org/abs/1911.11641
367
+ [SocialIQA]: https://arxiv.org/abs/1904.09728
368
+ [BoolQ]: https://arxiv.org/abs/1905.10044
369
+ [winogrande]: https://arxiv.org/abs/1907.10641
370
+ [CommonsenseQA]: https://arxiv.org/abs/1811.00937
371
+ [OpenBookQA]: https://arxiv.org/abs/1809.02789
372
+ [ARC-c]: https://arxiv.org/abs/1911.01547
373
+ [TriviaQA]: https://arxiv.org/abs/1705.03551
374
+ [Natural Questions]: https://github.com/google-research-datasets/natural-questions
375
+ [HumanEval]: https://arxiv.org/abs/2107.03374
376
+ [MBPP]: https://arxiv.org/abs/2108.07732
377
+ [GSM8K]: https://arxiv.org/abs/2110.14168
378
+ [MATH]: https://arxiv.org/abs/2103.03874
379
+ [AGIEval]: https://arxiv.org/abs/2304.06364
380
+ [BIG-Bench]: https://arxiv.org/abs/2206.04615
381
+ [RealToxicity]: https://arxiv.org/abs/2009.11462
382
+ [BOLD]: https://arxiv.org/abs/2101.11718
383
+ [CrowS-Pairs]: https://aclanthology.org/2020.emnlp-main.154/
384
+ [BBQ]: https://arxiv.org/abs/2110.08193v2
385
+ [Winogender]: https://arxiv.org/abs/1804.09301
386
+ [TruthfulQA]: https://arxiv.org/abs/2109.07958
387
+ [winobias]: https://arxiv.org/abs/1804.06876
388
+ [Toxigen]: https://arxiv.org/abs/2203.09509
config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "RecurrentGemmaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "attention_window_size": 2048,
8
+ "block_types": [
9
+ "recurrent",
10
+ "recurrent",
11
+ "attention"
12
+ ],
13
+ "bos_token_id": 2,
14
+ "conv1d_width": 4,
15
+ "eos_token_id": 1,
16
+ "final_w_init_variance_scale": 0.05263157894736842,
17
+ "head_dim": 256,
18
+ "hidden_activation": "gelu_pytorch_tanh",
19
+ "hidden_size": 4096,
20
+ "intermediate_size": 24576,
21
+ "logits_soft_cap": 30.0,
22
+ "lru_width": 4096,
23
+ "model_type": "recurrent_gemma",
24
+ "num_attention_heads": 16,
25
+ "num_hidden_layers": 38,
26
+ "num_key_value_heads": 1,
27
+ "pad_token_id": 0,
28
+ "partial_rotary_factor": 0.5,
29
+ "rms_norm_eps": 1e-06,
30
+ "rope_theta": 10000.0,
31
+ "torch_dtype": "bfloat16",
32
+ "transformers_version": "4.42.0.dev0",
33
+ "use_cache": true,
34
+ "vocab_size": 256000,
35
+ "w_init_variance_scale": 0.01
36
+ }
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 2,
4
+ "eos_token_id": 1,
5
+ "pad_token_id": 0,
6
+ "transformers_version": "4.42.0.dev0"
7
+ }
max_throughput.png ADDED
model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94cfea5e4b7984a59f2307ddf3b179c2ae06bd4cbfe8336ef3e871305a93954c
3
+ size 4983940472
model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f32ac929b77cabd019eb921589c714de6be9bb0e7e6998d2974053f33fa52055
3
+ size 4950993344
model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5d64c9433edb3e1203fa1864b21252b628f115166308fbe797905cbda60c73a
3
+ size 4921617480
model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:065b5ffce4125be59a24381613b7a78f8d85d1d8160eda5996e568637b4f7ab1
3
+ size 4400640456
model.safetensors.index.json ADDED
@@ -0,0 +1,712 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 19257106432
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00004-of-00004.safetensors",
7
+ "model.embed_tokens.weight": "model-00001-of-00004.safetensors",
8
+ "model.final_norm.weight": "model-00004-of-00004.safetensors",
9
+ "model.layers.0.channel_pre_norm.weight": "model-00001-of-00004.safetensors",
10
+ "model.layers.0.mlp_block.down_proj.bias": "model-00001-of-00004.safetensors",
11
+ "model.layers.0.mlp_block.down_proj.weight": "model-00001-of-00004.safetensors",
12
+ "model.layers.0.mlp_block.gate_proj.bias": "model-00001-of-00004.safetensors",
13
+ "model.layers.0.mlp_block.gate_proj.weight": "model-00001-of-00004.safetensors",
14
+ "model.layers.0.mlp_block.up_proj.bias": "model-00001-of-00004.safetensors",
15
+ "model.layers.0.mlp_block.up_proj.weight": "model-00001-of-00004.safetensors",
16
+ "model.layers.0.temporal_block.conv_1d.bias": "model-00001-of-00004.safetensors",
17
+ "model.layers.0.temporal_block.conv_1d.weight": "model-00001-of-00004.safetensors",
18
+ "model.layers.0.temporal_block.linear_out.bias": "model-00001-of-00004.safetensors",
19
+ "model.layers.0.temporal_block.linear_out.weight": "model-00001-of-00004.safetensors",
20
+ "model.layers.0.temporal_block.linear_x.bias": "model-00001-of-00004.safetensors",
21
+ "model.layers.0.temporal_block.linear_x.weight": "model-00001-of-00004.safetensors",
22
+ "model.layers.0.temporal_block.linear_y.bias": "model-00001-of-00004.safetensors",
23
+ "model.layers.0.temporal_block.linear_y.weight": "model-00001-of-00004.safetensors",
24
+ "model.layers.0.temporal_block.rg_lru.input_gate_bias": "model-00001-of-00004.safetensors",
25
+ "model.layers.0.temporal_block.rg_lru.input_gate_weight": "model-00001-of-00004.safetensors",
26
+ "model.layers.0.temporal_block.rg_lru.recurrent_gate_bias": "model-00001-of-00004.safetensors",
27
+ "model.layers.0.temporal_block.rg_lru.recurrent_gate_weight": "model-00001-of-00004.safetensors",
28
+ "model.layers.0.temporal_block.rg_lru.recurrent_param": "model-00001-of-00004.safetensors",
29
+ "model.layers.0.temporal_pre_norm.weight": "model-00001-of-00004.safetensors",
30
+ "model.layers.1.channel_pre_norm.weight": "model-00001-of-00004.safetensors",
31
+ "model.layers.1.mlp_block.down_proj.bias": "model-00001-of-00004.safetensors",
32
+ "model.layers.1.mlp_block.down_proj.weight": "model-00001-of-00004.safetensors",
33
+ "model.layers.1.mlp_block.gate_proj.bias": "model-00001-of-00004.safetensors",
34
+ "model.layers.1.mlp_block.gate_proj.weight": "model-00001-of-00004.safetensors",
35
+ "model.layers.1.mlp_block.up_proj.bias": "model-00001-of-00004.safetensors",
36
+ "model.layers.1.mlp_block.up_proj.weight": "model-00001-of-00004.safetensors",
37
+ "model.layers.1.temporal_block.conv_1d.bias": "model-00001-of-00004.safetensors",
38
+ "model.layers.1.temporal_block.conv_1d.weight": "model-00001-of-00004.safetensors",
39
+ "model.layers.1.temporal_block.linear_out.bias": "model-00001-of-00004.safetensors",
40
+ "model.layers.1.temporal_block.linear_out.weight": "model-00001-of-00004.safetensors",
41
+ "model.layers.1.temporal_block.linear_x.bias": "model-00001-of-00004.safetensors",
42
+ "model.layers.1.temporal_block.linear_x.weight": "model-00001-of-00004.safetensors",
43
+ "model.layers.1.temporal_block.linear_y.bias": "model-00001-of-00004.safetensors",
44
+ "model.layers.1.temporal_block.linear_y.weight": "model-00001-of-00004.safetensors",
45
+ "model.layers.1.temporal_block.rg_lru.input_gate_bias": "model-00001-of-00004.safetensors",
46
+ "model.layers.1.temporal_block.rg_lru.input_gate_weight": "model-00001-of-00004.safetensors",
47
+ "model.layers.1.temporal_block.rg_lru.recurrent_gate_bias": "model-00001-of-00004.safetensors",
48
+ "model.layers.1.temporal_block.rg_lru.recurrent_gate_weight": "model-00001-of-00004.safetensors",
49
+ "model.layers.1.temporal_block.rg_lru.recurrent_param": "model-00001-of-00004.safetensors",
50
+ "model.layers.1.temporal_pre_norm.weight": "model-00001-of-00004.safetensors",
51
+ "model.layers.10.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
52
+ "model.layers.10.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
53
+ "model.layers.10.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
54
+ "model.layers.10.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
55
+ "model.layers.10.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
56
+ "model.layers.10.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
57
+ "model.layers.10.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
58
+ "model.layers.10.temporal_block.conv_1d.bias": "model-00002-of-00004.safetensors",
59
+ "model.layers.10.temporal_block.conv_1d.weight": "model-00002-of-00004.safetensors",
60
+ "model.layers.10.temporal_block.linear_out.bias": "model-00002-of-00004.safetensors",
61
+ "model.layers.10.temporal_block.linear_out.weight": "model-00002-of-00004.safetensors",
62
+ "model.layers.10.temporal_block.linear_x.bias": "model-00002-of-00004.safetensors",
63
+ "model.layers.10.temporal_block.linear_x.weight": "model-00002-of-00004.safetensors",
64
+ "model.layers.10.temporal_block.linear_y.bias": "model-00002-of-00004.safetensors",
65
+ "model.layers.10.temporal_block.linear_y.weight": "model-00002-of-00004.safetensors",
66
+ "model.layers.10.temporal_block.rg_lru.input_gate_bias": "model-00002-of-00004.safetensors",
67
+ "model.layers.10.temporal_block.rg_lru.input_gate_weight": "model-00002-of-00004.safetensors",
68
+ "model.layers.10.temporal_block.rg_lru.recurrent_gate_bias": "model-00002-of-00004.safetensors",
69
+ "model.layers.10.temporal_block.rg_lru.recurrent_gate_weight": "model-00002-of-00004.safetensors",
70
+ "model.layers.10.temporal_block.rg_lru.recurrent_param": "model-00002-of-00004.safetensors",
71
+ "model.layers.10.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
72
+ "model.layers.11.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
73
+ "model.layers.11.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
74
+ "model.layers.11.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
75
+ "model.layers.11.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
76
+ "model.layers.11.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
77
+ "model.layers.11.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
78
+ "model.layers.11.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
79
+ "model.layers.11.temporal_block.k_proj.weight": "model-00002-of-00004.safetensors",
80
+ "model.layers.11.temporal_block.o_proj.bias": "model-00002-of-00004.safetensors",
81
+ "model.layers.11.temporal_block.o_proj.weight": "model-00002-of-00004.safetensors",
82
+ "model.layers.11.temporal_block.q_proj.weight": "model-00002-of-00004.safetensors",
83
+ "model.layers.11.temporal_block.v_proj.weight": "model-00002-of-00004.safetensors",
84
+ "model.layers.11.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
85
+ "model.layers.12.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
86
+ "model.layers.12.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
87
+ "model.layers.12.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
88
+ "model.layers.12.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
89
+ "model.layers.12.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
90
+ "model.layers.12.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
91
+ "model.layers.12.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
92
+ "model.layers.12.temporal_block.conv_1d.bias": "model-00002-of-00004.safetensors",
93
+ "model.layers.12.temporal_block.conv_1d.weight": "model-00002-of-00004.safetensors",
94
+ "model.layers.12.temporal_block.linear_out.bias": "model-00002-of-00004.safetensors",
95
+ "model.layers.12.temporal_block.linear_out.weight": "model-00002-of-00004.safetensors",
96
+ "model.layers.12.temporal_block.linear_x.bias": "model-00002-of-00004.safetensors",
97
+ "model.layers.12.temporal_block.linear_x.weight": "model-00002-of-00004.safetensors",
98
+ "model.layers.12.temporal_block.linear_y.bias": "model-00002-of-00004.safetensors",
99
+ "model.layers.12.temporal_block.linear_y.weight": "model-00002-of-00004.safetensors",
100
+ "model.layers.12.temporal_block.rg_lru.input_gate_bias": "model-00002-of-00004.safetensors",
101
+ "model.layers.12.temporal_block.rg_lru.input_gate_weight": "model-00002-of-00004.safetensors",
102
+ "model.layers.12.temporal_block.rg_lru.recurrent_gate_bias": "model-00002-of-00004.safetensors",
103
+ "model.layers.12.temporal_block.rg_lru.recurrent_gate_weight": "model-00002-of-00004.safetensors",
104
+ "model.layers.12.temporal_block.rg_lru.recurrent_param": "model-00002-of-00004.safetensors",
105
+ "model.layers.12.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
106
+ "model.layers.13.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
107
+ "model.layers.13.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
108
+ "model.layers.13.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
109
+ "model.layers.13.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
110
+ "model.layers.13.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
111
+ "model.layers.13.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
112
+ "model.layers.13.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
113
+ "model.layers.13.temporal_block.conv_1d.bias": "model-00002-of-00004.safetensors",
114
+ "model.layers.13.temporal_block.conv_1d.weight": "model-00002-of-00004.safetensors",
115
+ "model.layers.13.temporal_block.linear_out.bias": "model-00002-of-00004.safetensors",
116
+ "model.layers.13.temporal_block.linear_out.weight": "model-00002-of-00004.safetensors",
117
+ "model.layers.13.temporal_block.linear_x.bias": "model-00002-of-00004.safetensors",
118
+ "model.layers.13.temporal_block.linear_x.weight": "model-00002-of-00004.safetensors",
119
+ "model.layers.13.temporal_block.linear_y.bias": "model-00002-of-00004.safetensors",
120
+ "model.layers.13.temporal_block.linear_y.weight": "model-00002-of-00004.safetensors",
121
+ "model.layers.13.temporal_block.rg_lru.input_gate_bias": "model-00002-of-00004.safetensors",
122
+ "model.layers.13.temporal_block.rg_lru.input_gate_weight": "model-00002-of-00004.safetensors",
123
+ "model.layers.13.temporal_block.rg_lru.recurrent_gate_bias": "model-00002-of-00004.safetensors",
124
+ "model.layers.13.temporal_block.rg_lru.recurrent_gate_weight": "model-00002-of-00004.safetensors",
125
+ "model.layers.13.temporal_block.rg_lru.recurrent_param": "model-00002-of-00004.safetensors",
126
+ "model.layers.13.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
127
+ "model.layers.14.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
128
+ "model.layers.14.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
129
+ "model.layers.14.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
130
+ "model.layers.14.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
131
+ "model.layers.14.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
132
+ "model.layers.14.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
133
+ "model.layers.14.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
134
+ "model.layers.14.temporal_block.k_proj.weight": "model-00002-of-00004.safetensors",
135
+ "model.layers.14.temporal_block.o_proj.bias": "model-00002-of-00004.safetensors",
136
+ "model.layers.14.temporal_block.o_proj.weight": "model-00002-of-00004.safetensors",
137
+ "model.layers.14.temporal_block.q_proj.weight": "model-00002-of-00004.safetensors",
138
+ "model.layers.14.temporal_block.v_proj.weight": "model-00002-of-00004.safetensors",
139
+ "model.layers.14.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
140
+ "model.layers.15.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
141
+ "model.layers.15.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
142
+ "model.layers.15.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
143
+ "model.layers.15.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
144
+ "model.layers.15.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
145
+ "model.layers.15.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
146
+ "model.layers.15.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
147
+ "model.layers.15.temporal_block.conv_1d.bias": "model-00002-of-00004.safetensors",
148
+ "model.layers.15.temporal_block.conv_1d.weight": "model-00002-of-00004.safetensors",
149
+ "model.layers.15.temporal_block.linear_out.bias": "model-00002-of-00004.safetensors",
150
+ "model.layers.15.temporal_block.linear_out.weight": "model-00002-of-00004.safetensors",
151
+ "model.layers.15.temporal_block.linear_x.bias": "model-00002-of-00004.safetensors",
152
+ "model.layers.15.temporal_block.linear_x.weight": "model-00002-of-00004.safetensors",
153
+ "model.layers.15.temporal_block.linear_y.bias": "model-00002-of-00004.safetensors",
154
+ "model.layers.15.temporal_block.linear_y.weight": "model-00002-of-00004.safetensors",
155
+ "model.layers.15.temporal_block.rg_lru.input_gate_bias": "model-00002-of-00004.safetensors",
156
+ "model.layers.15.temporal_block.rg_lru.input_gate_weight": "model-00002-of-00004.safetensors",
157
+ "model.layers.15.temporal_block.rg_lru.recurrent_gate_bias": "model-00002-of-00004.safetensors",
158
+ "model.layers.15.temporal_block.rg_lru.recurrent_gate_weight": "model-00002-of-00004.safetensors",
159
+ "model.layers.15.temporal_block.rg_lru.recurrent_param": "model-00002-of-00004.safetensors",
160
+ "model.layers.15.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
161
+ "model.layers.16.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
162
+ "model.layers.16.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
163
+ "model.layers.16.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
164
+ "model.layers.16.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
165
+ "model.layers.16.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
166
+ "model.layers.16.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
167
+ "model.layers.16.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
168
+ "model.layers.16.temporal_block.conv_1d.bias": "model-00002-of-00004.safetensors",
169
+ "model.layers.16.temporal_block.conv_1d.weight": "model-00002-of-00004.safetensors",
170
+ "model.layers.16.temporal_block.linear_out.bias": "model-00002-of-00004.safetensors",
171
+ "model.layers.16.temporal_block.linear_out.weight": "model-00002-of-00004.safetensors",
172
+ "model.layers.16.temporal_block.linear_x.bias": "model-00002-of-00004.safetensors",
173
+ "model.layers.16.temporal_block.linear_x.weight": "model-00002-of-00004.safetensors",
174
+ "model.layers.16.temporal_block.linear_y.bias": "model-00002-of-00004.safetensors",
175
+ "model.layers.16.temporal_block.linear_y.weight": "model-00002-of-00004.safetensors",
176
+ "model.layers.16.temporal_block.rg_lru.input_gate_bias": "model-00002-of-00004.safetensors",
177
+ "model.layers.16.temporal_block.rg_lru.input_gate_weight": "model-00002-of-00004.safetensors",
178
+ "model.layers.16.temporal_block.rg_lru.recurrent_gate_bias": "model-00002-of-00004.safetensors",
179
+ "model.layers.16.temporal_block.rg_lru.recurrent_gate_weight": "model-00002-of-00004.safetensors",
180
+ "model.layers.16.temporal_block.rg_lru.recurrent_param": "model-00002-of-00004.safetensors",
181
+ "model.layers.16.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
182
+ "model.layers.17.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
183
+ "model.layers.17.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
184
+ "model.layers.17.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
185
+ "model.layers.17.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
186
+ "model.layers.17.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
187
+ "model.layers.17.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
188
+ "model.layers.17.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
189
+ "model.layers.17.temporal_block.k_proj.weight": "model-00002-of-00004.safetensors",
190
+ "model.layers.17.temporal_block.o_proj.bias": "model-00002-of-00004.safetensors",
191
+ "model.layers.17.temporal_block.o_proj.weight": "model-00002-of-00004.safetensors",
192
+ "model.layers.17.temporal_block.q_proj.weight": "model-00002-of-00004.safetensors",
193
+ "model.layers.17.temporal_block.v_proj.weight": "model-00002-of-00004.safetensors",
194
+ "model.layers.17.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
195
+ "model.layers.18.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
196
+ "model.layers.18.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
197
+ "model.layers.18.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
198
+ "model.layers.18.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
199
+ "model.layers.18.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
200
+ "model.layers.18.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
201
+ "model.layers.18.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
202
+ "model.layers.18.temporal_block.conv_1d.bias": "model-00002-of-00004.safetensors",
203
+ "model.layers.18.temporal_block.conv_1d.weight": "model-00002-of-00004.safetensors",
204
+ "model.layers.18.temporal_block.linear_out.bias": "model-00002-of-00004.safetensors",
205
+ "model.layers.18.temporal_block.linear_out.weight": "model-00002-of-00004.safetensors",
206
+ "model.layers.18.temporal_block.linear_x.bias": "model-00002-of-00004.safetensors",
207
+ "model.layers.18.temporal_block.linear_x.weight": "model-00002-of-00004.safetensors",
208
+ "model.layers.18.temporal_block.linear_y.bias": "model-00002-of-00004.safetensors",
209
+ "model.layers.18.temporal_block.linear_y.weight": "model-00002-of-00004.safetensors",
210
+ "model.layers.18.temporal_block.rg_lru.input_gate_bias": "model-00002-of-00004.safetensors",
211
+ "model.layers.18.temporal_block.rg_lru.input_gate_weight": "model-00002-of-00004.safetensors",
212
+ "model.layers.18.temporal_block.rg_lru.recurrent_gate_bias": "model-00002-of-00004.safetensors",
213
+ "model.layers.18.temporal_block.rg_lru.recurrent_gate_weight": "model-00002-of-00004.safetensors",
214
+ "model.layers.18.temporal_block.rg_lru.recurrent_param": "model-00002-of-00004.safetensors",
215
+ "model.layers.18.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
216
+ "model.layers.19.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
217
+ "model.layers.19.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
218
+ "model.layers.19.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
219
+ "model.layers.19.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
220
+ "model.layers.19.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
221
+ "model.layers.19.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
222
+ "model.layers.19.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
223
+ "model.layers.19.temporal_block.conv_1d.bias": "model-00002-of-00004.safetensors",
224
+ "model.layers.19.temporal_block.conv_1d.weight": "model-00002-of-00004.safetensors",
225
+ "model.layers.19.temporal_block.linear_out.bias": "model-00002-of-00004.safetensors",
226
+ "model.layers.19.temporal_block.linear_out.weight": "model-00002-of-00004.safetensors",
227
+ "model.layers.19.temporal_block.linear_x.bias": "model-00002-of-00004.safetensors",
228
+ "model.layers.19.temporal_block.linear_x.weight": "model-00002-of-00004.safetensors",
229
+ "model.layers.19.temporal_block.linear_y.bias": "model-00002-of-00004.safetensors",
230
+ "model.layers.19.temporal_block.linear_y.weight": "model-00002-of-00004.safetensors",
231
+ "model.layers.19.temporal_block.rg_lru.input_gate_bias": "model-00002-of-00004.safetensors",
232
+ "model.layers.19.temporal_block.rg_lru.input_gate_weight": "model-00002-of-00004.safetensors",
233
+ "model.layers.19.temporal_block.rg_lru.recurrent_gate_bias": "model-00002-of-00004.safetensors",
234
+ "model.layers.19.temporal_block.rg_lru.recurrent_gate_weight": "model-00002-of-00004.safetensors",
235
+ "model.layers.19.temporal_block.rg_lru.recurrent_param": "model-00002-of-00004.safetensors",
236
+ "model.layers.19.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
237
+ "model.layers.2.channel_pre_norm.weight": "model-00001-of-00004.safetensors",
238
+ "model.layers.2.mlp_block.down_proj.bias": "model-00001-of-00004.safetensors",
239
+ "model.layers.2.mlp_block.down_proj.weight": "model-00001-of-00004.safetensors",
240
+ "model.layers.2.mlp_block.gate_proj.bias": "model-00001-of-00004.safetensors",
241
+ "model.layers.2.mlp_block.gate_proj.weight": "model-00001-of-00004.safetensors",
242
+ "model.layers.2.mlp_block.up_proj.bias": "model-00001-of-00004.safetensors",
243
+ "model.layers.2.mlp_block.up_proj.weight": "model-00001-of-00004.safetensors",
244
+ "model.layers.2.temporal_block.k_proj.weight": "model-00001-of-00004.safetensors",
245
+ "model.layers.2.temporal_block.o_proj.bias": "model-00001-of-00004.safetensors",
246
+ "model.layers.2.temporal_block.o_proj.weight": "model-00001-of-00004.safetensors",
247
+ "model.layers.2.temporal_block.q_proj.weight": "model-00001-of-00004.safetensors",
248
+ "model.layers.2.temporal_block.v_proj.weight": "model-00001-of-00004.safetensors",
249
+ "model.layers.2.temporal_pre_norm.weight": "model-00001-of-00004.safetensors",
250
+ "model.layers.20.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
251
+ "model.layers.20.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
252
+ "model.layers.20.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
253
+ "model.layers.20.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
254
+ "model.layers.20.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
255
+ "model.layers.20.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
256
+ "model.layers.20.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
257
+ "model.layers.20.temporal_block.k_proj.weight": "model-00003-of-00004.safetensors",
258
+ "model.layers.20.temporal_block.o_proj.bias": "model-00003-of-00004.safetensors",
259
+ "model.layers.20.temporal_block.o_proj.weight": "model-00003-of-00004.safetensors",
260
+ "model.layers.20.temporal_block.q_proj.weight": "model-00003-of-00004.safetensors",
261
+ "model.layers.20.temporal_block.v_proj.weight": "model-00003-of-00004.safetensors",
262
+ "model.layers.20.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
263
+ "model.layers.21.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
264
+ "model.layers.21.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
265
+ "model.layers.21.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
266
+ "model.layers.21.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
267
+ "model.layers.21.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
268
+ "model.layers.21.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
269
+ "model.layers.21.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
270
+ "model.layers.21.temporal_block.conv_1d.bias": "model-00003-of-00004.safetensors",
271
+ "model.layers.21.temporal_block.conv_1d.weight": "model-00003-of-00004.safetensors",
272
+ "model.layers.21.temporal_block.linear_out.bias": "model-00003-of-00004.safetensors",
273
+ "model.layers.21.temporal_block.linear_out.weight": "model-00003-of-00004.safetensors",
274
+ "model.layers.21.temporal_block.linear_x.bias": "model-00003-of-00004.safetensors",
275
+ "model.layers.21.temporal_block.linear_x.weight": "model-00003-of-00004.safetensors",
276
+ "model.layers.21.temporal_block.linear_y.bias": "model-00003-of-00004.safetensors",
277
+ "model.layers.21.temporal_block.linear_y.weight": "model-00003-of-00004.safetensors",
278
+ "model.layers.21.temporal_block.rg_lru.input_gate_bias": "model-00003-of-00004.safetensors",
279
+ "model.layers.21.temporal_block.rg_lru.input_gate_weight": "model-00003-of-00004.safetensors",
280
+ "model.layers.21.temporal_block.rg_lru.recurrent_gate_bias": "model-00003-of-00004.safetensors",
281
+ "model.layers.21.temporal_block.rg_lru.recurrent_gate_weight": "model-00003-of-00004.safetensors",
282
+ "model.layers.21.temporal_block.rg_lru.recurrent_param": "model-00003-of-00004.safetensors",
283
+ "model.layers.21.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
284
+ "model.layers.22.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
285
+ "model.layers.22.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
286
+ "model.layers.22.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
287
+ "model.layers.22.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
288
+ "model.layers.22.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
289
+ "model.layers.22.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
290
+ "model.layers.22.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
291
+ "model.layers.22.temporal_block.conv_1d.bias": "model-00003-of-00004.safetensors",
292
+ "model.layers.22.temporal_block.conv_1d.weight": "model-00003-of-00004.safetensors",
293
+ "model.layers.22.temporal_block.linear_out.bias": "model-00003-of-00004.safetensors",
294
+ "model.layers.22.temporal_block.linear_out.weight": "model-00003-of-00004.safetensors",
295
+ "model.layers.22.temporal_block.linear_x.bias": "model-00003-of-00004.safetensors",
296
+ "model.layers.22.temporal_block.linear_x.weight": "model-00003-of-00004.safetensors",
297
+ "model.layers.22.temporal_block.linear_y.bias": "model-00003-of-00004.safetensors",
298
+ "model.layers.22.temporal_block.linear_y.weight": "model-00003-of-00004.safetensors",
299
+ "model.layers.22.temporal_block.rg_lru.input_gate_bias": "model-00003-of-00004.safetensors",
300
+ "model.layers.22.temporal_block.rg_lru.input_gate_weight": "model-00003-of-00004.safetensors",
301
+ "model.layers.22.temporal_block.rg_lru.recurrent_gate_bias": "model-00003-of-00004.safetensors",
302
+ "model.layers.22.temporal_block.rg_lru.recurrent_gate_weight": "model-00003-of-00004.safetensors",
303
+ "model.layers.22.temporal_block.rg_lru.recurrent_param": "model-00003-of-00004.safetensors",
304
+ "model.layers.22.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
305
+ "model.layers.23.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
306
+ "model.layers.23.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
307
+ "model.layers.23.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
308
+ "model.layers.23.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
309
+ "model.layers.23.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
310
+ "model.layers.23.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
311
+ "model.layers.23.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
312
+ "model.layers.23.temporal_block.k_proj.weight": "model-00003-of-00004.safetensors",
313
+ "model.layers.23.temporal_block.o_proj.bias": "model-00003-of-00004.safetensors",
314
+ "model.layers.23.temporal_block.o_proj.weight": "model-00003-of-00004.safetensors",
315
+ "model.layers.23.temporal_block.q_proj.weight": "model-00003-of-00004.safetensors",
316
+ "model.layers.23.temporal_block.v_proj.weight": "model-00003-of-00004.safetensors",
317
+ "model.layers.23.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
318
+ "model.layers.24.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
319
+ "model.layers.24.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
320
+ "model.layers.24.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
321
+ "model.layers.24.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
322
+ "model.layers.24.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
323
+ "model.layers.24.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
324
+ "model.layers.24.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
325
+ "model.layers.24.temporal_block.conv_1d.bias": "model-00003-of-00004.safetensors",
326
+ "model.layers.24.temporal_block.conv_1d.weight": "model-00003-of-00004.safetensors",
327
+ "model.layers.24.temporal_block.linear_out.bias": "model-00003-of-00004.safetensors",
328
+ "model.layers.24.temporal_block.linear_out.weight": "model-00003-of-00004.safetensors",
329
+ "model.layers.24.temporal_block.linear_x.bias": "model-00003-of-00004.safetensors",
330
+ "model.layers.24.temporal_block.linear_x.weight": "model-00003-of-00004.safetensors",
331
+ "model.layers.24.temporal_block.linear_y.bias": "model-00003-of-00004.safetensors",
332
+ "model.layers.24.temporal_block.linear_y.weight": "model-00003-of-00004.safetensors",
333
+ "model.layers.24.temporal_block.rg_lru.input_gate_bias": "model-00003-of-00004.safetensors",
334
+ "model.layers.24.temporal_block.rg_lru.input_gate_weight": "model-00003-of-00004.safetensors",
335
+ "model.layers.24.temporal_block.rg_lru.recurrent_gate_bias": "model-00003-of-00004.safetensors",
336
+ "model.layers.24.temporal_block.rg_lru.recurrent_gate_weight": "model-00003-of-00004.safetensors",
337
+ "model.layers.24.temporal_block.rg_lru.recurrent_param": "model-00003-of-00004.safetensors",
338
+ "model.layers.24.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
339
+ "model.layers.25.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
340
+ "model.layers.25.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
341
+ "model.layers.25.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
342
+ "model.layers.25.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
343
+ "model.layers.25.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
344
+ "model.layers.25.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
345
+ "model.layers.25.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
346
+ "model.layers.25.temporal_block.conv_1d.bias": "model-00003-of-00004.safetensors",
347
+ "model.layers.25.temporal_block.conv_1d.weight": "model-00003-of-00004.safetensors",
348
+ "model.layers.25.temporal_block.linear_out.bias": "model-00003-of-00004.safetensors",
349
+ "model.layers.25.temporal_block.linear_out.weight": "model-00003-of-00004.safetensors",
350
+ "model.layers.25.temporal_block.linear_x.bias": "model-00003-of-00004.safetensors",
351
+ "model.layers.25.temporal_block.linear_x.weight": "model-00003-of-00004.safetensors",
352
+ "model.layers.25.temporal_block.linear_y.bias": "model-00003-of-00004.safetensors",
353
+ "model.layers.25.temporal_block.linear_y.weight": "model-00003-of-00004.safetensors",
354
+ "model.layers.25.temporal_block.rg_lru.input_gate_bias": "model-00003-of-00004.safetensors",
355
+ "model.layers.25.temporal_block.rg_lru.input_gate_weight": "model-00003-of-00004.safetensors",
356
+ "model.layers.25.temporal_block.rg_lru.recurrent_gate_bias": "model-00003-of-00004.safetensors",
357
+ "model.layers.25.temporal_block.rg_lru.recurrent_gate_weight": "model-00003-of-00004.safetensors",
358
+ "model.layers.25.temporal_block.rg_lru.recurrent_param": "model-00003-of-00004.safetensors",
359
+ "model.layers.25.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
360
+ "model.layers.26.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
361
+ "model.layers.26.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
362
+ "model.layers.26.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
363
+ "model.layers.26.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
364
+ "model.layers.26.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
365
+ "model.layers.26.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
366
+ "model.layers.26.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
367
+ "model.layers.26.temporal_block.k_proj.weight": "model-00003-of-00004.safetensors",
368
+ "model.layers.26.temporal_block.o_proj.bias": "model-00003-of-00004.safetensors",
369
+ "model.layers.26.temporal_block.o_proj.weight": "model-00003-of-00004.safetensors",
370
+ "model.layers.26.temporal_block.q_proj.weight": "model-00003-of-00004.safetensors",
371
+ "model.layers.26.temporal_block.v_proj.weight": "model-00003-of-00004.safetensors",
372
+ "model.layers.26.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
373
+ "model.layers.27.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
374
+ "model.layers.27.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
375
+ "model.layers.27.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
376
+ "model.layers.27.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
377
+ "model.layers.27.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
378
+ "model.layers.27.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
379
+ "model.layers.27.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
380
+ "model.layers.27.temporal_block.conv_1d.bias": "model-00003-of-00004.safetensors",
381
+ "model.layers.27.temporal_block.conv_1d.weight": "model-00003-of-00004.safetensors",
382
+ "model.layers.27.temporal_block.linear_out.bias": "model-00003-of-00004.safetensors",
383
+ "model.layers.27.temporal_block.linear_out.weight": "model-00003-of-00004.safetensors",
384
+ "model.layers.27.temporal_block.linear_x.bias": "model-00003-of-00004.safetensors",
385
+ "model.layers.27.temporal_block.linear_x.weight": "model-00003-of-00004.safetensors",
386
+ "model.layers.27.temporal_block.linear_y.bias": "model-00003-of-00004.safetensors",
387
+ "model.layers.27.temporal_block.linear_y.weight": "model-00003-of-00004.safetensors",
388
+ "model.layers.27.temporal_block.rg_lru.input_gate_bias": "model-00003-of-00004.safetensors",
389
+ "model.layers.27.temporal_block.rg_lru.input_gate_weight": "model-00003-of-00004.safetensors",
390
+ "model.layers.27.temporal_block.rg_lru.recurrent_gate_bias": "model-00003-of-00004.safetensors",
391
+ "model.layers.27.temporal_block.rg_lru.recurrent_gate_weight": "model-00003-of-00004.safetensors",
392
+ "model.layers.27.temporal_block.rg_lru.recurrent_param": "model-00003-of-00004.safetensors",
393
+ "model.layers.27.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
394
+ "model.layers.28.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
395
+ "model.layers.28.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
396
+ "model.layers.28.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
397
+ "model.layers.28.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
398
+ "model.layers.28.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
399
+ "model.layers.28.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
400
+ "model.layers.28.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
401
+ "model.layers.28.temporal_block.conv_1d.bias": "model-00003-of-00004.safetensors",
402
+ "model.layers.28.temporal_block.conv_1d.weight": "model-00003-of-00004.safetensors",
403
+ "model.layers.28.temporal_block.linear_out.bias": "model-00003-of-00004.safetensors",
404
+ "model.layers.28.temporal_block.linear_out.weight": "model-00003-of-00004.safetensors",
405
+ "model.layers.28.temporal_block.linear_x.bias": "model-00003-of-00004.safetensors",
406
+ "model.layers.28.temporal_block.linear_x.weight": "model-00003-of-00004.safetensors",
407
+ "model.layers.28.temporal_block.linear_y.bias": "model-00003-of-00004.safetensors",
408
+ "model.layers.28.temporal_block.linear_y.weight": "model-00003-of-00004.safetensors",
409
+ "model.layers.28.temporal_block.rg_lru.input_gate_bias": "model-00003-of-00004.safetensors",
410
+ "model.layers.28.temporal_block.rg_lru.input_gate_weight": "model-00003-of-00004.safetensors",
411
+ "model.layers.28.temporal_block.rg_lru.recurrent_gate_bias": "model-00003-of-00004.safetensors",
412
+ "model.layers.28.temporal_block.rg_lru.recurrent_gate_weight": "model-00003-of-00004.safetensors",
413
+ "model.layers.28.temporal_block.rg_lru.recurrent_param": "model-00003-of-00004.safetensors",
414
+ "model.layers.28.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
415
+ "model.layers.29.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
416
+ "model.layers.29.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
417
+ "model.layers.29.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
418
+ "model.layers.29.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
419
+ "model.layers.29.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
420
+ "model.layers.29.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
421
+ "model.layers.29.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
422
+ "model.layers.29.temporal_block.k_proj.weight": "model-00003-of-00004.safetensors",
423
+ "model.layers.29.temporal_block.o_proj.bias": "model-00003-of-00004.safetensors",
424
+ "model.layers.29.temporal_block.o_proj.weight": "model-00003-of-00004.safetensors",
425
+ "model.layers.29.temporal_block.q_proj.weight": "model-00003-of-00004.safetensors",
426
+ "model.layers.29.temporal_block.v_proj.weight": "model-00003-of-00004.safetensors",
427
+ "model.layers.29.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
428
+ "model.layers.3.channel_pre_norm.weight": "model-00001-of-00004.safetensors",
429
+ "model.layers.3.mlp_block.down_proj.bias": "model-00001-of-00004.safetensors",
430
+ "model.layers.3.mlp_block.down_proj.weight": "model-00001-of-00004.safetensors",
431
+ "model.layers.3.mlp_block.gate_proj.bias": "model-00001-of-00004.safetensors",
432
+ "model.layers.3.mlp_block.gate_proj.weight": "model-00001-of-00004.safetensors",
433
+ "model.layers.3.mlp_block.up_proj.bias": "model-00001-of-00004.safetensors",
434
+ "model.layers.3.mlp_block.up_proj.weight": "model-00001-of-00004.safetensors",
435
+ "model.layers.3.temporal_block.conv_1d.bias": "model-00001-of-00004.safetensors",
436
+ "model.layers.3.temporal_block.conv_1d.weight": "model-00001-of-00004.safetensors",
437
+ "model.layers.3.temporal_block.linear_out.bias": "model-00001-of-00004.safetensors",
438
+ "model.layers.3.temporal_block.linear_out.weight": "model-00001-of-00004.safetensors",
439
+ "model.layers.3.temporal_block.linear_x.bias": "model-00001-of-00004.safetensors",
440
+ "model.layers.3.temporal_block.linear_x.weight": "model-00001-of-00004.safetensors",
441
+ "model.layers.3.temporal_block.linear_y.bias": "model-00001-of-00004.safetensors",
442
+ "model.layers.3.temporal_block.linear_y.weight": "model-00001-of-00004.safetensors",
443
+ "model.layers.3.temporal_block.rg_lru.input_gate_bias": "model-00001-of-00004.safetensors",
444
+ "model.layers.3.temporal_block.rg_lru.input_gate_weight": "model-00001-of-00004.safetensors",
445
+ "model.layers.3.temporal_block.rg_lru.recurrent_gate_bias": "model-00001-of-00004.safetensors",
446
+ "model.layers.3.temporal_block.rg_lru.recurrent_gate_weight": "model-00001-of-00004.safetensors",
447
+ "model.layers.3.temporal_block.rg_lru.recurrent_param": "model-00001-of-00004.safetensors",
448
+ "model.layers.3.temporal_pre_norm.weight": "model-00001-of-00004.safetensors",
449
+ "model.layers.30.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
450
+ "model.layers.30.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
451
+ "model.layers.30.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
452
+ "model.layers.30.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
453
+ "model.layers.30.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
454
+ "model.layers.30.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
455
+ "model.layers.30.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
456
+ "model.layers.30.temporal_block.conv_1d.bias": "model-00003-of-00004.safetensors",
457
+ "model.layers.30.temporal_block.conv_1d.weight": "model-00003-of-00004.safetensors",
458
+ "model.layers.30.temporal_block.linear_out.bias": "model-00003-of-00004.safetensors",
459
+ "model.layers.30.temporal_block.linear_out.weight": "model-00003-of-00004.safetensors",
460
+ "model.layers.30.temporal_block.linear_x.bias": "model-00003-of-00004.safetensors",
461
+ "model.layers.30.temporal_block.linear_x.weight": "model-00003-of-00004.safetensors",
462
+ "model.layers.30.temporal_block.linear_y.bias": "model-00003-of-00004.safetensors",
463
+ "model.layers.30.temporal_block.linear_y.weight": "model-00003-of-00004.safetensors",
464
+ "model.layers.30.temporal_block.rg_lru.input_gate_bias": "model-00003-of-00004.safetensors",
465
+ "model.layers.30.temporal_block.rg_lru.input_gate_weight": "model-00003-of-00004.safetensors",
466
+ "model.layers.30.temporal_block.rg_lru.recurrent_gate_bias": "model-00003-of-00004.safetensors",
467
+ "model.layers.30.temporal_block.rg_lru.recurrent_gate_weight": "model-00003-of-00004.safetensors",
468
+ "model.layers.30.temporal_block.rg_lru.recurrent_param": "model-00003-of-00004.safetensors",
469
+ "model.layers.30.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
470
+ "model.layers.31.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
471
+ "model.layers.31.mlp_block.down_proj.bias": "model-00003-of-00004.safetensors",
472
+ "model.layers.31.mlp_block.down_proj.weight": "model-00003-of-00004.safetensors",
473
+ "model.layers.31.mlp_block.gate_proj.bias": "model-00003-of-00004.safetensors",
474
+ "model.layers.31.mlp_block.gate_proj.weight": "model-00003-of-00004.safetensors",
475
+ "model.layers.31.mlp_block.up_proj.bias": "model-00003-of-00004.safetensors",
476
+ "model.layers.31.mlp_block.up_proj.weight": "model-00003-of-00004.safetensors",
477
+ "model.layers.31.temporal_block.conv_1d.bias": "model-00003-of-00004.safetensors",
478
+ "model.layers.31.temporal_block.conv_1d.weight": "model-00003-of-00004.safetensors",
479
+ "model.layers.31.temporal_block.linear_out.bias": "model-00003-of-00004.safetensors",
480
+ "model.layers.31.temporal_block.linear_out.weight": "model-00003-of-00004.safetensors",
481
+ "model.layers.31.temporal_block.linear_x.bias": "model-00003-of-00004.safetensors",
482
+ "model.layers.31.temporal_block.linear_x.weight": "model-00003-of-00004.safetensors",
483
+ "model.layers.31.temporal_block.linear_y.bias": "model-00003-of-00004.safetensors",
484
+ "model.layers.31.temporal_block.linear_y.weight": "model-00003-of-00004.safetensors",
485
+ "model.layers.31.temporal_block.rg_lru.input_gate_bias": "model-00003-of-00004.safetensors",
486
+ "model.layers.31.temporal_block.rg_lru.input_gate_weight": "model-00003-of-00004.safetensors",
487
+ "model.layers.31.temporal_block.rg_lru.recurrent_gate_bias": "model-00003-of-00004.safetensors",
488
+ "model.layers.31.temporal_block.rg_lru.recurrent_gate_weight": "model-00003-of-00004.safetensors",
489
+ "model.layers.31.temporal_block.rg_lru.recurrent_param": "model-00003-of-00004.safetensors",
490
+ "model.layers.31.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
491
+ "model.layers.32.channel_pre_norm.weight": "model-00003-of-00004.safetensors",
492
+ "model.layers.32.mlp_block.down_proj.bias": "model-00004-of-00004.safetensors",
493
+ "model.layers.32.mlp_block.down_proj.weight": "model-00004-of-00004.safetensors",
494
+ "model.layers.32.mlp_block.gate_proj.bias": "model-00004-of-00004.safetensors",
495
+ "model.layers.32.mlp_block.gate_proj.weight": "model-00004-of-00004.safetensors",
496
+ "model.layers.32.mlp_block.up_proj.bias": "model-00004-of-00004.safetensors",
497
+ "model.layers.32.mlp_block.up_proj.weight": "model-00004-of-00004.safetensors",
498
+ "model.layers.32.temporal_block.k_proj.weight": "model-00003-of-00004.safetensors",
499
+ "model.layers.32.temporal_block.o_proj.bias": "model-00003-of-00004.safetensors",
500
+ "model.layers.32.temporal_block.o_proj.weight": "model-00003-of-00004.safetensors",
501
+ "model.layers.32.temporal_block.q_proj.weight": "model-00003-of-00004.safetensors",
502
+ "model.layers.32.temporal_block.v_proj.weight": "model-00003-of-00004.safetensors",
503
+ "model.layers.32.temporal_pre_norm.weight": "model-00003-of-00004.safetensors",
504
+ "model.layers.33.channel_pre_norm.weight": "model-00004-of-00004.safetensors",
505
+ "model.layers.33.mlp_block.down_proj.bias": "model-00004-of-00004.safetensors",
506
+ "model.layers.33.mlp_block.down_proj.weight": "model-00004-of-00004.safetensors",
507
+ "model.layers.33.mlp_block.gate_proj.bias": "model-00004-of-00004.safetensors",
508
+ "model.layers.33.mlp_block.gate_proj.weight": "model-00004-of-00004.safetensors",
509
+ "model.layers.33.mlp_block.up_proj.bias": "model-00004-of-00004.safetensors",
510
+ "model.layers.33.mlp_block.up_proj.weight": "model-00004-of-00004.safetensors",
511
+ "model.layers.33.temporal_block.conv_1d.bias": "model-00004-of-00004.safetensors",
512
+ "model.layers.33.temporal_block.conv_1d.weight": "model-00004-of-00004.safetensors",
513
+ "model.layers.33.temporal_block.linear_out.bias": "model-00004-of-00004.safetensors",
514
+ "model.layers.33.temporal_block.linear_out.weight": "model-00004-of-00004.safetensors",
515
+ "model.layers.33.temporal_block.linear_x.bias": "model-00004-of-00004.safetensors",
516
+ "model.layers.33.temporal_block.linear_x.weight": "model-00004-of-00004.safetensors",
517
+ "model.layers.33.temporal_block.linear_y.bias": "model-00004-of-00004.safetensors",
518
+ "model.layers.33.temporal_block.linear_y.weight": "model-00004-of-00004.safetensors",
519
+ "model.layers.33.temporal_block.rg_lru.input_gate_bias": "model-00004-of-00004.safetensors",
520
+ "model.layers.33.temporal_block.rg_lru.input_gate_weight": "model-00004-of-00004.safetensors",
521
+ "model.layers.33.temporal_block.rg_lru.recurrent_gate_bias": "model-00004-of-00004.safetensors",
522
+ "model.layers.33.temporal_block.rg_lru.recurrent_gate_weight": "model-00004-of-00004.safetensors",
523
+ "model.layers.33.temporal_block.rg_lru.recurrent_param": "model-00004-of-00004.safetensors",
524
+ "model.layers.33.temporal_pre_norm.weight": "model-00004-of-00004.safetensors",
525
+ "model.layers.34.channel_pre_norm.weight": "model-00004-of-00004.safetensors",
526
+ "model.layers.34.mlp_block.down_proj.bias": "model-00004-of-00004.safetensors",
527
+ "model.layers.34.mlp_block.down_proj.weight": "model-00004-of-00004.safetensors",
528
+ "model.layers.34.mlp_block.gate_proj.bias": "model-00004-of-00004.safetensors",
529
+ "model.layers.34.mlp_block.gate_proj.weight": "model-00004-of-00004.safetensors",
530
+ "model.layers.34.mlp_block.up_proj.bias": "model-00004-of-00004.safetensors",
531
+ "model.layers.34.mlp_block.up_proj.weight": "model-00004-of-00004.safetensors",
532
+ "model.layers.34.temporal_block.conv_1d.bias": "model-00004-of-00004.safetensors",
533
+ "model.layers.34.temporal_block.conv_1d.weight": "model-00004-of-00004.safetensors",
534
+ "model.layers.34.temporal_block.linear_out.bias": "model-00004-of-00004.safetensors",
535
+ "model.layers.34.temporal_block.linear_out.weight": "model-00004-of-00004.safetensors",
536
+ "model.layers.34.temporal_block.linear_x.bias": "model-00004-of-00004.safetensors",
537
+ "model.layers.34.temporal_block.linear_x.weight": "model-00004-of-00004.safetensors",
538
+ "model.layers.34.temporal_block.linear_y.bias": "model-00004-of-00004.safetensors",
539
+ "model.layers.34.temporal_block.linear_y.weight": "model-00004-of-00004.safetensors",
540
+ "model.layers.34.temporal_block.rg_lru.input_gate_bias": "model-00004-of-00004.safetensors",
541
+ "model.layers.34.temporal_block.rg_lru.input_gate_weight": "model-00004-of-00004.safetensors",
542
+ "model.layers.34.temporal_block.rg_lru.recurrent_gate_bias": "model-00004-of-00004.safetensors",
543
+ "model.layers.34.temporal_block.rg_lru.recurrent_gate_weight": "model-00004-of-00004.safetensors",
544
+ "model.layers.34.temporal_block.rg_lru.recurrent_param": "model-00004-of-00004.safetensors",
545
+ "model.layers.34.temporal_pre_norm.weight": "model-00004-of-00004.safetensors",
546
+ "model.layers.35.channel_pre_norm.weight": "model-00004-of-00004.safetensors",
547
+ "model.layers.35.mlp_block.down_proj.bias": "model-00004-of-00004.safetensors",
548
+ "model.layers.35.mlp_block.down_proj.weight": "model-00004-of-00004.safetensors",
549
+ "model.layers.35.mlp_block.gate_proj.bias": "model-00004-of-00004.safetensors",
550
+ "model.layers.35.mlp_block.gate_proj.weight": "model-00004-of-00004.safetensors",
551
+ "model.layers.35.mlp_block.up_proj.bias": "model-00004-of-00004.safetensors",
552
+ "model.layers.35.mlp_block.up_proj.weight": "model-00004-of-00004.safetensors",
553
+ "model.layers.35.temporal_block.k_proj.weight": "model-00004-of-00004.safetensors",
554
+ "model.layers.35.temporal_block.o_proj.bias": "model-00004-of-00004.safetensors",
555
+ "model.layers.35.temporal_block.o_proj.weight": "model-00004-of-00004.safetensors",
556
+ "model.layers.35.temporal_block.q_proj.weight": "model-00004-of-00004.safetensors",
557
+ "model.layers.35.temporal_block.v_proj.weight": "model-00004-of-00004.safetensors",
558
+ "model.layers.35.temporal_pre_norm.weight": "model-00004-of-00004.safetensors",
559
+ "model.layers.36.channel_pre_norm.weight": "model-00004-of-00004.safetensors",
560
+ "model.layers.36.mlp_block.down_proj.bias": "model-00004-of-00004.safetensors",
561
+ "model.layers.36.mlp_block.down_proj.weight": "model-00004-of-00004.safetensors",
562
+ "model.layers.36.mlp_block.gate_proj.bias": "model-00004-of-00004.safetensors",
563
+ "model.layers.36.mlp_block.gate_proj.weight": "model-00004-of-00004.safetensors",
564
+ "model.layers.36.mlp_block.up_proj.bias": "model-00004-of-00004.safetensors",
565
+ "model.layers.36.mlp_block.up_proj.weight": "model-00004-of-00004.safetensors",
566
+ "model.layers.36.temporal_block.conv_1d.bias": "model-00004-of-00004.safetensors",
567
+ "model.layers.36.temporal_block.conv_1d.weight": "model-00004-of-00004.safetensors",
568
+ "model.layers.36.temporal_block.linear_out.bias": "model-00004-of-00004.safetensors",
569
+ "model.layers.36.temporal_block.linear_out.weight": "model-00004-of-00004.safetensors",
570
+ "model.layers.36.temporal_block.linear_x.bias": "model-00004-of-00004.safetensors",
571
+ "model.layers.36.temporal_block.linear_x.weight": "model-00004-of-00004.safetensors",
572
+ "model.layers.36.temporal_block.linear_y.bias": "model-00004-of-00004.safetensors",
573
+ "model.layers.36.temporal_block.linear_y.weight": "model-00004-of-00004.safetensors",
574
+ "model.layers.36.temporal_block.rg_lru.input_gate_bias": "model-00004-of-00004.safetensors",
575
+ "model.layers.36.temporal_block.rg_lru.input_gate_weight": "model-00004-of-00004.safetensors",
576
+ "model.layers.36.temporal_block.rg_lru.recurrent_gate_bias": "model-00004-of-00004.safetensors",
577
+ "model.layers.36.temporal_block.rg_lru.recurrent_gate_weight": "model-00004-of-00004.safetensors",
578
+ "model.layers.36.temporal_block.rg_lru.recurrent_param": "model-00004-of-00004.safetensors",
579
+ "model.layers.36.temporal_pre_norm.weight": "model-00004-of-00004.safetensors",
580
+ "model.layers.37.channel_pre_norm.weight": "model-00004-of-00004.safetensors",
581
+ "model.layers.37.mlp_block.down_proj.bias": "model-00004-of-00004.safetensors",
582
+ "model.layers.37.mlp_block.down_proj.weight": "model-00004-of-00004.safetensors",
583
+ "model.layers.37.mlp_block.gate_proj.bias": "model-00004-of-00004.safetensors",
584
+ "model.layers.37.mlp_block.gate_proj.weight": "model-00004-of-00004.safetensors",
585
+ "model.layers.37.mlp_block.up_proj.bias": "model-00004-of-00004.safetensors",
586
+ "model.layers.37.mlp_block.up_proj.weight": "model-00004-of-00004.safetensors",
587
+ "model.layers.37.temporal_block.conv_1d.bias": "model-00004-of-00004.safetensors",
588
+ "model.layers.37.temporal_block.conv_1d.weight": "model-00004-of-00004.safetensors",
589
+ "model.layers.37.temporal_block.linear_out.bias": "model-00004-of-00004.safetensors",
590
+ "model.layers.37.temporal_block.linear_out.weight": "model-00004-of-00004.safetensors",
591
+ "model.layers.37.temporal_block.linear_x.bias": "model-00004-of-00004.safetensors",
592
+ "model.layers.37.temporal_block.linear_x.weight": "model-00004-of-00004.safetensors",
593
+ "model.layers.37.temporal_block.linear_y.bias": "model-00004-of-00004.safetensors",
594
+ "model.layers.37.temporal_block.linear_y.weight": "model-00004-of-00004.safetensors",
595
+ "model.layers.37.temporal_block.rg_lru.input_gate_bias": "model-00004-of-00004.safetensors",
596
+ "model.layers.37.temporal_block.rg_lru.input_gate_weight": "model-00004-of-00004.safetensors",
597
+ "model.layers.37.temporal_block.rg_lru.recurrent_gate_bias": "model-00004-of-00004.safetensors",
598
+ "model.layers.37.temporal_block.rg_lru.recurrent_gate_weight": "model-00004-of-00004.safetensors",
599
+ "model.layers.37.temporal_block.rg_lru.recurrent_param": "model-00004-of-00004.safetensors",
600
+ "model.layers.37.temporal_pre_norm.weight": "model-00004-of-00004.safetensors",
601
+ "model.layers.4.channel_pre_norm.weight": "model-00001-of-00004.safetensors",
602
+ "model.layers.4.mlp_block.down_proj.bias": "model-00001-of-00004.safetensors",
603
+ "model.layers.4.mlp_block.down_proj.weight": "model-00001-of-00004.safetensors",
604
+ "model.layers.4.mlp_block.gate_proj.bias": "model-00001-of-00004.safetensors",
605
+ "model.layers.4.mlp_block.gate_proj.weight": "model-00001-of-00004.safetensors",
606
+ "model.layers.4.mlp_block.up_proj.bias": "model-00001-of-00004.safetensors",
607
+ "model.layers.4.mlp_block.up_proj.weight": "model-00001-of-00004.safetensors",
608
+ "model.layers.4.temporal_block.conv_1d.bias": "model-00001-of-00004.safetensors",
609
+ "model.layers.4.temporal_block.conv_1d.weight": "model-00001-of-00004.safetensors",
610
+ "model.layers.4.temporal_block.linear_out.bias": "model-00001-of-00004.safetensors",
611
+ "model.layers.4.temporal_block.linear_out.weight": "model-00001-of-00004.safetensors",
612
+ "model.layers.4.temporal_block.linear_x.bias": "model-00001-of-00004.safetensors",
613
+ "model.layers.4.temporal_block.linear_x.weight": "model-00001-of-00004.safetensors",
614
+ "model.layers.4.temporal_block.linear_y.bias": "model-00001-of-00004.safetensors",
615
+ "model.layers.4.temporal_block.linear_y.weight": "model-00001-of-00004.safetensors",
616
+ "model.layers.4.temporal_block.rg_lru.input_gate_bias": "model-00001-of-00004.safetensors",
617
+ "model.layers.4.temporal_block.rg_lru.input_gate_weight": "model-00001-of-00004.safetensors",
618
+ "model.layers.4.temporal_block.rg_lru.recurrent_gate_bias": "model-00001-of-00004.safetensors",
619
+ "model.layers.4.temporal_block.rg_lru.recurrent_gate_weight": "model-00001-of-00004.safetensors",
620
+ "model.layers.4.temporal_block.rg_lru.recurrent_param": "model-00001-of-00004.safetensors",
621
+ "model.layers.4.temporal_pre_norm.weight": "model-00001-of-00004.safetensors",
622
+ "model.layers.5.channel_pre_norm.weight": "model-00001-of-00004.safetensors",
623
+ "model.layers.5.mlp_block.down_proj.bias": "model-00001-of-00004.safetensors",
624
+ "model.layers.5.mlp_block.down_proj.weight": "model-00001-of-00004.safetensors",
625
+ "model.layers.5.mlp_block.gate_proj.bias": "model-00001-of-00004.safetensors",
626
+ "model.layers.5.mlp_block.gate_proj.weight": "model-00001-of-00004.safetensors",
627
+ "model.layers.5.mlp_block.up_proj.bias": "model-00001-of-00004.safetensors",
628
+ "model.layers.5.mlp_block.up_proj.weight": "model-00001-of-00004.safetensors",
629
+ "model.layers.5.temporal_block.k_proj.weight": "model-00001-of-00004.safetensors",
630
+ "model.layers.5.temporal_block.o_proj.bias": "model-00001-of-00004.safetensors",
631
+ "model.layers.5.temporal_block.o_proj.weight": "model-00001-of-00004.safetensors",
632
+ "model.layers.5.temporal_block.q_proj.weight": "model-00001-of-00004.safetensors",
633
+ "model.layers.5.temporal_block.v_proj.weight": "model-00001-of-00004.safetensors",
634
+ "model.layers.5.temporal_pre_norm.weight": "model-00001-of-00004.safetensors",
635
+ "model.layers.6.channel_pre_norm.weight": "model-00001-of-00004.safetensors",
636
+ "model.layers.6.mlp_block.down_proj.bias": "model-00001-of-00004.safetensors",
637
+ "model.layers.6.mlp_block.down_proj.weight": "model-00001-of-00004.safetensors",
638
+ "model.layers.6.mlp_block.gate_proj.bias": "model-00001-of-00004.safetensors",
639
+ "model.layers.6.mlp_block.gate_proj.weight": "model-00001-of-00004.safetensors",
640
+ "model.layers.6.mlp_block.up_proj.bias": "model-00001-of-00004.safetensors",
641
+ "model.layers.6.mlp_block.up_proj.weight": "model-00001-of-00004.safetensors",
642
+ "model.layers.6.temporal_block.conv_1d.bias": "model-00001-of-00004.safetensors",
643
+ "model.layers.6.temporal_block.conv_1d.weight": "model-00001-of-00004.safetensors",
644
+ "model.layers.6.temporal_block.linear_out.bias": "model-00001-of-00004.safetensors",
645
+ "model.layers.6.temporal_block.linear_out.weight": "model-00001-of-00004.safetensors",
646
+ "model.layers.6.temporal_block.linear_x.bias": "model-00001-of-00004.safetensors",
647
+ "model.layers.6.temporal_block.linear_x.weight": "model-00001-of-00004.safetensors",
648
+ "model.layers.6.temporal_block.linear_y.bias": "model-00001-of-00004.safetensors",
649
+ "model.layers.6.temporal_block.linear_y.weight": "model-00001-of-00004.safetensors",
650
+ "model.layers.6.temporal_block.rg_lru.input_gate_bias": "model-00001-of-00004.safetensors",
651
+ "model.layers.6.temporal_block.rg_lru.input_gate_weight": "model-00001-of-00004.safetensors",
652
+ "model.layers.6.temporal_block.rg_lru.recurrent_gate_bias": "model-00001-of-00004.safetensors",
653
+ "model.layers.6.temporal_block.rg_lru.recurrent_gate_weight": "model-00001-of-00004.safetensors",
654
+ "model.layers.6.temporal_block.rg_lru.recurrent_param": "model-00001-of-00004.safetensors",
655
+ "model.layers.6.temporal_pre_norm.weight": "model-00001-of-00004.safetensors",
656
+ "model.layers.7.channel_pre_norm.weight": "model-00001-of-00004.safetensors",
657
+ "model.layers.7.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
658
+ "model.layers.7.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
659
+ "model.layers.7.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
660
+ "model.layers.7.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
661
+ "model.layers.7.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
662
+ "model.layers.7.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
663
+ "model.layers.7.temporal_block.conv_1d.bias": "model-00001-of-00004.safetensors",
664
+ "model.layers.7.temporal_block.conv_1d.weight": "model-00001-of-00004.safetensors",
665
+ "model.layers.7.temporal_block.linear_out.bias": "model-00001-of-00004.safetensors",
666
+ "model.layers.7.temporal_block.linear_out.weight": "model-00001-of-00004.safetensors",
667
+ "model.layers.7.temporal_block.linear_x.bias": "model-00001-of-00004.safetensors",
668
+ "model.layers.7.temporal_block.linear_x.weight": "model-00001-of-00004.safetensors",
669
+ "model.layers.7.temporal_block.linear_y.bias": "model-00001-of-00004.safetensors",
670
+ "model.layers.7.temporal_block.linear_y.weight": "model-00001-of-00004.safetensors",
671
+ "model.layers.7.temporal_block.rg_lru.input_gate_bias": "model-00001-of-00004.safetensors",
672
+ "model.layers.7.temporal_block.rg_lru.input_gate_weight": "model-00001-of-00004.safetensors",
673
+ "model.layers.7.temporal_block.rg_lru.recurrent_gate_bias": "model-00001-of-00004.safetensors",
674
+ "model.layers.7.temporal_block.rg_lru.recurrent_gate_weight": "model-00001-of-00004.safetensors",
675
+ "model.layers.7.temporal_block.rg_lru.recurrent_param": "model-00001-of-00004.safetensors",
676
+ "model.layers.7.temporal_pre_norm.weight": "model-00001-of-00004.safetensors",
677
+ "model.layers.8.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
678
+ "model.layers.8.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
679
+ "model.layers.8.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
680
+ "model.layers.8.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
681
+ "model.layers.8.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
682
+ "model.layers.8.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
683
+ "model.layers.8.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
684
+ "model.layers.8.temporal_block.k_proj.weight": "model-00002-of-00004.safetensors",
685
+ "model.layers.8.temporal_block.o_proj.bias": "model-00002-of-00004.safetensors",
686
+ "model.layers.8.temporal_block.o_proj.weight": "model-00002-of-00004.safetensors",
687
+ "model.layers.8.temporal_block.q_proj.weight": "model-00002-of-00004.safetensors",
688
+ "model.layers.8.temporal_block.v_proj.weight": "model-00002-of-00004.safetensors",
689
+ "model.layers.8.temporal_pre_norm.weight": "model-00002-of-00004.safetensors",
690
+ "model.layers.9.channel_pre_norm.weight": "model-00002-of-00004.safetensors",
691
+ "model.layers.9.mlp_block.down_proj.bias": "model-00002-of-00004.safetensors",
692
+ "model.layers.9.mlp_block.down_proj.weight": "model-00002-of-00004.safetensors",
693
+ "model.layers.9.mlp_block.gate_proj.bias": "model-00002-of-00004.safetensors",
694
+ "model.layers.9.mlp_block.gate_proj.weight": "model-00002-of-00004.safetensors",
695
+ "model.layers.9.mlp_block.up_proj.bias": "model-00002-of-00004.safetensors",
696
+ "model.layers.9.mlp_block.up_proj.weight": "model-00002-of-00004.safetensors",
697
+ "model.layers.9.temporal_block.conv_1d.bias": "model-00002-of-00004.safetensors",
698
+ "model.layers.9.temporal_block.conv_1d.weight": "model-00002-of-00004.safetensors",
699
+ "model.layers.9.temporal_block.linear_out.bias": "model-00002-of-00004.safetensors",
700
+ "model.layers.9.temporal_block.linear_out.weight": "model-00002-of-00004.safetensors",
701
+ "model.layers.9.temporal_block.linear_x.bias": "model-00002-of-00004.safetensors",
702
+ "model.layers.9.temporal_block.linear_x.weight": "model-00002-of-00004.safetensors",
703
+ "model.layers.9.temporal_block.linear_y.bias": "model-00002-of-00004.safetensors",
704
+ "model.layers.9.temporal_block.linear_y.weight": "model-00002-of-00004.safetensors",
705
+ "model.layers.9.temporal_block.rg_lru.input_gate_bias": "model-00002-of-00004.safetensors",
706
+ "model.layers.9.temporal_block.rg_lru.input_gate_weight": "model-00002-of-00004.safetensors",
707
+ "model.layers.9.temporal_block.rg_lru.recurrent_gate_bias": "model-00002-of-00004.safetensors",
708
+ "model.layers.9.temporal_block.rg_lru.recurrent_gate_weight": "model-00002-of-00004.safetensors",
709
+ "model.layers.9.temporal_block.rg_lru.recurrent_param": "model-00002-of-00004.safetensors",
710
+ "model.layers.9.temporal_pre_norm.weight": "model-00002-of-00004.safetensors"
711
+ }
712
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<bos>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<eos>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<pad>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c15eb04bc5ad609fb26533e8525302c5640a945e5f67f65b7c849900acda7d99
3
+ size 17518497
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61a7b147390c64585d6c3543dd6fc636906c9af3865a5548f27f31aee1d4c8e2
3
+ size 4241003
tokenizer_config.json ADDED
@@ -0,0 +1,1517 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<pad>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<eos>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "<bos>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "3": {
30
+ "content": "<unk>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "4": {
38
+ "content": "<mask>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": false
44
+ },
45
+ "5": {
46
+ "content": "<2mass>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": false
52
+ },
53
+ "6": {
54
+ "content": "[@BOS@]",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": false
60
+ },
61
+ "7": {
62
+ "content": "<unused0>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": false
68
+ },
69
+ "8": {
70
+ "content": "<unused1>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": false
76
+ },
77
+ "9": {
78
+ "content": "<unused2>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": false
84
+ },
85
+ "10": {
86
+ "content": "<unused3>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": false
92
+ },
93
+ "11": {
94
+ "content": "<unused4>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": false
100
+ },
101
+ "12": {
102
+ "content": "<unused5>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": false
108
+ },
109
+ "13": {
110
+ "content": "<unused6>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": false
116
+ },
117
+ "14": {
118
+ "content": "<unused7>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "15": {
126
+ "content": "<unused8>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "16": {
134
+ "content": "<unused9>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "17": {
142
+ "content": "<unused10>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "18": {
150
+ "content": "<unused11>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "19": {
158
+ "content": "<unused12>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "20": {
166
+ "content": "<unused13>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "21": {
174
+ "content": "<unused14>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "22": {
182
+ "content": "<unused15>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "23": {
190
+ "content": "<unused16>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "24": {
198
+ "content": "<unused17>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "25": {
206
+ "content": "<unused18>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ },
213
+ "26": {
214
+ "content": "<unused19>",
215
+ "lstrip": false,
216
+ "normalized": false,
217
+ "rstrip": false,
218
+ "single_word": false,
219
+ "special": false
220
+ },
221
+ "27": {
222
+ "content": "<unused20>",
223
+ "lstrip": false,
224
+ "normalized": false,
225
+ "rstrip": false,
226
+ "single_word": false,
227
+ "special": false
228
+ },
229
+ "28": {
230
+ "content": "<unused21>",
231
+ "lstrip": false,
232
+ "normalized": false,
233
+ "rstrip": false,
234
+ "single_word": false,
235
+ "special": false
236
+ },
237
+ "29": {
238
+ "content": "<unused22>",
239
+ "lstrip": false,
240
+ "normalized": false,
241
+ "rstrip": false,
242
+ "single_word": false,
243
+ "special": false
244
+ },
245
+ "30": {
246
+ "content": "<unused23>",
247
+ "lstrip": false,
248
+ "normalized": false,
249
+ "rstrip": false,
250
+ "single_word": false,
251
+ "special": false
252
+ },
253
+ "31": {
254
+ "content": "<unused24>",
255
+ "lstrip": false,
256
+ "normalized": false,
257
+ "rstrip": false,
258
+ "single_word": false,
259
+ "special": false
260
+ },
261
+ "32": {
262
+ "content": "<unused25>",
263
+ "lstrip": false,
264
+ "normalized": false,
265
+ "rstrip": false,
266
+ "single_word": false,
267
+ "special": false
268
+ },
269
+ "33": {
270
+ "content": "<unused26>",
271
+ "lstrip": false,
272
+ "normalized": false,
273
+ "rstrip": false,
274
+ "single_word": false,
275
+ "special": false
276
+ },
277
+ "34": {
278
+ "content": "<unused27>",
279
+ "lstrip": false,
280
+ "normalized": false,
281
+ "rstrip": false,
282
+ "single_word": false,
283
+ "special": false
284
+ },
285
+ "35": {
286
+ "content": "<unused28>",
287
+ "lstrip": false,
288
+ "normalized": false,
289
+ "rstrip": false,
290
+ "single_word": false,
291
+ "special": false
292
+ },
293
+ "36": {
294
+ "content": "<unused29>",
295
+ "lstrip": false,
296
+ "normalized": false,
297
+ "rstrip": false,
298
+ "single_word": false,
299
+ "special": false
300
+ },
301
+ "37": {
302
+ "content": "<unused30>",
303
+ "lstrip": false,
304
+ "normalized": false,
305
+ "rstrip": false,
306
+ "single_word": false,
307
+ "special": false
308
+ },
309
+ "38": {
310
+ "content": "<unused31>",
311
+ "lstrip": false,
312
+ "normalized": false,
313
+ "rstrip": false,
314
+ "single_word": false,
315
+ "special": false
316
+ },
317
+ "39": {
318
+ "content": "<unused32>",
319
+ "lstrip": false,
320
+ "normalized": false,
321
+ "rstrip": false,
322
+ "single_word": false,
323
+ "special": false
324
+ },
325
+ "40": {
326
+ "content": "<unused33>",
327
+ "lstrip": false,
328
+ "normalized": false,
329
+ "rstrip": false,
330
+ "single_word": false,
331
+ "special": false
332
+ },
333
+ "41": {
334
+ "content": "<unused34>",
335
+ "lstrip": false,
336
+ "normalized": false,
337
+ "rstrip": false,
338
+ "single_word": false,
339
+ "special": false
340
+ },
341
+ "42": {
342
+ "content": "<unused35>",
343
+ "lstrip": false,
344
+ "normalized": false,
345
+ "rstrip": false,
346
+ "single_word": false,
347
+ "special": false
348
+ },
349
+ "43": {
350
+ "content": "<unused36>",
351
+ "lstrip": false,
352
+ "normalized": false,
353
+ "rstrip": false,
354
+ "single_word": false,
355
+ "special": false
356
+ },
357
+ "44": {
358
+ "content": "<unused37>",
359
+ "lstrip": false,
360
+ "normalized": false,
361
+ "rstrip": false,
362
+ "single_word": false,
363
+ "special": false
364
+ },
365
+ "45": {
366
+ "content": "<unused38>",
367
+ "lstrip": false,
368
+ "normalized": false,
369
+ "rstrip": false,
370
+ "single_word": false,
371
+ "special": false
372
+ },
373
+ "46": {
374
+ "content": "<unused39>",
375
+ "lstrip": false,
376
+ "normalized": false,
377
+ "rstrip": false,
378
+ "single_word": false,
379
+ "special": false
380
+ },
381
+ "47": {
382
+ "content": "<unused40>",
383
+ "lstrip": false,
384
+ "normalized": false,
385
+ "rstrip": false,
386
+ "single_word": false,
387
+ "special": false
388
+ },
389
+ "48": {
390
+ "content": "<unused41>",
391
+ "lstrip": false,
392
+ "normalized": false,
393
+ "rstrip": false,
394
+ "single_word": false,
395
+ "special": false
396
+ },
397
+ "49": {
398
+ "content": "<unused42>",
399
+ "lstrip": false,
400
+ "normalized": false,
401
+ "rstrip": false,
402
+ "single_word": false,
403
+ "special": false
404
+ },
405
+ "50": {
406
+ "content": "<unused43>",
407
+ "lstrip": false,
408
+ "normalized": false,
409
+ "rstrip": false,
410
+ "single_word": false,
411
+ "special": false
412
+ },
413
+ "51": {
414
+ "content": "<unused44>",
415
+ "lstrip": false,
416
+ "normalized": false,
417
+ "rstrip": false,
418
+ "single_word": false,
419
+ "special": false
420
+ },
421
+ "52": {
422
+ "content": "<unused45>",
423
+ "lstrip": false,
424
+ "normalized": false,
425
+ "rstrip": false,
426
+ "single_word": false,
427
+ "special": false
428
+ },
429
+ "53": {
430
+ "content": "<unused46>",
431
+ "lstrip": false,
432
+ "normalized": false,
433
+ "rstrip": false,
434
+ "single_word": false,
435
+ "special": false
436
+ },
437
+ "54": {
438
+ "content": "<unused47>",
439
+ "lstrip": false,
440
+ "normalized": false,
441
+ "rstrip": false,
442
+ "single_word": false,
443
+ "special": false
444
+ },
445
+ "55": {
446
+ "content": "<unused48>",
447
+ "lstrip": false,
448
+ "normalized": false,
449
+ "rstrip": false,
450
+ "single_word": false,
451
+ "special": false
452
+ },
453
+ "56": {
454
+ "content": "<unused49>",
455
+ "lstrip": false,
456
+ "normalized": false,
457
+ "rstrip": false,
458
+ "single_word": false,
459
+ "special": false
460
+ },
461
+ "57": {
462
+ "content": "<unused50>",
463
+ "lstrip": false,
464
+ "normalized": false,
465
+ "rstrip": false,
466
+ "single_word": false,
467
+ "special": false
468
+ },
469
+ "58": {
470
+ "content": "<unused51>",
471
+ "lstrip": false,
472
+ "normalized": false,
473
+ "rstrip": false,
474
+ "single_word": false,
475
+ "special": false
476
+ },
477
+ "59": {
478
+ "content": "<unused52>",
479
+ "lstrip": false,
480
+ "normalized": false,
481
+ "rstrip": false,
482
+ "single_word": false,
483
+ "special": false
484
+ },
485
+ "60": {
486
+ "content": "<unused53>",
487
+ "lstrip": false,
488
+ "normalized": false,
489
+ "rstrip": false,
490
+ "single_word": false,
491
+ "special": false
492
+ },
493
+ "61": {
494
+ "content": "<unused54>",
495
+ "lstrip": false,
496
+ "normalized": false,
497
+ "rstrip": false,
498
+ "single_word": false,
499
+ "special": false
500
+ },
501
+ "62": {
502
+ "content": "<unused55>",
503
+ "lstrip": false,
504
+ "normalized": false,
505
+ "rstrip": false,
506
+ "single_word": false,
507
+ "special": false
508
+ },
509
+ "63": {
510
+ "content": "<unused56>",
511
+ "lstrip": false,
512
+ "normalized": false,
513
+ "rstrip": false,
514
+ "single_word": false,
515
+ "special": false
516
+ },
517
+ "64": {
518
+ "content": "<unused57>",
519
+ "lstrip": false,
520
+ "normalized": false,
521
+ "rstrip": false,
522
+ "single_word": false,
523
+ "special": false
524
+ },
525
+ "65": {
526
+ "content": "<unused58>",
527
+ "lstrip": false,
528
+ "normalized": false,
529
+ "rstrip": false,
530
+ "single_word": false,
531
+ "special": false
532
+ },
533
+ "66": {
534
+ "content": "<unused59>",
535
+ "lstrip": false,
536
+ "normalized": false,
537
+ "rstrip": false,
538
+ "single_word": false,
539
+ "special": false
540
+ },
541
+ "67": {
542
+ "content": "<unused60>",
543
+ "lstrip": false,
544
+ "normalized": false,
545
+ "rstrip": false,
546
+ "single_word": false,
547
+ "special": false
548
+ },
549
+ "68": {
550
+ "content": "<unused61>",
551
+ "lstrip": false,
552
+ "normalized": false,
553
+ "rstrip": false,
554
+ "single_word": false,
555
+ "special": false
556
+ },
557
+ "69": {
558
+ "content": "<unused62>",
559
+ "lstrip": false,
560
+ "normalized": false,
561
+ "rstrip": false,
562
+ "single_word": false,
563
+ "special": false
564
+ },
565
+ "70": {
566
+ "content": "<unused63>",
567
+ "lstrip": false,
568
+ "normalized": false,
569
+ "rstrip": false,
570
+ "single_word": false,
571
+ "special": false
572
+ },
573
+ "71": {
574
+ "content": "<unused64>",
575
+ "lstrip": false,
576
+ "normalized": false,
577
+ "rstrip": false,
578
+ "single_word": false,
579
+ "special": false
580
+ },
581
+ "72": {
582
+ "content": "<unused65>",
583
+ "lstrip": false,
584
+ "normalized": false,
585
+ "rstrip": false,
586
+ "single_word": false,
587
+ "special": false
588
+ },
589
+ "73": {
590
+ "content": "<unused66>",
591
+ "lstrip": false,
592
+ "normalized": false,
593
+ "rstrip": false,
594
+ "single_word": false,
595
+ "special": false
596
+ },
597
+ "74": {
598
+ "content": "<unused67>",
599
+ "lstrip": false,
600
+ "normalized": false,
601
+ "rstrip": false,
602
+ "single_word": false,
603
+ "special": false
604
+ },
605
+ "75": {
606
+ "content": "<unused68>",
607
+ "lstrip": false,
608
+ "normalized": false,
609
+ "rstrip": false,
610
+ "single_word": false,
611
+ "special": false
612
+ },
613
+ "76": {
614
+ "content": "<unused69>",
615
+ "lstrip": false,
616
+ "normalized": false,
617
+ "rstrip": false,
618
+ "single_word": false,
619
+ "special": false
620
+ },
621
+ "77": {
622
+ "content": "<unused70>",
623
+ "lstrip": false,
624
+ "normalized": false,
625
+ "rstrip": false,
626
+ "single_word": false,
627
+ "special": false
628
+ },
629
+ "78": {
630
+ "content": "<unused71>",
631
+ "lstrip": false,
632
+ "normalized": false,
633
+ "rstrip": false,
634
+ "single_word": false,
635
+ "special": false
636
+ },
637
+ "79": {
638
+ "content": "<unused72>",
639
+ "lstrip": false,
640
+ "normalized": false,
641
+ "rstrip": false,
642
+ "single_word": false,
643
+ "special": false
644
+ },
645
+ "80": {
646
+ "content": "<unused73>",
647
+ "lstrip": false,
648
+ "normalized": false,
649
+ "rstrip": false,
650
+ "single_word": false,
651
+ "special": false
652
+ },
653
+ "81": {
654
+ "content": "<unused74>",
655
+ "lstrip": false,
656
+ "normalized": false,
657
+ "rstrip": false,
658
+ "single_word": false,
659
+ "special": false
660
+ },
661
+ "82": {
662
+ "content": "<unused75>",
663
+ "lstrip": false,
664
+ "normalized": false,
665
+ "rstrip": false,
666
+ "single_word": false,
667
+ "special": false
668
+ },
669
+ "83": {
670
+ "content": "<unused76>",
671
+ "lstrip": false,
672
+ "normalized": false,
673
+ "rstrip": false,
674
+ "single_word": false,
675
+ "special": false
676
+ },
677
+ "84": {
678
+ "content": "<unused77>",
679
+ "lstrip": false,
680
+ "normalized": false,
681
+ "rstrip": false,
682
+ "single_word": false,
683
+ "special": false
684
+ },
685
+ "85": {
686
+ "content": "<unused78>",
687
+ "lstrip": false,
688
+ "normalized": false,
689
+ "rstrip": false,
690
+ "single_word": false,
691
+ "special": false
692
+ },
693
+ "86": {
694
+ "content": "<unused79>",
695
+ "lstrip": false,
696
+ "normalized": false,
697
+ "rstrip": false,
698
+ "single_word": false,
699
+ "special": false
700
+ },
701
+ "87": {
702
+ "content": "<unused80>",
703
+ "lstrip": false,
704
+ "normalized": false,
705
+ "rstrip": false,
706
+ "single_word": false,
707
+ "special": false
708
+ },
709
+ "88": {
710
+ "content": "<unused81>",
711
+ "lstrip": false,
712
+ "normalized": false,
713
+ "rstrip": false,
714
+ "single_word": false,
715
+ "special": false
716
+ },
717
+ "89": {
718
+ "content": "<unused82>",
719
+ "lstrip": false,
720
+ "normalized": false,
721
+ "rstrip": false,
722
+ "single_word": false,
723
+ "special": false
724
+ },
725
+ "90": {
726
+ "content": "<unused83>",
727
+ "lstrip": false,
728
+ "normalized": false,
729
+ "rstrip": false,
730
+ "single_word": false,
731
+ "special": false
732
+ },
733
+ "91": {
734
+ "content": "<unused84>",
735
+ "lstrip": false,
736
+ "normalized": false,
737
+ "rstrip": false,
738
+ "single_word": false,
739
+ "special": false
740
+ },
741
+ "92": {
742
+ "content": "<unused85>",
743
+ "lstrip": false,
744
+ "normalized": false,
745
+ "rstrip": false,
746
+ "single_word": false,
747
+ "special": false
748
+ },
749
+ "93": {
750
+ "content": "<unused86>",
751
+ "lstrip": false,
752
+ "normalized": false,
753
+ "rstrip": false,
754
+ "single_word": false,
755
+ "special": false
756
+ },
757
+ "94": {
758
+ "content": "<unused87>",
759
+ "lstrip": false,
760
+ "normalized": false,
761
+ "rstrip": false,
762
+ "single_word": false,
763
+ "special": false
764
+ },
765
+ "95": {
766
+ "content": "<unused88>",
767
+ "lstrip": false,
768
+ "normalized": false,
769
+ "rstrip": false,
770
+ "single_word": false,
771
+ "special": false
772
+ },
773
+ "96": {
774
+ "content": "<unused89>",
775
+ "lstrip": false,
776
+ "normalized": false,
777
+ "rstrip": false,
778
+ "single_word": false,
779
+ "special": false
780
+ },
781
+ "97": {
782
+ "content": "<unused90>",
783
+ "lstrip": false,
784
+ "normalized": false,
785
+ "rstrip": false,
786
+ "single_word": false,
787
+ "special": false
788
+ },
789
+ "98": {
790
+ "content": "<unused91>",
791
+ "lstrip": false,
792
+ "normalized": false,
793
+ "rstrip": false,
794
+ "single_word": false,
795
+ "special": false
796
+ },
797
+ "99": {
798
+ "content": "<unused92>",
799
+ "lstrip": false,
800
+ "normalized": false,
801
+ "rstrip": false,
802
+ "single_word": false,
803
+ "special": false
804
+ },
805
+ "100": {
806
+ "content": "<unused93>",
807
+ "lstrip": false,
808
+ "normalized": false,
809
+ "rstrip": false,
810
+ "single_word": false,
811
+ "special": false
812
+ },
813
+ "101": {
814
+ "content": "<unused94>",
815
+ "lstrip": false,
816
+ "normalized": false,
817
+ "rstrip": false,
818
+ "single_word": false,
819
+ "special": false
820
+ },
821
+ "102": {
822
+ "content": "<unused95>",
823
+ "lstrip": false,
824
+ "normalized": false,
825
+ "rstrip": false,
826
+ "single_word": false,
827
+ "special": false
828
+ },
829
+ "103": {
830
+ "content": "<unused96>",
831
+ "lstrip": false,
832
+ "normalized": false,
833
+ "rstrip": false,
834
+ "single_word": false,
835
+ "special": false
836
+ },
837
+ "104": {
838
+ "content": "<unused97>",
839
+ "lstrip": false,
840
+ "normalized": false,
841
+ "rstrip": false,
842
+ "single_word": false,
843
+ "special": false
844
+ },
845
+ "105": {
846
+ "content": "<unused98>",
847
+ "lstrip": false,
848
+ "normalized": false,
849
+ "rstrip": false,
850
+ "single_word": false,
851
+ "special": false
852
+ },
853
+ "106": {
854
+ "content": "<start_of_turn>",
855
+ "lstrip": false,
856
+ "normalized": false,
857
+ "rstrip": false,
858
+ "single_word": false,
859
+ "special": true
860
+ },
861
+ "107": {
862
+ "content": "<end_of_turn>",
863
+ "lstrip": false,
864
+ "normalized": false,
865
+ "rstrip": false,
866
+ "single_word": false,
867
+ "special": true
868
+ },
869
+ "108": {
870
+ "content": "\n",
871
+ "lstrip": false,
872
+ "normalized": false,
873
+ "rstrip": false,
874
+ "single_word": false,
875
+ "special": false
876
+ },
877
+ "109": {
878
+ "content": "\n\n",
879
+ "lstrip": false,
880
+ "normalized": false,
881
+ "rstrip": false,
882
+ "single_word": false,
883
+ "special": false
884
+ },
885
+ "110": {
886
+ "content": "\n\n\n",
887
+ "lstrip": false,
888
+ "normalized": false,
889
+ "rstrip": false,
890
+ "single_word": false,
891
+ "special": false
892
+ },
893
+ "111": {
894
+ "content": "\n\n\n\n",
895
+ "lstrip": false,
896
+ "normalized": false,
897
+ "rstrip": false,
898
+ "single_word": false,
899
+ "special": false
900
+ },
901
+ "112": {
902
+ "content": "\n\n\n\n\n",
903
+ "lstrip": false,
904
+ "normalized": false,
905
+ "rstrip": false,
906
+ "single_word": false,
907
+ "special": false
908
+ },
909
+ "113": {
910
+ "content": "\n\n\n\n\n\n",
911
+ "lstrip": false,
912
+ "normalized": false,
913
+ "rstrip": false,
914
+ "single_word": false,
915
+ "special": false
916
+ },
917
+ "114": {
918
+ "content": "\n\n\n\n\n\n\n",
919
+ "lstrip": false,
920
+ "normalized": false,
921
+ "rstrip": false,
922
+ "single_word": false,
923
+ "special": false
924
+ },
925
+ "115": {
926
+ "content": "\n\n\n\n\n\n\n\n",
927
+ "lstrip": false,
928
+ "normalized": false,
929
+ "rstrip": false,
930
+ "single_word": false,
931
+ "special": false
932
+ },
933
+ "116": {
934
+ "content": "\n\n\n\n\n\n\n\n\n",
935
+ "lstrip": false,
936
+ "normalized": false,
937
+ "rstrip": false,
938
+ "single_word": false,
939
+ "special": false
940
+ },
941
+ "117": {
942
+ "content": "\n\n\n\n\n\n\n\n\n\n",
943
+ "lstrip": false,
944
+ "normalized": false,
945
+ "rstrip": false,
946
+ "single_word": false,
947
+ "special": false
948
+ },
949
+ "118": {
950
+ "content": "\n\n\n\n\n\n\n\n\n\n\n",
951
+ "lstrip": false,
952
+ "normalized": false,
953
+ "rstrip": false,
954
+ "single_word": false,
955
+ "special": false
956
+ },
957
+ "119": {
958
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n",
959
+ "lstrip": false,
960
+ "normalized": false,
961
+ "rstrip": false,
962
+ "single_word": false,
963
+ "special": false
964
+ },
965
+ "120": {
966
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n",
967
+ "lstrip": false,
968
+ "normalized": false,
969
+ "rstrip": false,
970
+ "single_word": false,
971
+ "special": false
972
+ },
973
+ "121": {
974
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
975
+ "lstrip": false,
976
+ "normalized": false,
977
+ "rstrip": false,
978
+ "single_word": false,
979
+ "special": false
980
+ },
981
+ "122": {
982
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
983
+ "lstrip": false,
984
+ "normalized": false,
985
+ "rstrip": false,
986
+ "single_word": false,
987
+ "special": false
988
+ },
989
+ "123": {
990
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
991
+ "lstrip": false,
992
+ "normalized": false,
993
+ "rstrip": false,
994
+ "single_word": false,
995
+ "special": false
996
+ },
997
+ "124": {
998
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
999
+ "lstrip": false,
1000
+ "normalized": false,
1001
+ "rstrip": false,
1002
+ "single_word": false,
1003
+ "special": false
1004
+ },
1005
+ "125": {
1006
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1007
+ "lstrip": false,
1008
+ "normalized": false,
1009
+ "rstrip": false,
1010
+ "single_word": false,
1011
+ "special": false
1012
+ },
1013
+ "126": {
1014
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1015
+ "lstrip": false,
1016
+ "normalized": false,
1017
+ "rstrip": false,
1018
+ "single_word": false,
1019
+ "special": false
1020
+ },
1021
+ "127": {
1022
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1023
+ "lstrip": false,
1024
+ "normalized": false,
1025
+ "rstrip": false,
1026
+ "single_word": false,
1027
+ "special": false
1028
+ },
1029
+ "128": {
1030
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1031
+ "lstrip": false,
1032
+ "normalized": false,
1033
+ "rstrip": false,
1034
+ "single_word": false,
1035
+ "special": false
1036
+ },
1037
+ "129": {
1038
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1039
+ "lstrip": false,
1040
+ "normalized": false,
1041
+ "rstrip": false,
1042
+ "single_word": false,
1043
+ "special": false
1044
+ },
1045
+ "130": {
1046
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1047
+ "lstrip": false,
1048
+ "normalized": false,
1049
+ "rstrip": false,
1050
+ "single_word": false,
1051
+ "special": false
1052
+ },
1053
+ "131": {
1054
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1055
+ "lstrip": false,
1056
+ "normalized": false,
1057
+ "rstrip": false,
1058
+ "single_word": false,
1059
+ "special": false
1060
+ },
1061
+ "132": {
1062
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1063
+ "lstrip": false,
1064
+ "normalized": false,
1065
+ "rstrip": false,
1066
+ "single_word": false,
1067
+ "special": false
1068
+ },
1069
+ "133": {
1070
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1071
+ "lstrip": false,
1072
+ "normalized": false,
1073
+ "rstrip": false,
1074
+ "single_word": false,
1075
+ "special": false
1076
+ },
1077
+ "134": {
1078
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1079
+ "lstrip": false,
1080
+ "normalized": false,
1081
+ "rstrip": false,
1082
+ "single_word": false,
1083
+ "special": false
1084
+ },
1085
+ "135": {
1086
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1087
+ "lstrip": false,
1088
+ "normalized": false,
1089
+ "rstrip": false,
1090
+ "single_word": false,
1091
+ "special": false
1092
+ },
1093
+ "136": {
1094
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1095
+ "lstrip": false,
1096
+ "normalized": false,
1097
+ "rstrip": false,
1098
+ "single_word": false,
1099
+ "special": false
1100
+ },
1101
+ "137": {
1102
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1103
+ "lstrip": false,
1104
+ "normalized": false,
1105
+ "rstrip": false,
1106
+ "single_word": false,
1107
+ "special": false
1108
+ },
1109
+ "138": {
1110
+ "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
1111
+ "lstrip": false,
1112
+ "normalized": false,
1113
+ "rstrip": false,
1114
+ "single_word": false,
1115
+ "special": false
1116
+ },
1117
+ "169": {
1118
+ "content": "<table>",
1119
+ "lstrip": false,
1120
+ "normalized": false,
1121
+ "rstrip": false,
1122
+ "single_word": false,
1123
+ "special": false
1124
+ },
1125
+ "170": {
1126
+ "content": "<caption>",
1127
+ "lstrip": false,
1128
+ "normalized": false,
1129
+ "rstrip": false,
1130
+ "single_word": false,
1131
+ "special": false
1132
+ },
1133
+ "171": {
1134
+ "content": "<thead>",
1135
+ "lstrip": false,
1136
+ "normalized": false,
1137
+ "rstrip": false,
1138
+ "single_word": false,
1139
+ "special": false
1140
+ },
1141
+ "172": {
1142
+ "content": "<tbody>",
1143
+ "lstrip": false,
1144
+ "normalized": false,
1145
+ "rstrip": false,
1146
+ "single_word": false,
1147
+ "special": false
1148
+ },
1149
+ "173": {
1150
+ "content": "<tfoot>",
1151
+ "lstrip": false,
1152
+ "normalized": false,
1153
+ "rstrip": false,
1154
+ "single_word": false,
1155
+ "special": false
1156
+ },
1157
+ "174": {
1158
+ "content": "<tr>",
1159
+ "lstrip": false,
1160
+ "normalized": false,
1161
+ "rstrip": false,
1162
+ "single_word": false,
1163
+ "special": false
1164
+ },
1165
+ "175": {
1166
+ "content": "<th>",
1167
+ "lstrip": false,
1168
+ "normalized": false,
1169
+ "rstrip": false,
1170
+ "single_word": false,
1171
+ "special": false
1172
+ },
1173
+ "176": {
1174
+ "content": "<td>",
1175
+ "lstrip": false,
1176
+ "normalized": false,
1177
+ "rstrip": false,
1178
+ "single_word": false,
1179
+ "special": false
1180
+ },
1181
+ "177": {
1182
+ "content": "</table>",
1183
+ "lstrip": false,
1184
+ "normalized": false,
1185
+ "rstrip": false,
1186
+ "single_word": false,
1187
+ "special": false
1188
+ },
1189
+ "178": {
1190
+ "content": "</caption>",
1191
+ "lstrip": false,
1192
+ "normalized": false,
1193
+ "rstrip": false,
1194
+ "single_word": false,
1195
+ "special": false
1196
+ },
1197
+ "179": {
1198
+ "content": "</thead>",
1199
+ "lstrip": false,
1200
+ "normalized": false,
1201
+ "rstrip": false,
1202
+ "single_word": false,
1203
+ "special": false
1204
+ },
1205
+ "180": {
1206
+ "content": "</tbody>",
1207
+ "lstrip": false,
1208
+ "normalized": false,
1209
+ "rstrip": false,
1210
+ "single_word": false,
1211
+ "special": false
1212
+ },
1213
+ "181": {
1214
+ "content": "</tfoot>",
1215
+ "lstrip": false,
1216
+ "normalized": false,
1217
+ "rstrip": false,
1218
+ "single_word": false,
1219
+ "special": false
1220
+ },
1221
+ "182": {
1222
+ "content": "</tr>",
1223
+ "lstrip": false,
1224
+ "normalized": false,
1225
+ "rstrip": false,
1226
+ "single_word": false,
1227
+ "special": false
1228
+ },
1229
+ "183": {
1230
+ "content": "</th>",
1231
+ "lstrip": false,
1232
+ "normalized": false,
1233
+ "rstrip": false,
1234
+ "single_word": false,
1235
+ "special": false
1236
+ },
1237
+ "184": {
1238
+ "content": "</td>",
1239
+ "lstrip": false,
1240
+ "normalized": false,
1241
+ "rstrip": false,
1242
+ "single_word": false,
1243
+ "special": false
1244
+ },
1245
+ "185": {
1246
+ "content": "<h1>",
1247
+ "lstrip": false,
1248
+ "normalized": false,
1249
+ "rstrip": false,
1250
+ "single_word": false,
1251
+ "special": false
1252
+ },
1253
+ "186": {
1254
+ "content": "<h2>",
1255
+ "lstrip": false,
1256
+ "normalized": false,
1257
+ "rstrip": false,
1258
+ "single_word": false,
1259
+ "special": false
1260
+ },
1261
+ "187": {
1262
+ "content": "<h3>",
1263
+ "lstrip": false,
1264
+ "normalized": false,
1265
+ "rstrip": false,
1266
+ "single_word": false,
1267
+ "special": false
1268
+ },
1269
+ "188": {
1270
+ "content": "<h4>",
1271
+ "lstrip": false,
1272
+ "normalized": false,
1273
+ "rstrip": false,
1274
+ "single_word": false,
1275
+ "special": false
1276
+ },
1277
+ "189": {
1278
+ "content": "<h5>",
1279
+ "lstrip": false,
1280
+ "normalized": false,
1281
+ "rstrip": false,
1282
+ "single_word": false,
1283
+ "special": false
1284
+ },
1285
+ "190": {
1286
+ "content": "<h6>",
1287
+ "lstrip": false,
1288
+ "normalized": false,
1289
+ "rstrip": false,
1290
+ "single_word": false,
1291
+ "special": false
1292
+ },
1293
+ "191": {
1294
+ "content": "<blockquote>",
1295
+ "lstrip": false,
1296
+ "normalized": false,
1297
+ "rstrip": false,
1298
+ "single_word": false,
1299
+ "special": false
1300
+ },
1301
+ "192": {
1302
+ "content": "</h1>",
1303
+ "lstrip": false,
1304
+ "normalized": false,
1305
+ "rstrip": false,
1306
+ "single_word": false,
1307
+ "special": false
1308
+ },
1309
+ "193": {
1310
+ "content": "</h2>",
1311
+ "lstrip": false,
1312
+ "normalized": false,
1313
+ "rstrip": false,
1314
+ "single_word": false,
1315
+ "special": false
1316
+ },
1317
+ "194": {
1318
+ "content": "</h3>",
1319
+ "lstrip": false,
1320
+ "normalized": false,
1321
+ "rstrip": false,
1322
+ "single_word": false,
1323
+ "special": false
1324
+ },
1325
+ "195": {
1326
+ "content": "</h4>",
1327
+ "lstrip": false,
1328
+ "normalized": false,
1329
+ "rstrip": false,
1330
+ "single_word": false,
1331
+ "special": false
1332
+ },
1333
+ "196": {
1334
+ "content": "</h5>",
1335
+ "lstrip": false,
1336
+ "normalized": false,
1337
+ "rstrip": false,
1338
+ "single_word": false,
1339
+ "special": false
1340
+ },
1341
+ "197": {
1342
+ "content": "</h6>",
1343
+ "lstrip": false,
1344
+ "normalized": false,
1345
+ "rstrip": false,
1346
+ "single_word": false,
1347
+ "special": false
1348
+ },
1349
+ "198": {
1350
+ "content": "</blockquote>",
1351
+ "lstrip": false,
1352
+ "normalized": false,
1353
+ "rstrip": false,
1354
+ "single_word": false,
1355
+ "special": false
1356
+ },
1357
+ "199": {
1358
+ "content": "<strong>",
1359
+ "lstrip": false,
1360
+ "normalized": false,
1361
+ "rstrip": false,
1362
+ "single_word": false,
1363
+ "special": false
1364
+ },
1365
+ "200": {
1366
+ "content": "<em>",
1367
+ "lstrip": false,
1368
+ "normalized": false,
1369
+ "rstrip": false,
1370
+ "single_word": false,
1371
+ "special": false
1372
+ },
1373
+ "201": {
1374
+ "content": "<b>",
1375
+ "lstrip": false,
1376
+ "normalized": false,
1377
+ "rstrip": false,
1378
+ "single_word": false,
1379
+ "special": false
1380
+ },
1381
+ "202": {
1382
+ "content": "<i>",
1383
+ "lstrip": false,
1384
+ "normalized": false,
1385
+ "rstrip": false,
1386
+ "single_word": false,
1387
+ "special": false
1388
+ },
1389
+ "203": {
1390
+ "content": "<u>",
1391
+ "lstrip": false,
1392
+ "normalized": false,
1393
+ "rstrip": false,
1394
+ "single_word": false,
1395
+ "special": false
1396
+ },
1397
+ "204": {
1398
+ "content": "<s>",
1399
+ "lstrip": false,
1400
+ "normalized": false,
1401
+ "rstrip": false,
1402
+ "single_word": false,
1403
+ "special": false
1404
+ },
1405
+ "205": {
1406
+ "content": "<sub>",
1407
+ "lstrip": false,
1408
+ "normalized": false,
1409
+ "rstrip": false,
1410
+ "single_word": false,
1411
+ "special": false
1412
+ },
1413
+ "206": {
1414
+ "content": "<sup>",
1415
+ "lstrip": false,
1416
+ "normalized": false,
1417
+ "rstrip": false,
1418
+ "single_word": false,
1419
+ "special": false
1420
+ },
1421
+ "207": {
1422
+ "content": "<code>",
1423
+ "lstrip": false,
1424
+ "normalized": false,
1425
+ "rstrip": false,
1426
+ "single_word": false,
1427
+ "special": false
1428
+ },
1429
+ "208": {
1430
+ "content": "</strong>",
1431
+ "lstrip": false,
1432
+ "normalized": false,
1433
+ "rstrip": false,
1434
+ "single_word": false,
1435
+ "special": false
1436
+ },
1437
+ "209": {
1438
+ "content": "</em>",
1439
+ "lstrip": false,
1440
+ "normalized": false,
1441
+ "rstrip": false,
1442
+ "single_word": false,
1443
+ "special": false
1444
+ },
1445
+ "210": {
1446
+ "content": "</b>",
1447
+ "lstrip": false,
1448
+ "normalized": false,
1449
+ "rstrip": false,
1450
+ "single_word": false,
1451
+ "special": false
1452
+ },
1453
+ "211": {
1454
+ "content": "</i>",
1455
+ "lstrip": false,
1456
+ "normalized": false,
1457
+ "rstrip": false,
1458
+ "single_word": false,
1459
+ "special": false
1460
+ },
1461
+ "212": {
1462
+ "content": "</u>",
1463
+ "lstrip": false,
1464
+ "normalized": false,
1465
+ "rstrip": false,
1466
+ "single_word": false,
1467
+ "special": false
1468
+ },
1469
+ "213": {
1470
+ "content": "</s>",
1471
+ "lstrip": false,
1472
+ "normalized": false,
1473
+ "rstrip": false,
1474
+ "single_word": false,
1475
+ "special": false
1476
+ },
1477
+ "214": {
1478
+ "content": "</sub>",
1479
+ "lstrip": false,
1480
+ "normalized": false,
1481
+ "rstrip": false,
1482
+ "single_word": false,
1483
+ "special": false
1484
+ },
1485
+ "215": {
1486
+ "content": "</sup>",
1487
+ "lstrip": false,
1488
+ "normalized": false,
1489
+ "rstrip": false,
1490
+ "single_word": false,
1491
+ "special": false
1492
+ },
1493
+ "216": {
1494
+ "content": "</code>",
1495
+ "lstrip": false,
1496
+ "normalized": false,
1497
+ "rstrip": false,
1498
+ "single_word": false,
1499
+ "special": false
1500
+ }
1501
+ },
1502
+ "additional_special_tokens": [
1503
+ "<start_of_turn>",
1504
+ "<end_of_turn>"
1505
+ ],
1506
+ "bos_token": "<bos>",
1507
+ "chat_template": "{{ bos_token }}{% if messages[0]['role'] == 'system' %}{{ raise_exception('System role not supported') }}{% endif %}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if (message['role'] == 'assistant') %}{% set role = 'model' %}{% else %}{% set role = message['role'] %}{% endif %}{{ '<start_of_turn>' + role + '\n' + message['content'] | trim + '<end_of_turn>\n' }}{% endfor %}{% if add_generation_prompt %}{{'<start_of_turn>model\n'}}{% endif %}",
1508
+ "clean_up_tokenization_spaces": false,
1509
+ "eos_token": "<eos>",
1510
+ "model_max_length": 1000000000000000019884624838656,
1511
+ "pad_token": "<pad>",
1512
+ "sp_model_kwargs": {},
1513
+ "spaces_between_special_tokens": false,
1514
+ "tokenizer_class": "GemmaTokenizer",
1515
+ "unk_token": "<unk>",
1516
+ "use_default_system_prompt": false
1517
+ }