navodPeiris commited on
Commit
24545a4
·
verified ·
1 Parent(s): 93d5169

upload files

Browse files
.gitattributes ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar filter=lfs diff=lfs merge=lfs -text
29
+ *.tflite filter=lfs diff=lfs merge=lfs -text
30
+ *.tgz filter=lfs diff=lfs merge=lfs -text
31
+ *.wasm filter=lfs diff=lfs merge=lfs -text
32
+ *.xz 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
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .env
README.md ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - cerebras/SlimPajama-627B
5
+ - bigcode/starcoderdata
6
+ - HuggingFaceH4/ultrachat_200k
7
+ - HuggingFaceH4/ultrafeedback_binarized
8
+ language:
9
+ - en
10
+ widget:
11
+ - example_title: Fibonacci (Python)
12
+ messages:
13
+ - role: system
14
+ content: You are a chatbot who can help code!
15
+ - role: user
16
+ content: Write me a function to calculate the first 10 digits of the fibonacci sequence in Python and print it out to the CLI.
17
+ ---
18
+ <div align="center">
19
+
20
+ # TinyLlama-1.1B
21
+ </div>
22
+
23
+ https://github.com/jzhang38/TinyLlama
24
+
25
+ The TinyLlama project aims to **pretrain** a **1.1B Llama model on 3 trillion tokens**. With some proper optimization, we can achieve this within a span of "just" 90 days using 16 A100-40G GPUs 🚀🚀. The training has started on 2023-09-01.
26
+
27
+
28
+ We adopted exactly the same architecture and tokenizer as Llama 2. This means TinyLlama can be plugged and played in many open-source projects built upon Llama. Besides, TinyLlama is compact with only 1.1B parameters. This compactness allows it to cater to a multitude of applications demanding a restricted computation and memory footprint.
29
+
30
+ #### This Model
31
+ This is the chat model finetuned on top of [TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T](https://huggingface.co/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T). **We follow [HF's Zephyr](https://huggingface.co/HuggingFaceH4/zephyr-7b-alpha)'s training recipe.** The model was " initially fine-tuned on a variant of the [`UltraChat`](https://huggingface.co/datasets/stingning/ultrachat) dataset, which contains a diverse range of synthetic dialogues generated by ChatGPT.
32
+ We then further aligned the model with [🤗 TRL's](https://github.com/huggingface/trl) `DPOTrainer` on the [openbmb/UltraFeedback](https://huggingface.co/datasets/openbmb/UltraFeedback) dataset, which contain 64k prompts and model completions that are ranked by GPT-4."
33
+
34
+
35
+ #### How to use
36
+ You will need the transformers>=4.34
37
+ Do check the [TinyLlama](https://github.com/jzhang38/TinyLlama) github page for more information.
38
+
39
+ ```python
40
+ # Install transformers from source - only needed for versions <= v4.34
41
+ # pip install git+https://github.com/huggingface/transformers.git
42
+ # pip install accelerate
43
+
44
+ import torch
45
+ from transformers import pipeline
46
+
47
+ pipe = pipeline("text-generation", model="TinyLlama/TinyLlama-1.1B-Chat-v1.0", torch_dtype=torch.bfloat16, device_map="auto")
48
+
49
+ # We use the tokenizer's chat template to format each message - see https://huggingface.co/docs/transformers/main/en/chat_templating
50
+ messages = [
51
+ {
52
+ "role": "system",
53
+ "content": "You are a friendly chatbot who always responds in the style of a pirate",
54
+ },
55
+ {"role": "user", "content": "How many helicopters can a human eat in one sitting?"},
56
+ ]
57
+ prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
58
+ outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
59
+ print(outputs[0]["generated_text"])
60
+ # <|system|>
61
+ # You are a friendly chatbot who always responds in the style of a pirate.</s>
62
+ # <|user|>
63
+ # How many helicopters can a human eat in one sitting?</s>
64
+ # <|assistant|>
65
+ # ...
66
+ ```
config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "bos_token_id": 1,
7
+ "eos_token_id": 2,
8
+ "hidden_act": "silu",
9
+ "hidden_size": 2048,
10
+ "initializer_range": 0.02,
11
+ "intermediate_size": 5632,
12
+ "max_position_embeddings": 2048,
13
+ "model_type": "llama",
14
+ "num_attention_heads": 32,
15
+ "num_hidden_layers": 22,
16
+ "num_key_value_heads": 4,
17
+ "pretraining_tp": 1,
18
+ "rms_norm_eps": 1e-05,
19
+ "rope_scaling": null,
20
+ "rope_theta": 10000.0,
21
+ "tie_word_embeddings": false,
22
+ "torch_dtype": "bfloat16",
23
+ "transformers_version": "4.35.0",
24
+ "use_cache": true,
25
+ "vocab_size": 32000
26
+ }
eval_results.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "eval_logits/chosen": -2.707406759262085,
4
+ "eval_logits/rejected": -2.656524419784546,
5
+ "eval_logps/chosen": -370.1297607421875,
6
+ "eval_logps/rejected": -296.0738525390625,
7
+ "eval_loss": 0.513750433921814,
8
+ "eval_rewards/accuracies": 0.738095223903656,
9
+ "eval_rewards/chosen": -0.02744222804903984,
10
+ "eval_rewards/margins": 1.0087225437164307,
11
+ "eval_rewards/rejected": -1.03616464138031,
12
+ "eval_runtime": 93.5908,
13
+ "eval_samples": 2000,
14
+ "eval_samples_per_second": 21.37,
15
+ "eval_steps_per_second": 0.673
16
+ }
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 1,
3
+ "eos_token_id": 2,
4
+ "max_length": 2048,
5
+ "pad_token_id": 0,
6
+ "transformers_version": "4.35.0"
7
+ }
model.safetensors.index.json ADDED
@@ -0,0 +1,1766 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lm_head.weight": {
3
+ "dtype": "torch.bfloat16",
4
+ "shape": [
5
+ 32000,
6
+ 2048
7
+ ],
8
+ "offset": 0,
9
+ "length": 65536000
10
+ },
11
+ "model.embed_tokens.weight": {
12
+ "dtype": "torch.bfloat16",
13
+ "shape": [
14
+ 32000,
15
+ 2048
16
+ ],
17
+ "offset": 0,
18
+ "length": 65536000
19
+ },
20
+ "model.layers.0.input_layernorm.weight": {
21
+ "dtype": "torch.bfloat16",
22
+ "shape": [
23
+ 2048
24
+ ],
25
+ "offset": 0,
26
+ "length": 2048
27
+ },
28
+ "model.layers.0.mlp.down_proj.weight": {
29
+ "dtype": "torch.bfloat16",
30
+ "shape": [
31
+ 2048,
32
+ 5632
33
+ ],
34
+ "offset": 0,
35
+ "length": 11534336
36
+ },
37
+ "model.layers.0.mlp.gate_proj.weight": {
38
+ "dtype": "torch.bfloat16",
39
+ "shape": [
40
+ 5632,
41
+ 2048
42
+ ],
43
+ "offset": 0,
44
+ "length": 11534336
45
+ },
46
+ "model.layers.0.mlp.up_proj.weight": {
47
+ "dtype": "torch.bfloat16",
48
+ "shape": [
49
+ 5632,
50
+ 2048
51
+ ],
52
+ "offset": 0,
53
+ "length": 11534336
54
+ },
55
+ "model.layers.0.post_attention_layernorm.weight": {
56
+ "dtype": "torch.bfloat16",
57
+ "shape": [
58
+ 2048
59
+ ],
60
+ "offset": 0,
61
+ "length": 2048
62
+ },
63
+ "model.layers.0.self_attn.k_proj.weight": {
64
+ "dtype": "torch.bfloat16",
65
+ "shape": [
66
+ 256,
67
+ 2048
68
+ ],
69
+ "offset": 0,
70
+ "length": 524288
71
+ },
72
+ "model.layers.0.self_attn.o_proj.weight": {
73
+ "dtype": "torch.bfloat16",
74
+ "shape": [
75
+ 2048,
76
+ 2048
77
+ ],
78
+ "offset": 0,
79
+ "length": 4194304
80
+ },
81
+ "model.layers.0.self_attn.q_proj.weight": {
82
+ "dtype": "torch.bfloat16",
83
+ "shape": [
84
+ 2048,
85
+ 2048
86
+ ],
87
+ "offset": 0,
88
+ "length": 4194304
89
+ },
90
+ "model.layers.0.self_attn.v_proj.weight": {
91
+ "dtype": "torch.bfloat16",
92
+ "shape": [
93
+ 256,
94
+ 2048
95
+ ],
96
+ "offset": 0,
97
+ "length": 524288
98
+ },
99
+ "model.layers.1.input_layernorm.weight": {
100
+ "dtype": "torch.bfloat16",
101
+ "shape": [
102
+ 2048
103
+ ],
104
+ "offset": 0,
105
+ "length": 2048
106
+ },
107
+ "model.layers.1.mlp.down_proj.weight": {
108
+ "dtype": "torch.bfloat16",
109
+ "shape": [
110
+ 2048,
111
+ 5632
112
+ ],
113
+ "offset": 0,
114
+ "length": 11534336
115
+ },
116
+ "model.layers.1.mlp.gate_proj.weight": {
117
+ "dtype": "torch.bfloat16",
118
+ "shape": [
119
+ 5632,
120
+ 2048
121
+ ],
122
+ "offset": 0,
123
+ "length": 11534336
124
+ },
125
+ "model.layers.1.mlp.up_proj.weight": {
126
+ "dtype": "torch.bfloat16",
127
+ "shape": [
128
+ 5632,
129
+ 2048
130
+ ],
131
+ "offset": 0,
132
+ "length": 11534336
133
+ },
134
+ "model.layers.1.post_attention_layernorm.weight": {
135
+ "dtype": "torch.bfloat16",
136
+ "shape": [
137
+ 2048
138
+ ],
139
+ "offset": 0,
140
+ "length": 2048
141
+ },
142
+ "model.layers.1.self_attn.k_proj.weight": {
143
+ "dtype": "torch.bfloat16",
144
+ "shape": [
145
+ 256,
146
+ 2048
147
+ ],
148
+ "offset": 0,
149
+ "length": 524288
150
+ },
151
+ "model.layers.1.self_attn.o_proj.weight": {
152
+ "dtype": "torch.bfloat16",
153
+ "shape": [
154
+ 2048,
155
+ 2048
156
+ ],
157
+ "offset": 0,
158
+ "length": 4194304
159
+ },
160
+ "model.layers.1.self_attn.q_proj.weight": {
161
+ "dtype": "torch.bfloat16",
162
+ "shape": [
163
+ 2048,
164
+ 2048
165
+ ],
166
+ "offset": 0,
167
+ "length": 4194304
168
+ },
169
+ "model.layers.1.self_attn.v_proj.weight": {
170
+ "dtype": "torch.bfloat16",
171
+ "shape": [
172
+ 256,
173
+ 2048
174
+ ],
175
+ "offset": 0,
176
+ "length": 524288
177
+ },
178
+ "model.layers.10.input_layernorm.weight": {
179
+ "dtype": "torch.bfloat16",
180
+ "shape": [
181
+ 2048
182
+ ],
183
+ "offset": 0,
184
+ "length": 2048
185
+ },
186
+ "model.layers.10.mlp.down_proj.weight": {
187
+ "dtype": "torch.bfloat16",
188
+ "shape": [
189
+ 2048,
190
+ 5632
191
+ ],
192
+ "offset": 0,
193
+ "length": 11534336
194
+ },
195
+ "model.layers.10.mlp.gate_proj.weight": {
196
+ "dtype": "torch.bfloat16",
197
+ "shape": [
198
+ 5632,
199
+ 2048
200
+ ],
201
+ "offset": 0,
202
+ "length": 11534336
203
+ },
204
+ "model.layers.10.mlp.up_proj.weight": {
205
+ "dtype": "torch.bfloat16",
206
+ "shape": [
207
+ 5632,
208
+ 2048
209
+ ],
210
+ "offset": 0,
211
+ "length": 11534336
212
+ },
213
+ "model.layers.10.post_attention_layernorm.weight": {
214
+ "dtype": "torch.bfloat16",
215
+ "shape": [
216
+ 2048
217
+ ],
218
+ "offset": 0,
219
+ "length": 2048
220
+ },
221
+ "model.layers.10.self_attn.k_proj.weight": {
222
+ "dtype": "torch.bfloat16",
223
+ "shape": [
224
+ 256,
225
+ 2048
226
+ ],
227
+ "offset": 0,
228
+ "length": 524288
229
+ },
230
+ "model.layers.10.self_attn.o_proj.weight": {
231
+ "dtype": "torch.bfloat16",
232
+ "shape": [
233
+ 2048,
234
+ 2048
235
+ ],
236
+ "offset": 0,
237
+ "length": 4194304
238
+ },
239
+ "model.layers.10.self_attn.q_proj.weight": {
240
+ "dtype": "torch.bfloat16",
241
+ "shape": [
242
+ 2048,
243
+ 2048
244
+ ],
245
+ "offset": 0,
246
+ "length": 4194304
247
+ },
248
+ "model.layers.10.self_attn.v_proj.weight": {
249
+ "dtype": "torch.bfloat16",
250
+ "shape": [
251
+ 256,
252
+ 2048
253
+ ],
254
+ "offset": 0,
255
+ "length": 524288
256
+ },
257
+ "model.layers.11.input_layernorm.weight": {
258
+ "dtype": "torch.bfloat16",
259
+ "shape": [
260
+ 2048
261
+ ],
262
+ "offset": 0,
263
+ "length": 2048
264
+ },
265
+ "model.layers.11.mlp.down_proj.weight": {
266
+ "dtype": "torch.bfloat16",
267
+ "shape": [
268
+ 2048,
269
+ 5632
270
+ ],
271
+ "offset": 0,
272
+ "length": 11534336
273
+ },
274
+ "model.layers.11.mlp.gate_proj.weight": {
275
+ "dtype": "torch.bfloat16",
276
+ "shape": [
277
+ 5632,
278
+ 2048
279
+ ],
280
+ "offset": 0,
281
+ "length": 11534336
282
+ },
283
+ "model.layers.11.mlp.up_proj.weight": {
284
+ "dtype": "torch.bfloat16",
285
+ "shape": [
286
+ 5632,
287
+ 2048
288
+ ],
289
+ "offset": 0,
290
+ "length": 11534336
291
+ },
292
+ "model.layers.11.post_attention_layernorm.weight": {
293
+ "dtype": "torch.bfloat16",
294
+ "shape": [
295
+ 2048
296
+ ],
297
+ "offset": 0,
298
+ "length": 2048
299
+ },
300
+ "model.layers.11.self_attn.k_proj.weight": {
301
+ "dtype": "torch.bfloat16",
302
+ "shape": [
303
+ 256,
304
+ 2048
305
+ ],
306
+ "offset": 0,
307
+ "length": 524288
308
+ },
309
+ "model.layers.11.self_attn.o_proj.weight": {
310
+ "dtype": "torch.bfloat16",
311
+ "shape": [
312
+ 2048,
313
+ 2048
314
+ ],
315
+ "offset": 0,
316
+ "length": 4194304
317
+ },
318
+ "model.layers.11.self_attn.q_proj.weight": {
319
+ "dtype": "torch.bfloat16",
320
+ "shape": [
321
+ 2048,
322
+ 2048
323
+ ],
324
+ "offset": 0,
325
+ "length": 4194304
326
+ },
327
+ "model.layers.11.self_attn.v_proj.weight": {
328
+ "dtype": "torch.bfloat16",
329
+ "shape": [
330
+ 256,
331
+ 2048
332
+ ],
333
+ "offset": 0,
334
+ "length": 524288
335
+ },
336
+ "model.layers.12.input_layernorm.weight": {
337
+ "dtype": "torch.bfloat16",
338
+ "shape": [
339
+ 2048
340
+ ],
341
+ "offset": 0,
342
+ "length": 2048
343
+ },
344
+ "model.layers.12.mlp.down_proj.weight": {
345
+ "dtype": "torch.bfloat16",
346
+ "shape": [
347
+ 2048,
348
+ 5632
349
+ ],
350
+ "offset": 0,
351
+ "length": 11534336
352
+ },
353
+ "model.layers.12.mlp.gate_proj.weight": {
354
+ "dtype": "torch.bfloat16",
355
+ "shape": [
356
+ 5632,
357
+ 2048
358
+ ],
359
+ "offset": 0,
360
+ "length": 11534336
361
+ },
362
+ "model.layers.12.mlp.up_proj.weight": {
363
+ "dtype": "torch.bfloat16",
364
+ "shape": [
365
+ 5632,
366
+ 2048
367
+ ],
368
+ "offset": 0,
369
+ "length": 11534336
370
+ },
371
+ "model.layers.12.post_attention_layernorm.weight": {
372
+ "dtype": "torch.bfloat16",
373
+ "shape": [
374
+ 2048
375
+ ],
376
+ "offset": 0,
377
+ "length": 2048
378
+ },
379
+ "model.layers.12.self_attn.k_proj.weight": {
380
+ "dtype": "torch.bfloat16",
381
+ "shape": [
382
+ 256,
383
+ 2048
384
+ ],
385
+ "offset": 0,
386
+ "length": 524288
387
+ },
388
+ "model.layers.12.self_attn.o_proj.weight": {
389
+ "dtype": "torch.bfloat16",
390
+ "shape": [
391
+ 2048,
392
+ 2048
393
+ ],
394
+ "offset": 0,
395
+ "length": 4194304
396
+ },
397
+ "model.layers.12.self_attn.q_proj.weight": {
398
+ "dtype": "torch.bfloat16",
399
+ "shape": [
400
+ 2048,
401
+ 2048
402
+ ],
403
+ "offset": 0,
404
+ "length": 4194304
405
+ },
406
+ "model.layers.12.self_attn.v_proj.weight": {
407
+ "dtype": "torch.bfloat16",
408
+ "shape": [
409
+ 256,
410
+ 2048
411
+ ],
412
+ "offset": 0,
413
+ "length": 524288
414
+ },
415
+ "model.layers.13.input_layernorm.weight": {
416
+ "dtype": "torch.bfloat16",
417
+ "shape": [
418
+ 2048
419
+ ],
420
+ "offset": 0,
421
+ "length": 2048
422
+ },
423
+ "model.layers.13.mlp.down_proj.weight": {
424
+ "dtype": "torch.bfloat16",
425
+ "shape": [
426
+ 2048,
427
+ 5632
428
+ ],
429
+ "offset": 0,
430
+ "length": 11534336
431
+ },
432
+ "model.layers.13.mlp.gate_proj.weight": {
433
+ "dtype": "torch.bfloat16",
434
+ "shape": [
435
+ 5632,
436
+ 2048
437
+ ],
438
+ "offset": 0,
439
+ "length": 11534336
440
+ },
441
+ "model.layers.13.mlp.up_proj.weight": {
442
+ "dtype": "torch.bfloat16",
443
+ "shape": [
444
+ 5632,
445
+ 2048
446
+ ],
447
+ "offset": 0,
448
+ "length": 11534336
449
+ },
450
+ "model.layers.13.post_attention_layernorm.weight": {
451
+ "dtype": "torch.bfloat16",
452
+ "shape": [
453
+ 2048
454
+ ],
455
+ "offset": 0,
456
+ "length": 2048
457
+ },
458
+ "model.layers.13.self_attn.k_proj.weight": {
459
+ "dtype": "torch.bfloat16",
460
+ "shape": [
461
+ 256,
462
+ 2048
463
+ ],
464
+ "offset": 0,
465
+ "length": 524288
466
+ },
467
+ "model.layers.13.self_attn.o_proj.weight": {
468
+ "dtype": "torch.bfloat16",
469
+ "shape": [
470
+ 2048,
471
+ 2048
472
+ ],
473
+ "offset": 0,
474
+ "length": 4194304
475
+ },
476
+ "model.layers.13.self_attn.q_proj.weight": {
477
+ "dtype": "torch.bfloat16",
478
+ "shape": [
479
+ 2048,
480
+ 2048
481
+ ],
482
+ "offset": 0,
483
+ "length": 4194304
484
+ },
485
+ "model.layers.13.self_attn.v_proj.weight": {
486
+ "dtype": "torch.bfloat16",
487
+ "shape": [
488
+ 256,
489
+ 2048
490
+ ],
491
+ "offset": 0,
492
+ "length": 524288
493
+ },
494
+ "model.layers.14.input_layernorm.weight": {
495
+ "dtype": "torch.bfloat16",
496
+ "shape": [
497
+ 2048
498
+ ],
499
+ "offset": 0,
500
+ "length": 2048
501
+ },
502
+ "model.layers.14.mlp.down_proj.weight": {
503
+ "dtype": "torch.bfloat16",
504
+ "shape": [
505
+ 2048,
506
+ 5632
507
+ ],
508
+ "offset": 0,
509
+ "length": 11534336
510
+ },
511
+ "model.layers.14.mlp.gate_proj.weight": {
512
+ "dtype": "torch.bfloat16",
513
+ "shape": [
514
+ 5632,
515
+ 2048
516
+ ],
517
+ "offset": 0,
518
+ "length": 11534336
519
+ },
520
+ "model.layers.14.mlp.up_proj.weight": {
521
+ "dtype": "torch.bfloat16",
522
+ "shape": [
523
+ 5632,
524
+ 2048
525
+ ],
526
+ "offset": 0,
527
+ "length": 11534336
528
+ },
529
+ "model.layers.14.post_attention_layernorm.weight": {
530
+ "dtype": "torch.bfloat16",
531
+ "shape": [
532
+ 2048
533
+ ],
534
+ "offset": 0,
535
+ "length": 2048
536
+ },
537
+ "model.layers.14.self_attn.k_proj.weight": {
538
+ "dtype": "torch.bfloat16",
539
+ "shape": [
540
+ 256,
541
+ 2048
542
+ ],
543
+ "offset": 0,
544
+ "length": 524288
545
+ },
546
+ "model.layers.14.self_attn.o_proj.weight": {
547
+ "dtype": "torch.bfloat16",
548
+ "shape": [
549
+ 2048,
550
+ 2048
551
+ ],
552
+ "offset": 0,
553
+ "length": 4194304
554
+ },
555
+ "model.layers.14.self_attn.q_proj.weight": {
556
+ "dtype": "torch.bfloat16",
557
+ "shape": [
558
+ 2048,
559
+ 2048
560
+ ],
561
+ "offset": 0,
562
+ "length": 4194304
563
+ },
564
+ "model.layers.14.self_attn.v_proj.weight": {
565
+ "dtype": "torch.bfloat16",
566
+ "shape": [
567
+ 256,
568
+ 2048
569
+ ],
570
+ "offset": 0,
571
+ "length": 524288
572
+ },
573
+ "model.layers.15.input_layernorm.weight": {
574
+ "dtype": "torch.bfloat16",
575
+ "shape": [
576
+ 2048
577
+ ],
578
+ "offset": 0,
579
+ "length": 2048
580
+ },
581
+ "model.layers.15.mlp.down_proj.weight": {
582
+ "dtype": "torch.bfloat16",
583
+ "shape": [
584
+ 2048,
585
+ 5632
586
+ ],
587
+ "offset": 0,
588
+ "length": 11534336
589
+ },
590
+ "model.layers.15.mlp.gate_proj.weight": {
591
+ "dtype": "torch.bfloat16",
592
+ "shape": [
593
+ 5632,
594
+ 2048
595
+ ],
596
+ "offset": 0,
597
+ "length": 11534336
598
+ },
599
+ "model.layers.15.mlp.up_proj.weight": {
600
+ "dtype": "torch.bfloat16",
601
+ "shape": [
602
+ 5632,
603
+ 2048
604
+ ],
605
+ "offset": 0,
606
+ "length": 11534336
607
+ },
608
+ "model.layers.15.post_attention_layernorm.weight": {
609
+ "dtype": "torch.bfloat16",
610
+ "shape": [
611
+ 2048
612
+ ],
613
+ "offset": 0,
614
+ "length": 2048
615
+ },
616
+ "model.layers.15.self_attn.k_proj.weight": {
617
+ "dtype": "torch.bfloat16",
618
+ "shape": [
619
+ 256,
620
+ 2048
621
+ ],
622
+ "offset": 0,
623
+ "length": 524288
624
+ },
625
+ "model.layers.15.self_attn.o_proj.weight": {
626
+ "dtype": "torch.bfloat16",
627
+ "shape": [
628
+ 2048,
629
+ 2048
630
+ ],
631
+ "offset": 0,
632
+ "length": 4194304
633
+ },
634
+ "model.layers.15.self_attn.q_proj.weight": {
635
+ "dtype": "torch.bfloat16",
636
+ "shape": [
637
+ 2048,
638
+ 2048
639
+ ],
640
+ "offset": 0,
641
+ "length": 4194304
642
+ },
643
+ "model.layers.15.self_attn.v_proj.weight": {
644
+ "dtype": "torch.bfloat16",
645
+ "shape": [
646
+ 256,
647
+ 2048
648
+ ],
649
+ "offset": 0,
650
+ "length": 524288
651
+ },
652
+ "model.layers.16.input_layernorm.weight": {
653
+ "dtype": "torch.bfloat16",
654
+ "shape": [
655
+ 2048
656
+ ],
657
+ "offset": 0,
658
+ "length": 2048
659
+ },
660
+ "model.layers.16.mlp.down_proj.weight": {
661
+ "dtype": "torch.bfloat16",
662
+ "shape": [
663
+ 2048,
664
+ 5632
665
+ ],
666
+ "offset": 0,
667
+ "length": 11534336
668
+ },
669
+ "model.layers.16.mlp.gate_proj.weight": {
670
+ "dtype": "torch.bfloat16",
671
+ "shape": [
672
+ 5632,
673
+ 2048
674
+ ],
675
+ "offset": 0,
676
+ "length": 11534336
677
+ },
678
+ "model.layers.16.mlp.up_proj.weight": {
679
+ "dtype": "torch.bfloat16",
680
+ "shape": [
681
+ 5632,
682
+ 2048
683
+ ],
684
+ "offset": 0,
685
+ "length": 11534336
686
+ },
687
+ "model.layers.16.post_attention_layernorm.weight": {
688
+ "dtype": "torch.bfloat16",
689
+ "shape": [
690
+ 2048
691
+ ],
692
+ "offset": 0,
693
+ "length": 2048
694
+ },
695
+ "model.layers.16.self_attn.k_proj.weight": {
696
+ "dtype": "torch.bfloat16",
697
+ "shape": [
698
+ 256,
699
+ 2048
700
+ ],
701
+ "offset": 0,
702
+ "length": 524288
703
+ },
704
+ "model.layers.16.self_attn.o_proj.weight": {
705
+ "dtype": "torch.bfloat16",
706
+ "shape": [
707
+ 2048,
708
+ 2048
709
+ ],
710
+ "offset": 0,
711
+ "length": 4194304
712
+ },
713
+ "model.layers.16.self_attn.q_proj.weight": {
714
+ "dtype": "torch.bfloat16",
715
+ "shape": [
716
+ 2048,
717
+ 2048
718
+ ],
719
+ "offset": 0,
720
+ "length": 4194304
721
+ },
722
+ "model.layers.16.self_attn.v_proj.weight": {
723
+ "dtype": "torch.bfloat16",
724
+ "shape": [
725
+ 256,
726
+ 2048
727
+ ],
728
+ "offset": 0,
729
+ "length": 524288
730
+ },
731
+ "model.layers.17.input_layernorm.weight": {
732
+ "dtype": "torch.bfloat16",
733
+ "shape": [
734
+ 2048
735
+ ],
736
+ "offset": 0,
737
+ "length": 2048
738
+ },
739
+ "model.layers.17.mlp.down_proj.weight": {
740
+ "dtype": "torch.bfloat16",
741
+ "shape": [
742
+ 2048,
743
+ 5632
744
+ ],
745
+ "offset": 0,
746
+ "length": 11534336
747
+ },
748
+ "model.layers.17.mlp.gate_proj.weight": {
749
+ "dtype": "torch.bfloat16",
750
+ "shape": [
751
+ 5632,
752
+ 2048
753
+ ],
754
+ "offset": 0,
755
+ "length": 11534336
756
+ },
757
+ "model.layers.17.mlp.up_proj.weight": {
758
+ "dtype": "torch.bfloat16",
759
+ "shape": [
760
+ 5632,
761
+ 2048
762
+ ],
763
+ "offset": 0,
764
+ "length": 11534336
765
+ },
766
+ "model.layers.17.post_attention_layernorm.weight": {
767
+ "dtype": "torch.bfloat16",
768
+ "shape": [
769
+ 2048
770
+ ],
771
+ "offset": 0,
772
+ "length": 2048
773
+ },
774
+ "model.layers.17.self_attn.k_proj.weight": {
775
+ "dtype": "torch.bfloat16",
776
+ "shape": [
777
+ 256,
778
+ 2048
779
+ ],
780
+ "offset": 0,
781
+ "length": 524288
782
+ },
783
+ "model.layers.17.self_attn.o_proj.weight": {
784
+ "dtype": "torch.bfloat16",
785
+ "shape": [
786
+ 2048,
787
+ 2048
788
+ ],
789
+ "offset": 0,
790
+ "length": 4194304
791
+ },
792
+ "model.layers.17.self_attn.q_proj.weight": {
793
+ "dtype": "torch.bfloat16",
794
+ "shape": [
795
+ 2048,
796
+ 2048
797
+ ],
798
+ "offset": 0,
799
+ "length": 4194304
800
+ },
801
+ "model.layers.17.self_attn.v_proj.weight": {
802
+ "dtype": "torch.bfloat16",
803
+ "shape": [
804
+ 256,
805
+ 2048
806
+ ],
807
+ "offset": 0,
808
+ "length": 524288
809
+ },
810
+ "model.layers.18.input_layernorm.weight": {
811
+ "dtype": "torch.bfloat16",
812
+ "shape": [
813
+ 2048
814
+ ],
815
+ "offset": 0,
816
+ "length": 2048
817
+ },
818
+ "model.layers.18.mlp.down_proj.weight": {
819
+ "dtype": "torch.bfloat16",
820
+ "shape": [
821
+ 2048,
822
+ 5632
823
+ ],
824
+ "offset": 0,
825
+ "length": 11534336
826
+ },
827
+ "model.layers.18.mlp.gate_proj.weight": {
828
+ "dtype": "torch.bfloat16",
829
+ "shape": [
830
+ 5632,
831
+ 2048
832
+ ],
833
+ "offset": 0,
834
+ "length": 11534336
835
+ },
836
+ "model.layers.18.mlp.up_proj.weight": {
837
+ "dtype": "torch.bfloat16",
838
+ "shape": [
839
+ 5632,
840
+ 2048
841
+ ],
842
+ "offset": 0,
843
+ "length": 11534336
844
+ },
845
+ "model.layers.18.post_attention_layernorm.weight": {
846
+ "dtype": "torch.bfloat16",
847
+ "shape": [
848
+ 2048
849
+ ],
850
+ "offset": 0,
851
+ "length": 2048
852
+ },
853
+ "model.layers.18.self_attn.k_proj.weight": {
854
+ "dtype": "torch.bfloat16",
855
+ "shape": [
856
+ 256,
857
+ 2048
858
+ ],
859
+ "offset": 0,
860
+ "length": 524288
861
+ },
862
+ "model.layers.18.self_attn.o_proj.weight": {
863
+ "dtype": "torch.bfloat16",
864
+ "shape": [
865
+ 2048,
866
+ 2048
867
+ ],
868
+ "offset": 0,
869
+ "length": 4194304
870
+ },
871
+ "model.layers.18.self_attn.q_proj.weight": {
872
+ "dtype": "torch.bfloat16",
873
+ "shape": [
874
+ 2048,
875
+ 2048
876
+ ],
877
+ "offset": 0,
878
+ "length": 4194304
879
+ },
880
+ "model.layers.18.self_attn.v_proj.weight": {
881
+ "dtype": "torch.bfloat16",
882
+ "shape": [
883
+ 256,
884
+ 2048
885
+ ],
886
+ "offset": 0,
887
+ "length": 524288
888
+ },
889
+ "model.layers.19.input_layernorm.weight": {
890
+ "dtype": "torch.bfloat16",
891
+ "shape": [
892
+ 2048
893
+ ],
894
+ "offset": 0,
895
+ "length": 2048
896
+ },
897
+ "model.layers.19.mlp.down_proj.weight": {
898
+ "dtype": "torch.bfloat16",
899
+ "shape": [
900
+ 2048,
901
+ 5632
902
+ ],
903
+ "offset": 0,
904
+ "length": 11534336
905
+ },
906
+ "model.layers.19.mlp.gate_proj.weight": {
907
+ "dtype": "torch.bfloat16",
908
+ "shape": [
909
+ 5632,
910
+ 2048
911
+ ],
912
+ "offset": 0,
913
+ "length": 11534336
914
+ },
915
+ "model.layers.19.mlp.up_proj.weight": {
916
+ "dtype": "torch.bfloat16",
917
+ "shape": [
918
+ 5632,
919
+ 2048
920
+ ],
921
+ "offset": 0,
922
+ "length": 11534336
923
+ },
924
+ "model.layers.19.post_attention_layernorm.weight": {
925
+ "dtype": "torch.bfloat16",
926
+ "shape": [
927
+ 2048
928
+ ],
929
+ "offset": 0,
930
+ "length": 2048
931
+ },
932
+ "model.layers.19.self_attn.k_proj.weight": {
933
+ "dtype": "torch.bfloat16",
934
+ "shape": [
935
+ 256,
936
+ 2048
937
+ ],
938
+ "offset": 0,
939
+ "length": 524288
940
+ },
941
+ "model.layers.19.self_attn.o_proj.weight": {
942
+ "dtype": "torch.bfloat16",
943
+ "shape": [
944
+ 2048,
945
+ 2048
946
+ ],
947
+ "offset": 0,
948
+ "length": 4194304
949
+ },
950
+ "model.layers.19.self_attn.q_proj.weight": {
951
+ "dtype": "torch.bfloat16",
952
+ "shape": [
953
+ 2048,
954
+ 2048
955
+ ],
956
+ "offset": 0,
957
+ "length": 4194304
958
+ },
959
+ "model.layers.19.self_attn.v_proj.weight": {
960
+ "dtype": "torch.bfloat16",
961
+ "shape": [
962
+ 256,
963
+ 2048
964
+ ],
965
+ "offset": 0,
966
+ "length": 524288
967
+ },
968
+ "model.layers.2.input_layernorm.weight": {
969
+ "dtype": "torch.bfloat16",
970
+ "shape": [
971
+ 2048
972
+ ],
973
+ "offset": 0,
974
+ "length": 2048
975
+ },
976
+ "model.layers.2.mlp.down_proj.weight": {
977
+ "dtype": "torch.bfloat16",
978
+ "shape": [
979
+ 2048,
980
+ 5632
981
+ ],
982
+ "offset": 0,
983
+ "length": 11534336
984
+ },
985
+ "model.layers.2.mlp.gate_proj.weight": {
986
+ "dtype": "torch.bfloat16",
987
+ "shape": [
988
+ 5632,
989
+ 2048
990
+ ],
991
+ "offset": 0,
992
+ "length": 11534336
993
+ },
994
+ "model.layers.2.mlp.up_proj.weight": {
995
+ "dtype": "torch.bfloat16",
996
+ "shape": [
997
+ 5632,
998
+ 2048
999
+ ],
1000
+ "offset": 0,
1001
+ "length": 11534336
1002
+ },
1003
+ "model.layers.2.post_attention_layernorm.weight": {
1004
+ "dtype": "torch.bfloat16",
1005
+ "shape": [
1006
+ 2048
1007
+ ],
1008
+ "offset": 0,
1009
+ "length": 2048
1010
+ },
1011
+ "model.layers.2.self_attn.k_proj.weight": {
1012
+ "dtype": "torch.bfloat16",
1013
+ "shape": [
1014
+ 256,
1015
+ 2048
1016
+ ],
1017
+ "offset": 0,
1018
+ "length": 524288
1019
+ },
1020
+ "model.layers.2.self_attn.o_proj.weight": {
1021
+ "dtype": "torch.bfloat16",
1022
+ "shape": [
1023
+ 2048,
1024
+ 2048
1025
+ ],
1026
+ "offset": 0,
1027
+ "length": 4194304
1028
+ },
1029
+ "model.layers.2.self_attn.q_proj.weight": {
1030
+ "dtype": "torch.bfloat16",
1031
+ "shape": [
1032
+ 2048,
1033
+ 2048
1034
+ ],
1035
+ "offset": 0,
1036
+ "length": 4194304
1037
+ },
1038
+ "model.layers.2.self_attn.v_proj.weight": {
1039
+ "dtype": "torch.bfloat16",
1040
+ "shape": [
1041
+ 256,
1042
+ 2048
1043
+ ],
1044
+ "offset": 0,
1045
+ "length": 524288
1046
+ },
1047
+ "model.layers.20.input_layernorm.weight": {
1048
+ "dtype": "torch.bfloat16",
1049
+ "shape": [
1050
+ 2048
1051
+ ],
1052
+ "offset": 0,
1053
+ "length": 2048
1054
+ },
1055
+ "model.layers.20.mlp.down_proj.weight": {
1056
+ "dtype": "torch.bfloat16",
1057
+ "shape": [
1058
+ 2048,
1059
+ 5632
1060
+ ],
1061
+ "offset": 0,
1062
+ "length": 11534336
1063
+ },
1064
+ "model.layers.20.mlp.gate_proj.weight": {
1065
+ "dtype": "torch.bfloat16",
1066
+ "shape": [
1067
+ 5632,
1068
+ 2048
1069
+ ],
1070
+ "offset": 0,
1071
+ "length": 11534336
1072
+ },
1073
+ "model.layers.20.mlp.up_proj.weight": {
1074
+ "dtype": "torch.bfloat16",
1075
+ "shape": [
1076
+ 5632,
1077
+ 2048
1078
+ ],
1079
+ "offset": 0,
1080
+ "length": 11534336
1081
+ },
1082
+ "model.layers.20.post_attention_layernorm.weight": {
1083
+ "dtype": "torch.bfloat16",
1084
+ "shape": [
1085
+ 2048
1086
+ ],
1087
+ "offset": 0,
1088
+ "length": 2048
1089
+ },
1090
+ "model.layers.20.self_attn.k_proj.weight": {
1091
+ "dtype": "torch.bfloat16",
1092
+ "shape": [
1093
+ 256,
1094
+ 2048
1095
+ ],
1096
+ "offset": 0,
1097
+ "length": 524288
1098
+ },
1099
+ "model.layers.20.self_attn.o_proj.weight": {
1100
+ "dtype": "torch.bfloat16",
1101
+ "shape": [
1102
+ 2048,
1103
+ 2048
1104
+ ],
1105
+ "offset": 0,
1106
+ "length": 4194304
1107
+ },
1108
+ "model.layers.20.self_attn.q_proj.weight": {
1109
+ "dtype": "torch.bfloat16",
1110
+ "shape": [
1111
+ 2048,
1112
+ 2048
1113
+ ],
1114
+ "offset": 0,
1115
+ "length": 4194304
1116
+ },
1117
+ "model.layers.20.self_attn.v_proj.weight": {
1118
+ "dtype": "torch.bfloat16",
1119
+ "shape": [
1120
+ 256,
1121
+ 2048
1122
+ ],
1123
+ "offset": 0,
1124
+ "length": 524288
1125
+ },
1126
+ "model.layers.21.input_layernorm.weight": {
1127
+ "dtype": "torch.bfloat16",
1128
+ "shape": [
1129
+ 2048
1130
+ ],
1131
+ "offset": 0,
1132
+ "length": 2048
1133
+ },
1134
+ "model.layers.21.mlp.down_proj.weight": {
1135
+ "dtype": "torch.bfloat16",
1136
+ "shape": [
1137
+ 2048,
1138
+ 5632
1139
+ ],
1140
+ "offset": 0,
1141
+ "length": 11534336
1142
+ },
1143
+ "model.layers.21.mlp.gate_proj.weight": {
1144
+ "dtype": "torch.bfloat16",
1145
+ "shape": [
1146
+ 5632,
1147
+ 2048
1148
+ ],
1149
+ "offset": 0,
1150
+ "length": 11534336
1151
+ },
1152
+ "model.layers.21.mlp.up_proj.weight": {
1153
+ "dtype": "torch.bfloat16",
1154
+ "shape": [
1155
+ 5632,
1156
+ 2048
1157
+ ],
1158
+ "offset": 0,
1159
+ "length": 11534336
1160
+ },
1161
+ "model.layers.21.post_attention_layernorm.weight": {
1162
+ "dtype": "torch.bfloat16",
1163
+ "shape": [
1164
+ 2048
1165
+ ],
1166
+ "offset": 0,
1167
+ "length": 2048
1168
+ },
1169
+ "model.layers.21.self_attn.k_proj.weight": {
1170
+ "dtype": "torch.bfloat16",
1171
+ "shape": [
1172
+ 256,
1173
+ 2048
1174
+ ],
1175
+ "offset": 0,
1176
+ "length": 524288
1177
+ },
1178
+ "model.layers.21.self_attn.o_proj.weight": {
1179
+ "dtype": "torch.bfloat16",
1180
+ "shape": [
1181
+ 2048,
1182
+ 2048
1183
+ ],
1184
+ "offset": 0,
1185
+ "length": 4194304
1186
+ },
1187
+ "model.layers.21.self_attn.q_proj.weight": {
1188
+ "dtype": "torch.bfloat16",
1189
+ "shape": [
1190
+ 2048,
1191
+ 2048
1192
+ ],
1193
+ "offset": 0,
1194
+ "length": 4194304
1195
+ },
1196
+ "model.layers.21.self_attn.v_proj.weight": {
1197
+ "dtype": "torch.bfloat16",
1198
+ "shape": [
1199
+ 256,
1200
+ 2048
1201
+ ],
1202
+ "offset": 0,
1203
+ "length": 524288
1204
+ },
1205
+ "model.layers.3.input_layernorm.weight": {
1206
+ "dtype": "torch.bfloat16",
1207
+ "shape": [
1208
+ 2048
1209
+ ],
1210
+ "offset": 0,
1211
+ "length": 2048
1212
+ },
1213
+ "model.layers.3.mlp.down_proj.weight": {
1214
+ "dtype": "torch.bfloat16",
1215
+ "shape": [
1216
+ 2048,
1217
+ 5632
1218
+ ],
1219
+ "offset": 0,
1220
+ "length": 11534336
1221
+ },
1222
+ "model.layers.3.mlp.gate_proj.weight": {
1223
+ "dtype": "torch.bfloat16",
1224
+ "shape": [
1225
+ 5632,
1226
+ 2048
1227
+ ],
1228
+ "offset": 0,
1229
+ "length": 11534336
1230
+ },
1231
+ "model.layers.3.mlp.up_proj.weight": {
1232
+ "dtype": "torch.bfloat16",
1233
+ "shape": [
1234
+ 5632,
1235
+ 2048
1236
+ ],
1237
+ "offset": 0,
1238
+ "length": 11534336
1239
+ },
1240
+ "model.layers.3.post_attention_layernorm.weight": {
1241
+ "dtype": "torch.bfloat16",
1242
+ "shape": [
1243
+ 2048
1244
+ ],
1245
+ "offset": 0,
1246
+ "length": 2048
1247
+ },
1248
+ "model.layers.3.self_attn.k_proj.weight": {
1249
+ "dtype": "torch.bfloat16",
1250
+ "shape": [
1251
+ 256,
1252
+ 2048
1253
+ ],
1254
+ "offset": 0,
1255
+ "length": 524288
1256
+ },
1257
+ "model.layers.3.self_attn.o_proj.weight": {
1258
+ "dtype": "torch.bfloat16",
1259
+ "shape": [
1260
+ 2048,
1261
+ 2048
1262
+ ],
1263
+ "offset": 0,
1264
+ "length": 4194304
1265
+ },
1266
+ "model.layers.3.self_attn.q_proj.weight": {
1267
+ "dtype": "torch.bfloat16",
1268
+ "shape": [
1269
+ 2048,
1270
+ 2048
1271
+ ],
1272
+ "offset": 0,
1273
+ "length": 4194304
1274
+ },
1275
+ "model.layers.3.self_attn.v_proj.weight": {
1276
+ "dtype": "torch.bfloat16",
1277
+ "shape": [
1278
+ 256,
1279
+ 2048
1280
+ ],
1281
+ "offset": 0,
1282
+ "length": 524288
1283
+ },
1284
+ "model.layers.4.input_layernorm.weight": {
1285
+ "dtype": "torch.bfloat16",
1286
+ "shape": [
1287
+ 2048
1288
+ ],
1289
+ "offset": 0,
1290
+ "length": 2048
1291
+ },
1292
+ "model.layers.4.mlp.down_proj.weight": {
1293
+ "dtype": "torch.bfloat16",
1294
+ "shape": [
1295
+ 2048,
1296
+ 5632
1297
+ ],
1298
+ "offset": 0,
1299
+ "length": 11534336
1300
+ },
1301
+ "model.layers.4.mlp.gate_proj.weight": {
1302
+ "dtype": "torch.bfloat16",
1303
+ "shape": [
1304
+ 5632,
1305
+ 2048
1306
+ ],
1307
+ "offset": 0,
1308
+ "length": 11534336
1309
+ },
1310
+ "model.layers.4.mlp.up_proj.weight": {
1311
+ "dtype": "torch.bfloat16",
1312
+ "shape": [
1313
+ 5632,
1314
+ 2048
1315
+ ],
1316
+ "offset": 0,
1317
+ "length": 11534336
1318
+ },
1319
+ "model.layers.4.post_attention_layernorm.weight": {
1320
+ "dtype": "torch.bfloat16",
1321
+ "shape": [
1322
+ 2048
1323
+ ],
1324
+ "offset": 0,
1325
+ "length": 2048
1326
+ },
1327
+ "model.layers.4.self_attn.k_proj.weight": {
1328
+ "dtype": "torch.bfloat16",
1329
+ "shape": [
1330
+ 256,
1331
+ 2048
1332
+ ],
1333
+ "offset": 0,
1334
+ "length": 524288
1335
+ },
1336
+ "model.layers.4.self_attn.o_proj.weight": {
1337
+ "dtype": "torch.bfloat16",
1338
+ "shape": [
1339
+ 2048,
1340
+ 2048
1341
+ ],
1342
+ "offset": 0,
1343
+ "length": 4194304
1344
+ },
1345
+ "model.layers.4.self_attn.q_proj.weight": {
1346
+ "dtype": "torch.bfloat16",
1347
+ "shape": [
1348
+ 2048,
1349
+ 2048
1350
+ ],
1351
+ "offset": 0,
1352
+ "length": 4194304
1353
+ },
1354
+ "model.layers.4.self_attn.v_proj.weight": {
1355
+ "dtype": "torch.bfloat16",
1356
+ "shape": [
1357
+ 256,
1358
+ 2048
1359
+ ],
1360
+ "offset": 0,
1361
+ "length": 524288
1362
+ },
1363
+ "model.layers.5.input_layernorm.weight": {
1364
+ "dtype": "torch.bfloat16",
1365
+ "shape": [
1366
+ 2048
1367
+ ],
1368
+ "offset": 0,
1369
+ "length": 2048
1370
+ },
1371
+ "model.layers.5.mlp.down_proj.weight": {
1372
+ "dtype": "torch.bfloat16",
1373
+ "shape": [
1374
+ 2048,
1375
+ 5632
1376
+ ],
1377
+ "offset": 0,
1378
+ "length": 11534336
1379
+ },
1380
+ "model.layers.5.mlp.gate_proj.weight": {
1381
+ "dtype": "torch.bfloat16",
1382
+ "shape": [
1383
+ 5632,
1384
+ 2048
1385
+ ],
1386
+ "offset": 0,
1387
+ "length": 11534336
1388
+ },
1389
+ "model.layers.5.mlp.up_proj.weight": {
1390
+ "dtype": "torch.bfloat16",
1391
+ "shape": [
1392
+ 5632,
1393
+ 2048
1394
+ ],
1395
+ "offset": 0,
1396
+ "length": 11534336
1397
+ },
1398
+ "model.layers.5.post_attention_layernorm.weight": {
1399
+ "dtype": "torch.bfloat16",
1400
+ "shape": [
1401
+ 2048
1402
+ ],
1403
+ "offset": 0,
1404
+ "length": 2048
1405
+ },
1406
+ "model.layers.5.self_attn.k_proj.weight": {
1407
+ "dtype": "torch.bfloat16",
1408
+ "shape": [
1409
+ 256,
1410
+ 2048
1411
+ ],
1412
+ "offset": 0,
1413
+ "length": 524288
1414
+ },
1415
+ "model.layers.5.self_attn.o_proj.weight": {
1416
+ "dtype": "torch.bfloat16",
1417
+ "shape": [
1418
+ 2048,
1419
+ 2048
1420
+ ],
1421
+ "offset": 0,
1422
+ "length": 4194304
1423
+ },
1424
+ "model.layers.5.self_attn.q_proj.weight": {
1425
+ "dtype": "torch.bfloat16",
1426
+ "shape": [
1427
+ 2048,
1428
+ 2048
1429
+ ],
1430
+ "offset": 0,
1431
+ "length": 4194304
1432
+ },
1433
+ "model.layers.5.self_attn.v_proj.weight": {
1434
+ "dtype": "torch.bfloat16",
1435
+ "shape": [
1436
+ 256,
1437
+ 2048
1438
+ ],
1439
+ "offset": 0,
1440
+ "length": 524288
1441
+ },
1442
+ "model.layers.6.input_layernorm.weight": {
1443
+ "dtype": "torch.bfloat16",
1444
+ "shape": [
1445
+ 2048
1446
+ ],
1447
+ "offset": 0,
1448
+ "length": 2048
1449
+ },
1450
+ "model.layers.6.mlp.down_proj.weight": {
1451
+ "dtype": "torch.bfloat16",
1452
+ "shape": [
1453
+ 2048,
1454
+ 5632
1455
+ ],
1456
+ "offset": 0,
1457
+ "length": 11534336
1458
+ },
1459
+ "model.layers.6.mlp.gate_proj.weight": {
1460
+ "dtype": "torch.bfloat16",
1461
+ "shape": [
1462
+ 5632,
1463
+ 2048
1464
+ ],
1465
+ "offset": 0,
1466
+ "length": 11534336
1467
+ },
1468
+ "model.layers.6.mlp.up_proj.weight": {
1469
+ "dtype": "torch.bfloat16",
1470
+ "shape": [
1471
+ 5632,
1472
+ 2048
1473
+ ],
1474
+ "offset": 0,
1475
+ "length": 11534336
1476
+ },
1477
+ "model.layers.6.post_attention_layernorm.weight": {
1478
+ "dtype": "torch.bfloat16",
1479
+ "shape": [
1480
+ 2048
1481
+ ],
1482
+ "offset": 0,
1483
+ "length": 2048
1484
+ },
1485
+ "model.layers.6.self_attn.k_proj.weight": {
1486
+ "dtype": "torch.bfloat16",
1487
+ "shape": [
1488
+ 256,
1489
+ 2048
1490
+ ],
1491
+ "offset": 0,
1492
+ "length": 524288
1493
+ },
1494
+ "model.layers.6.self_attn.o_proj.weight": {
1495
+ "dtype": "torch.bfloat16",
1496
+ "shape": [
1497
+ 2048,
1498
+ 2048
1499
+ ],
1500
+ "offset": 0,
1501
+ "length": 4194304
1502
+ },
1503
+ "model.layers.6.self_attn.q_proj.weight": {
1504
+ "dtype": "torch.bfloat16",
1505
+ "shape": [
1506
+ 2048,
1507
+ 2048
1508
+ ],
1509
+ "offset": 0,
1510
+ "length": 4194304
1511
+ },
1512
+ "model.layers.6.self_attn.v_proj.weight": {
1513
+ "dtype": "torch.bfloat16",
1514
+ "shape": [
1515
+ 256,
1516
+ 2048
1517
+ ],
1518
+ "offset": 0,
1519
+ "length": 524288
1520
+ },
1521
+ "model.layers.7.input_layernorm.weight": {
1522
+ "dtype": "torch.bfloat16",
1523
+ "shape": [
1524
+ 2048
1525
+ ],
1526
+ "offset": 0,
1527
+ "length": 2048
1528
+ },
1529
+ "model.layers.7.mlp.down_proj.weight": {
1530
+ "dtype": "torch.bfloat16",
1531
+ "shape": [
1532
+ 2048,
1533
+ 5632
1534
+ ],
1535
+ "offset": 0,
1536
+ "length": 11534336
1537
+ },
1538
+ "model.layers.7.mlp.gate_proj.weight": {
1539
+ "dtype": "torch.bfloat16",
1540
+ "shape": [
1541
+ 5632,
1542
+ 2048
1543
+ ],
1544
+ "offset": 0,
1545
+ "length": 11534336
1546
+ },
1547
+ "model.layers.7.mlp.up_proj.weight": {
1548
+ "dtype": "torch.bfloat16",
1549
+ "shape": [
1550
+ 5632,
1551
+ 2048
1552
+ ],
1553
+ "offset": 0,
1554
+ "length": 11534336
1555
+ },
1556
+ "model.layers.7.post_attention_layernorm.weight": {
1557
+ "dtype": "torch.bfloat16",
1558
+ "shape": [
1559
+ 2048
1560
+ ],
1561
+ "offset": 0,
1562
+ "length": 2048
1563
+ },
1564
+ "model.layers.7.self_attn.k_proj.weight": {
1565
+ "dtype": "torch.bfloat16",
1566
+ "shape": [
1567
+ 256,
1568
+ 2048
1569
+ ],
1570
+ "offset": 0,
1571
+ "length": 524288
1572
+ },
1573
+ "model.layers.7.self_attn.o_proj.weight": {
1574
+ "dtype": "torch.bfloat16",
1575
+ "shape": [
1576
+ 2048,
1577
+ 2048
1578
+ ],
1579
+ "offset": 0,
1580
+ "length": 4194304
1581
+ },
1582
+ "model.layers.7.self_attn.q_proj.weight": {
1583
+ "dtype": "torch.bfloat16",
1584
+ "shape": [
1585
+ 2048,
1586
+ 2048
1587
+ ],
1588
+ "offset": 0,
1589
+ "length": 4194304
1590
+ },
1591
+ "model.layers.7.self_attn.v_proj.weight": {
1592
+ "dtype": "torch.bfloat16",
1593
+ "shape": [
1594
+ 256,
1595
+ 2048
1596
+ ],
1597
+ "offset": 0,
1598
+ "length": 524288
1599
+ },
1600
+ "model.layers.8.input_layernorm.weight": {
1601
+ "dtype": "torch.bfloat16",
1602
+ "shape": [
1603
+ 2048
1604
+ ],
1605
+ "offset": 0,
1606
+ "length": 2048
1607
+ },
1608
+ "model.layers.8.mlp.down_proj.weight": {
1609
+ "dtype": "torch.bfloat16",
1610
+ "shape": [
1611
+ 2048,
1612
+ 5632
1613
+ ],
1614
+ "offset": 0,
1615
+ "length": 11534336
1616
+ },
1617
+ "model.layers.8.mlp.gate_proj.weight": {
1618
+ "dtype": "torch.bfloat16",
1619
+ "shape": [
1620
+ 5632,
1621
+ 2048
1622
+ ],
1623
+ "offset": 0,
1624
+ "length": 11534336
1625
+ },
1626
+ "model.layers.8.mlp.up_proj.weight": {
1627
+ "dtype": "torch.bfloat16",
1628
+ "shape": [
1629
+ 5632,
1630
+ 2048
1631
+ ],
1632
+ "offset": 0,
1633
+ "length": 11534336
1634
+ },
1635
+ "model.layers.8.post_attention_layernorm.weight": {
1636
+ "dtype": "torch.bfloat16",
1637
+ "shape": [
1638
+ 2048
1639
+ ],
1640
+ "offset": 0,
1641
+ "length": 2048
1642
+ },
1643
+ "model.layers.8.self_attn.k_proj.weight": {
1644
+ "dtype": "torch.bfloat16",
1645
+ "shape": [
1646
+ 256,
1647
+ 2048
1648
+ ],
1649
+ "offset": 0,
1650
+ "length": 524288
1651
+ },
1652
+ "model.layers.8.self_attn.o_proj.weight": {
1653
+ "dtype": "torch.bfloat16",
1654
+ "shape": [
1655
+ 2048,
1656
+ 2048
1657
+ ],
1658
+ "offset": 0,
1659
+ "length": 4194304
1660
+ },
1661
+ "model.layers.8.self_attn.q_proj.weight": {
1662
+ "dtype": "torch.bfloat16",
1663
+ "shape": [
1664
+ 2048,
1665
+ 2048
1666
+ ],
1667
+ "offset": 0,
1668
+ "length": 4194304
1669
+ },
1670
+ "model.layers.8.self_attn.v_proj.weight": {
1671
+ "dtype": "torch.bfloat16",
1672
+ "shape": [
1673
+ 256,
1674
+ 2048
1675
+ ],
1676
+ "offset": 0,
1677
+ "length": 524288
1678
+ },
1679
+ "model.layers.9.input_layernorm.weight": {
1680
+ "dtype": "torch.bfloat16",
1681
+ "shape": [
1682
+ 2048
1683
+ ],
1684
+ "offset": 0,
1685
+ "length": 2048
1686
+ },
1687
+ "model.layers.9.mlp.down_proj.weight": {
1688
+ "dtype": "torch.bfloat16",
1689
+ "shape": [
1690
+ 2048,
1691
+ 5632
1692
+ ],
1693
+ "offset": 0,
1694
+ "length": 11534336
1695
+ },
1696
+ "model.layers.9.mlp.gate_proj.weight": {
1697
+ "dtype": "torch.bfloat16",
1698
+ "shape": [
1699
+ 5632,
1700
+ 2048
1701
+ ],
1702
+ "offset": 0,
1703
+ "length": 11534336
1704
+ },
1705
+ "model.layers.9.mlp.up_proj.weight": {
1706
+ "dtype": "torch.bfloat16",
1707
+ "shape": [
1708
+ 5632,
1709
+ 2048
1710
+ ],
1711
+ "offset": 0,
1712
+ "length": 11534336
1713
+ },
1714
+ "model.layers.9.post_attention_layernorm.weight": {
1715
+ "dtype": "torch.bfloat16",
1716
+ "shape": [
1717
+ 2048
1718
+ ],
1719
+ "offset": 0,
1720
+ "length": 2048
1721
+ },
1722
+ "model.layers.9.self_attn.k_proj.weight": {
1723
+ "dtype": "torch.bfloat16",
1724
+ "shape": [
1725
+ 256,
1726
+ 2048
1727
+ ],
1728
+ "offset": 0,
1729
+ "length": 524288
1730
+ },
1731
+ "model.layers.9.self_attn.o_proj.weight": {
1732
+ "dtype": "torch.bfloat16",
1733
+ "shape": [
1734
+ 2048,
1735
+ 2048
1736
+ ],
1737
+ "offset": 0,
1738
+ "length": 4194304
1739
+ },
1740
+ "model.layers.9.self_attn.q_proj.weight": {
1741
+ "dtype": "torch.bfloat16",
1742
+ "shape": [
1743
+ 2048,
1744
+ 2048
1745
+ ],
1746
+ "offset": 0,
1747
+ "length": 4194304
1748
+ },
1749
+ "model.layers.9.self_attn.v_proj.weight": {
1750
+ "dtype": "torch.bfloat16",
1751
+ "shape": [
1752
+ 256,
1753
+ 2048
1754
+ ],
1755
+ "offset": 0,
1756
+ "length": 524288
1757
+ },
1758
+ "model.norm.weight": {
1759
+ "dtype": "torch.bfloat16",
1760
+ "shape": [
1761
+ 2048
1762
+ ],
1763
+ "offset": 0,
1764
+ "length": 2048
1765
+ }
1766
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "</s>",
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
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
tokenizer_config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "<unk>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "<s>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "</s>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ }
27
+ },
28
+ "bos_token": "<s>",
29
+ "chat_template": "{% for message in messages %}\n{% if message['role'] == 'user' %}\n{{ '<|user|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'system' %}\n{{ '<|system|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'assistant' %}\n{{ '<|assistant|>\n' + message['content'] + eos_token }}\n{% endif %}\n{% if loop.last and add_generation_prompt %}\n{{ '<|assistant|>' }}\n{% endif %}\n{% endfor %}",
30
+ "clean_up_tokenization_spaces": false,
31
+ "eos_token": "</s>",
32
+ "legacy": false,
33
+ "model_max_length": 2048,
34
+ "pad_token": "</s>",
35
+ "padding_side": "right",
36
+ "sp_model_kwargs": {},
37
+ "tokenizer_class": "LlamaTokenizer",
38
+ "unk_token": "<unk>",
39
+ "use_default_system_prompt": false
40
+ }