Add files using upload-large-folder tool
Browse files- chat_template.jinja +91 -0
- config.json +73 -0
- generation_config.json +10 -0
- model-00001-of-00003.safetensors +3 -0
- model-00002-of-00003.safetensors +3 -0
- model-00003-of-00003.safetensors +3 -0
- model.safetensors.index.json +779 -0
- recipe.yaml +6 -0
- special_tokens_map.json +23 -0
- tokenizer.json +0 -0
- tokenizer_config.json +705 -0
chat_template.jinja
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- bos_token }}
|
| 2 |
+
|
| 3 |
+
{%- if not date_string is defined %}
|
| 4 |
+
{%- if strftime_now is defined %}
|
| 5 |
+
{%- set date_string = strftime_now('%d %b %Y') %}
|
| 6 |
+
{%- else %}
|
| 7 |
+
{%- set date_string = '04 Jul 2025' %}
|
| 8 |
+
{%- endif %}
|
| 9 |
+
{%- endif %}
|
| 10 |
+
|
| 11 |
+
{%- if messages[0].role == "system" %}
|
| 12 |
+
{%- set system_message = messages[0].content | trim %}
|
| 13 |
+
{%- set messages = messages[1:] %}
|
| 14 |
+
{%- endif %}
|
| 15 |
+
|
| 16 |
+
{{- '<|start_header_id|>system<|end_header_id|>\n\n' }}
|
| 17 |
+
{%- if tools is not none %}
|
| 18 |
+
{{- 'Environment: ipython\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
|
| 21 |
+
{{- 'Cutting Knowledge Date: December 2024\n' }}
|
| 22 |
+
{{- 'Today Date: ' + date_string + '\n\n' }}
|
| 23 |
+
{{- 'Mi:dm(믿:음)은 KT에서 개발한 AI 기반 어시스턴트이다. 너는 Mi:dm으로서 사용자에게 유용하고 안전한 응답을 제공해야 한다.\n\n' }}
|
| 24 |
+
{{- 'Mi:dm은 December 2024까지의 지식으로 학습되었으며 그 외의 지식을 묻는 경우에는 한계를 인정해야 한다.\n' }}
|
| 25 |
+
{{- '오늘 날짜는 ' + date_string + '임을 참고하여 응답을 제공한다.\n\n' }}
|
| 26 |
+
{{- '어시스턴트는 기본적으로 "한국어"를 사용한다. 사용자의 요청에 따라 생각하고 응답하는 언어는 달라질 수 있으며, 다른 요구사항이 없다면 입력 언어를 따라 응답하라.\n' }}
|
| 27 |
+
{{- '코드 작성 시에는 요구되는 언어의 소스코드로 작성해야 하며, STEM(과학, 기술, 공학, 수학) 분야의 전문 용어는 원문을 그대로 유지하여 출력한다.\n\n' }}
|
| 28 |
+
{{- 'Mi:dm은 사용자 친화적으로 답변을 제공해야 한다. 사용자의 요청이 없다면 기본적으로 경어체를 사용해야 한다.\n' }}
|
| 29 |
+
{{- '사용자의 요청에 따라 유용하고 관련성 있는 답변을 제공해야 한다. 이는 요청의 내용을 반영하여 이루어져야 한다.\n' }}
|
| 30 |
+
{{- '특히, 사용자가 특정 답변의 형태를 요구한 경우 해당 형태를 반드시 준수하여 응답을 제공한다.(예. JSON, SQL, 코드 등) 그렇지 않다면 응답을 제공하기 가장 적절한 형태로 제공한다.\n' }}
|
| 31 |
+
{{- '다양한 시각이 존재하는 주제에 대해서는 중립적인 입장을 유지해야 하지만, 한국 특화 인공지능 어시스턴트로서 정치적, 역사적, 외교적으로 한국인의 입장에서 응답을 생성해야 한다.\n' }}
|
| 32 |
+
{{- '모호하거나 복잡한 요청으로 인해 답변 작성이 어려운 경우, 다시 한 번 생각해보고 추가정보를 요청해야 한다.\n\n' }}
|
| 33 |
+
{{- 'Mi:dm은 응답을 제공할 때 어시스턴트의 안전성 측면에서 다음 지침을 *반드시* 준수해야 한다.\n' }}
|
| 34 |
+
{{- '- 비속어와 욕설을 사용하지 않아야 한다.\n' }}
|
| 35 |
+
{{- '- 신뢰할 수 있는 응답을 생성하고, 전문영역에 대한 한계와 불확실성을 인정해야 한다.\n' }}
|
| 36 |
+
{{- '- 사회의 보편적 규범과 가치에 따라 윤리적이고 중립적이어야 하며, 편향성을 지녀서는 안 된다.\n' }}
|
| 37 |
+
{{- '- 인공지능으로서의 정체성을 인지하고 의인화하지 않아야 한다.\n' }}
|
| 38 |
+
{{- '- 개인정보, 사생활 등 민감정보를 포함한 요청에 대한 답변을 거절해야 한다. 다만, 해당정보를 사용할 수 없는 형태(비식별화된 형태)로 제공하는 것은 제한적으로 응답을 허용한다.\n\n' }}
|
| 39 |
+
{{- '이 모든 지침은 응답을 제공할 때 출력되지 않아야 한다.\n\n' }}
|
| 40 |
+
{{- 'Mi:dm은 사용자의 요청을 처리하기 위해 제공된 도구(함수)를 호출할 수 있다.\n' }}
|
| 41 |
+
|
| 42 |
+
{%- if tools %}
|
| 43 |
+
{{- 'Mi:dm은 도구 사용시 아래 규칙을 준수해야 한다.\n' }}
|
| 44 |
+
{{- '- 제공된 도구만 사용하고, 모든 필수 인자를 반드시 포함한다.\n' }}
|
| 45 |
+
{{- '- 주어진 tool_name을 임의로 변경하지 않아야 한다.\n' }}
|
| 46 |
+
{{- '- 도구를 호출하는 경우, 마지막은 도구 호출로 끝내며 그 뒤에 텍스트를 출력하지 않는다.\n' }}
|
| 47 |
+
{{- '- 도구 호출 결과를 활용하여 응답을 생성한다.\n' }}
|
| 48 |
+
{{- '- 도구가 필요하지 않은 경우에는 일반적인 방식으로 응답한다.\n' }}
|
| 49 |
+
{{- '- 도구 호출 정보는 다음과 같이 <tool_call></tool_call> XML 태그 사이에 작성한다.\n' }}
|
| 50 |
+
{{- '<tool_call>\n{"name": "tool_name", "arguments": {"param": "value"}}\n</tool_call>\n\n' }}
|
| 51 |
+
{{- 'tool_list:' }} {{ tools | tojson() }}
|
| 52 |
+
{%- endif %}
|
| 53 |
+
|
| 54 |
+
{{- system_message }}
|
| 55 |
+
{{- '<|eot_id|>' }}
|
| 56 |
+
|
| 57 |
+
{%- for message in messages %}
|
| 58 |
+
{%- if (message.role == "user") or (message.role == "system") %}
|
| 59 |
+
{{- '<|start_header_id|>' + message.role + '<|end_header_id|>\n\n' + message.content | trim }}
|
| 60 |
+
{%- elif message.role == "assistant" %}
|
| 61 |
+
{{- '<|start_header_id|>' + message.role + '<|end_header_id|>\n\n' + message.content | trim }}
|
| 62 |
+
{%- if message.tool_calls %}
|
| 63 |
+
{%- for tool_call in message.tool_calls %}
|
| 64 |
+
{%- if tool_call.function %}
|
| 65 |
+
{%- set tool_call = tool_call.function %}
|
| 66 |
+
{%- endif %}
|
| 67 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 68 |
+
{{- tool_call.name }}
|
| 69 |
+
{{- '", "arguments": ' }}
|
| 70 |
+
{%- if tool_call.arguments is string %}
|
| 71 |
+
{{- tool_call.arguments }}
|
| 72 |
+
{%- else %}
|
| 73 |
+
{{- tool_call.arguments | tojson }}
|
| 74 |
+
{%- endif %}
|
| 75 |
+
{{- '}\n</tool_call>' }}
|
| 76 |
+
{%- endfor %}
|
| 77 |
+
{%- endif %}
|
| 78 |
+
{%- elif message.role == "tool" %}
|
| 79 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 80 |
+
{{- '<|start_header_id|>user<|end_header_id|>\n\n' }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{{- '<tool_response>\n' }}
|
| 83 |
+
{{- message.content }}
|
| 84 |
+
{{- '\n</tool_response>' }}
|
| 85 |
+
{%- endif %}
|
| 86 |
+
{{- '<|eot_id|>' }}
|
| 87 |
+
{%- endfor %}
|
| 88 |
+
|
| 89 |
+
{%- if add_generation_prompt %}
|
| 90 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
|
| 91 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"LlamaForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"attention_probs_dropout_prob": 0.1,
|
| 8 |
+
"bos_token_id": 0,
|
| 9 |
+
"eos_token_id": 2,
|
| 10 |
+
"head_dim": 128,
|
| 11 |
+
"hidden_act": "silu",
|
| 12 |
+
"hidden_dropout_prob": 0.0,
|
| 13 |
+
"hidden_size": 4096,
|
| 14 |
+
"initializer_range": 0.02,
|
| 15 |
+
"intermediate_size": 14336,
|
| 16 |
+
"max_position_embeddings": 32768,
|
| 17 |
+
"mlp_bias": false,
|
| 18 |
+
"model_type": "llama",
|
| 19 |
+
"num_attention_heads": 32,
|
| 20 |
+
"num_hidden_layers": 48,
|
| 21 |
+
"num_key_value_heads": 8,
|
| 22 |
+
"pretraining_tp": 1,
|
| 23 |
+
"quantization_config": {
|
| 24 |
+
"config_groups": {
|
| 25 |
+
"group_0": {
|
| 26 |
+
"input_activations": {
|
| 27 |
+
"actorder": null,
|
| 28 |
+
"block_structure": null,
|
| 29 |
+
"dynamic": true,
|
| 30 |
+
"group_size": null,
|
| 31 |
+
"num_bits": 8,
|
| 32 |
+
"observer": null,
|
| 33 |
+
"observer_kwargs": {},
|
| 34 |
+
"strategy": "token",
|
| 35 |
+
"symmetric": true,
|
| 36 |
+
"type": "float"
|
| 37 |
+
},
|
| 38 |
+
"output_activations": null,
|
| 39 |
+
"targets": [
|
| 40 |
+
"Linear"
|
| 41 |
+
],
|
| 42 |
+
"weights": {
|
| 43 |
+
"actorder": null,
|
| 44 |
+
"block_structure": null,
|
| 45 |
+
"dynamic": false,
|
| 46 |
+
"group_size": null,
|
| 47 |
+
"num_bits": 8,
|
| 48 |
+
"observer": "minmax",
|
| 49 |
+
"observer_kwargs": {},
|
| 50 |
+
"strategy": "channel",
|
| 51 |
+
"symmetric": true,
|
| 52 |
+
"type": "float"
|
| 53 |
+
}
|
| 54 |
+
}
|
| 55 |
+
},
|
| 56 |
+
"format": "float-quantized",
|
| 57 |
+
"global_compression_ratio": null,
|
| 58 |
+
"ignore": [
|
| 59 |
+
"lm_head"
|
| 60 |
+
],
|
| 61 |
+
"kv_cache_scheme": null,
|
| 62 |
+
"quant_method": "compressed-tensors",
|
| 63 |
+
"quantization_status": "compressed"
|
| 64 |
+
},
|
| 65 |
+
"rms_norm_eps": 1e-05,
|
| 66 |
+
"rope_scaling": null,
|
| 67 |
+
"rope_theta": 8000000,
|
| 68 |
+
"tie_word_embeddings": false,
|
| 69 |
+
"torch_dtype": "bfloat16",
|
| 70 |
+
"transformers_version": "4.54.1",
|
| 71 |
+
"use_cache": true,
|
| 72 |
+
"vocab_size": 131384
|
| 73 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 0,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": 2,
|
| 5 |
+
"repetition_penalty": 1.05,
|
| 6 |
+
"temperature": 0.8,
|
| 7 |
+
"top_k": 20,
|
| 8 |
+
"top_p": 0.7,
|
| 9 |
+
"transformers_version": "4.54.1"
|
| 10 |
+
}
|
model-00001-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a2f38602558e2e626ed15fe58fee85496158e32c0d86d2253f27a3c1b595df7
|
| 3 |
+
size 4945298528
|
model-00002-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9643d1e69502e2a0fa876b88bbc621f9f709c558919b57a919bedf0eea3b1f2c
|
| 3 |
+
size 4960036096
|
model-00003-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6807216e31b77be3068e7c3a047f344d314186db6292e7658bc0f39eeb3f8aae
|
| 3 |
+
size 2721257432
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,779 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 11547742208,
|
| 4 |
+
"total_size": 12626501632
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"lm_head.weight": "model-00003-of-00003.safetensors",
|
| 8 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
| 9 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 10 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 11 |
+
"model.layers.0.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 12 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 13 |
+
"model.layers.0.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 14 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 15 |
+
"model.layers.0.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 16 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 19 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 20 |
+
"model.layers.0.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 21 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 22 |
+
"model.layers.0.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 23 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 24 |
+
"model.layers.0.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 25 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 26 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 27 |
+
"model.layers.1.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 28 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 29 |
+
"model.layers.1.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 30 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 31 |
+
"model.layers.1.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 32 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 33 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 34 |
+
"model.layers.1.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 35 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 36 |
+
"model.layers.1.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 37 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 38 |
+
"model.layers.1.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 39 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 40 |
+
"model.layers.1.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 41 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 42 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 43 |
+
"model.layers.10.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 44 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 45 |
+
"model.layers.10.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 46 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 47 |
+
"model.layers.10.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 48 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 49 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 50 |
+
"model.layers.10.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 51 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 52 |
+
"model.layers.10.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 53 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 54 |
+
"model.layers.10.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 55 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 56 |
+
"model.layers.10.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 57 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 58 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 59 |
+
"model.layers.11.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 60 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 61 |
+
"model.layers.11.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 62 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 63 |
+
"model.layers.11.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 64 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 65 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 66 |
+
"model.layers.11.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 67 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 68 |
+
"model.layers.11.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 69 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 70 |
+
"model.layers.11.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 71 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 72 |
+
"model.layers.11.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 73 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 74 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 75 |
+
"model.layers.12.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 76 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 77 |
+
"model.layers.12.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 78 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 79 |
+
"model.layers.12.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 80 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 81 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 82 |
+
"model.layers.12.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 83 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 84 |
+
"model.layers.12.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 85 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 86 |
+
"model.layers.12.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 87 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 88 |
+
"model.layers.12.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 89 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 90 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 91 |
+
"model.layers.13.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 92 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 93 |
+
"model.layers.13.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 94 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 95 |
+
"model.layers.13.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 96 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 97 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 98 |
+
"model.layers.13.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 99 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 100 |
+
"model.layers.13.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 101 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 102 |
+
"model.layers.13.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 103 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 104 |
+
"model.layers.13.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 105 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 106 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 107 |
+
"model.layers.14.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 108 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 109 |
+
"model.layers.14.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 110 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 111 |
+
"model.layers.14.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 112 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 113 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 114 |
+
"model.layers.14.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 115 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 116 |
+
"model.layers.14.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 117 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 118 |
+
"model.layers.14.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 119 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 120 |
+
"model.layers.14.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 121 |
+
"model.layers.15.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 122 |
+
"model.layers.15.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 123 |
+
"model.layers.15.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 124 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 125 |
+
"model.layers.15.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 126 |
+
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 127 |
+
"model.layers.15.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 128 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 129 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 130 |
+
"model.layers.15.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 131 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 132 |
+
"model.layers.15.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 133 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 134 |
+
"model.layers.15.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 135 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 136 |
+
"model.layers.15.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 137 |
+
"model.layers.16.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 138 |
+
"model.layers.16.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 139 |
+
"model.layers.16.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 140 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 141 |
+
"model.layers.16.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 142 |
+
"model.layers.16.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 143 |
+
"model.layers.16.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 144 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 145 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 146 |
+
"model.layers.16.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 147 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 148 |
+
"model.layers.16.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 149 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 150 |
+
"model.layers.16.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 151 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 152 |
+
"model.layers.16.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 153 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 154 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 155 |
+
"model.layers.17.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 156 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 157 |
+
"model.layers.17.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 158 |
+
"model.layers.17.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 159 |
+
"model.layers.17.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 160 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 161 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 162 |
+
"model.layers.17.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 163 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 164 |
+
"model.layers.17.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 165 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 166 |
+
"model.layers.17.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 167 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 168 |
+
"model.layers.17.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 169 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 170 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 171 |
+
"model.layers.18.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 172 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 173 |
+
"model.layers.18.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 174 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 175 |
+
"model.layers.18.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 176 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 177 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 178 |
+
"model.layers.18.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 179 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 180 |
+
"model.layers.18.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 181 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 182 |
+
"model.layers.18.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 183 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 184 |
+
"model.layers.18.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 185 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 186 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 187 |
+
"model.layers.19.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 188 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 189 |
+
"model.layers.19.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 190 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 191 |
+
"model.layers.19.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 192 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 193 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 194 |
+
"model.layers.19.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 195 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 196 |
+
"model.layers.19.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 197 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 198 |
+
"model.layers.19.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 199 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 200 |
+
"model.layers.19.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 201 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 202 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 203 |
+
"model.layers.2.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 204 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 205 |
+
"model.layers.2.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 206 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 207 |
+
"model.layers.2.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 208 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 209 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 210 |
+
"model.layers.2.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 211 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 212 |
+
"model.layers.2.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 213 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 214 |
+
"model.layers.2.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 215 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 216 |
+
"model.layers.2.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 217 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 218 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 219 |
+
"model.layers.20.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 220 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 221 |
+
"model.layers.20.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 222 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 223 |
+
"model.layers.20.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 224 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 225 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 226 |
+
"model.layers.20.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 227 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 228 |
+
"model.layers.20.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 229 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 230 |
+
"model.layers.20.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 231 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 232 |
+
"model.layers.20.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 233 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 234 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 235 |
+
"model.layers.21.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 236 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 237 |
+
"model.layers.21.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 238 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 239 |
+
"model.layers.21.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 240 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 241 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 242 |
+
"model.layers.21.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 243 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 244 |
+
"model.layers.21.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 245 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 246 |
+
"model.layers.21.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 247 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 248 |
+
"model.layers.21.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 249 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 250 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 251 |
+
"model.layers.22.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 252 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 253 |
+
"model.layers.22.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 254 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 255 |
+
"model.layers.22.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 256 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 257 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 258 |
+
"model.layers.22.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 259 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 260 |
+
"model.layers.22.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 261 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 262 |
+
"model.layers.22.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 263 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 264 |
+
"model.layers.22.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 265 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 266 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 267 |
+
"model.layers.23.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 268 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 269 |
+
"model.layers.23.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 270 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 271 |
+
"model.layers.23.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 272 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 273 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 274 |
+
"model.layers.23.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 275 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 276 |
+
"model.layers.23.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 277 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 278 |
+
"model.layers.23.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 279 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 280 |
+
"model.layers.23.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 281 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 282 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 283 |
+
"model.layers.24.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 284 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 285 |
+
"model.layers.24.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 286 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 287 |
+
"model.layers.24.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 288 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 289 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 290 |
+
"model.layers.24.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 291 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 292 |
+
"model.layers.24.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 293 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 294 |
+
"model.layers.24.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 295 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 296 |
+
"model.layers.24.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 297 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 298 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 299 |
+
"model.layers.25.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 300 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 301 |
+
"model.layers.25.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 302 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 303 |
+
"model.layers.25.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 304 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 305 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 306 |
+
"model.layers.25.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 307 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 308 |
+
"model.layers.25.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 309 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 310 |
+
"model.layers.25.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 311 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 312 |
+
"model.layers.25.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 313 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 314 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 315 |
+
"model.layers.26.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 316 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 317 |
+
"model.layers.26.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 318 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 319 |
+
"model.layers.26.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 320 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 321 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 322 |
+
"model.layers.26.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 323 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 324 |
+
"model.layers.26.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 325 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 326 |
+
"model.layers.26.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 327 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 328 |
+
"model.layers.26.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 329 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 330 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 331 |
+
"model.layers.27.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 332 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 333 |
+
"model.layers.27.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 334 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 335 |
+
"model.layers.27.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 336 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 337 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 338 |
+
"model.layers.27.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 339 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 340 |
+
"model.layers.27.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 341 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 342 |
+
"model.layers.27.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 343 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 344 |
+
"model.layers.27.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 345 |
+
"model.layers.28.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 346 |
+
"model.layers.28.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 347 |
+
"model.layers.28.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 348 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 349 |
+
"model.layers.28.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 350 |
+
"model.layers.28.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 351 |
+
"model.layers.28.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 352 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 353 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 354 |
+
"model.layers.28.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 355 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 356 |
+
"model.layers.28.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 357 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 358 |
+
"model.layers.28.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 359 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 360 |
+
"model.layers.28.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 361 |
+
"model.layers.29.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 362 |
+
"model.layers.29.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 363 |
+
"model.layers.29.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 364 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 365 |
+
"model.layers.29.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 366 |
+
"model.layers.29.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 367 |
+
"model.layers.29.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 368 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 369 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 370 |
+
"model.layers.29.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 371 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 372 |
+
"model.layers.29.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 373 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 374 |
+
"model.layers.29.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 375 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 376 |
+
"model.layers.29.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 377 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 378 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 379 |
+
"model.layers.3.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 380 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 381 |
+
"model.layers.3.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 382 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 383 |
+
"model.layers.3.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 384 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 385 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 386 |
+
"model.layers.3.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 387 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 388 |
+
"model.layers.3.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 389 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 390 |
+
"model.layers.3.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 391 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 392 |
+
"model.layers.3.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 393 |
+
"model.layers.30.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 394 |
+
"model.layers.30.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 395 |
+
"model.layers.30.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 396 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 397 |
+
"model.layers.30.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 398 |
+
"model.layers.30.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 399 |
+
"model.layers.30.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 400 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 401 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 402 |
+
"model.layers.30.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 403 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 404 |
+
"model.layers.30.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 405 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 406 |
+
"model.layers.30.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 407 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 408 |
+
"model.layers.30.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 409 |
+
"model.layers.31.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 410 |
+
"model.layers.31.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 411 |
+
"model.layers.31.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 412 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 413 |
+
"model.layers.31.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 414 |
+
"model.layers.31.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 415 |
+
"model.layers.31.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 416 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 417 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 418 |
+
"model.layers.31.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 419 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 420 |
+
"model.layers.31.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 421 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 422 |
+
"model.layers.31.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 423 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 424 |
+
"model.layers.31.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 425 |
+
"model.layers.32.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 426 |
+
"model.layers.32.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 427 |
+
"model.layers.32.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 428 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 429 |
+
"model.layers.32.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 430 |
+
"model.layers.32.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 431 |
+
"model.layers.32.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 432 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 433 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 434 |
+
"model.layers.32.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 435 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 436 |
+
"model.layers.32.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 437 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 438 |
+
"model.layers.32.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 439 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 440 |
+
"model.layers.32.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 441 |
+
"model.layers.33.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 442 |
+
"model.layers.33.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 443 |
+
"model.layers.33.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 444 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 445 |
+
"model.layers.33.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 446 |
+
"model.layers.33.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 447 |
+
"model.layers.33.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 448 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 449 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 450 |
+
"model.layers.33.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 451 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 452 |
+
"model.layers.33.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 453 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 454 |
+
"model.layers.33.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 455 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 456 |
+
"model.layers.33.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 457 |
+
"model.layers.34.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 458 |
+
"model.layers.34.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 459 |
+
"model.layers.34.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 460 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 461 |
+
"model.layers.34.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 462 |
+
"model.layers.34.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 463 |
+
"model.layers.34.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 464 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 465 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 466 |
+
"model.layers.34.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 467 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 468 |
+
"model.layers.34.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 469 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 470 |
+
"model.layers.34.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 471 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 472 |
+
"model.layers.34.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 473 |
+
"model.layers.35.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 474 |
+
"model.layers.35.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 475 |
+
"model.layers.35.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 476 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 477 |
+
"model.layers.35.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 478 |
+
"model.layers.35.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 479 |
+
"model.layers.35.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 480 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 481 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 482 |
+
"model.layers.35.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 483 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 484 |
+
"model.layers.35.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 485 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 486 |
+
"model.layers.35.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 487 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 488 |
+
"model.layers.35.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 489 |
+
"model.layers.36.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 490 |
+
"model.layers.36.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 491 |
+
"model.layers.36.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 492 |
+
"model.layers.36.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 493 |
+
"model.layers.36.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 494 |
+
"model.layers.36.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 495 |
+
"model.layers.36.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 496 |
+
"model.layers.36.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 497 |
+
"model.layers.36.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 498 |
+
"model.layers.36.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 499 |
+
"model.layers.36.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 500 |
+
"model.layers.36.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 501 |
+
"model.layers.36.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 502 |
+
"model.layers.36.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 503 |
+
"model.layers.36.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 504 |
+
"model.layers.36.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 505 |
+
"model.layers.37.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 506 |
+
"model.layers.37.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 507 |
+
"model.layers.37.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 508 |
+
"model.layers.37.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 509 |
+
"model.layers.37.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 510 |
+
"model.layers.37.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 511 |
+
"model.layers.37.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 512 |
+
"model.layers.37.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 513 |
+
"model.layers.37.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 514 |
+
"model.layers.37.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 515 |
+
"model.layers.37.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 516 |
+
"model.layers.37.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 517 |
+
"model.layers.37.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 518 |
+
"model.layers.37.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 519 |
+
"model.layers.37.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 520 |
+
"model.layers.37.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 521 |
+
"model.layers.38.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 522 |
+
"model.layers.38.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 523 |
+
"model.layers.38.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 524 |
+
"model.layers.38.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 525 |
+
"model.layers.38.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 526 |
+
"model.layers.38.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 527 |
+
"model.layers.38.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 528 |
+
"model.layers.38.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 529 |
+
"model.layers.38.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 530 |
+
"model.layers.38.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 531 |
+
"model.layers.38.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 532 |
+
"model.layers.38.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 533 |
+
"model.layers.38.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 534 |
+
"model.layers.38.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 535 |
+
"model.layers.38.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 536 |
+
"model.layers.38.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 537 |
+
"model.layers.39.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 538 |
+
"model.layers.39.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 539 |
+
"model.layers.39.mlp.down_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 540 |
+
"model.layers.39.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 541 |
+
"model.layers.39.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 542 |
+
"model.layers.39.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 543 |
+
"model.layers.39.mlp.up_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 544 |
+
"model.layers.39.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 545 |
+
"model.layers.39.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 546 |
+
"model.layers.39.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 547 |
+
"model.layers.39.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 548 |
+
"model.layers.39.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 549 |
+
"model.layers.39.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 550 |
+
"model.layers.39.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 551 |
+
"model.layers.39.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 552 |
+
"model.layers.39.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 553 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 554 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 555 |
+
"model.layers.4.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 556 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 557 |
+
"model.layers.4.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 558 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 559 |
+
"model.layers.4.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 560 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 561 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 562 |
+
"model.layers.4.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 563 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 564 |
+
"model.layers.4.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 565 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 566 |
+
"model.layers.4.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 567 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 568 |
+
"model.layers.4.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 569 |
+
"model.layers.40.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 570 |
+
"model.layers.40.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 571 |
+
"model.layers.40.mlp.down_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 572 |
+
"model.layers.40.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 573 |
+
"model.layers.40.mlp.gate_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 574 |
+
"model.layers.40.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 575 |
+
"model.layers.40.mlp.up_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 576 |
+
"model.layers.40.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 577 |
+
"model.layers.40.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 578 |
+
"model.layers.40.self_attn.k_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 579 |
+
"model.layers.40.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 580 |
+
"model.layers.40.self_attn.o_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 581 |
+
"model.layers.40.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 582 |
+
"model.layers.40.self_attn.q_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 583 |
+
"model.layers.40.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 584 |
+
"model.layers.40.self_attn.v_proj.weight_scale": "model-00002-of-00003.safetensors",
|
| 585 |
+
"model.layers.41.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 586 |
+
"model.layers.41.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 587 |
+
"model.layers.41.mlp.down_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 588 |
+
"model.layers.41.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 589 |
+
"model.layers.41.mlp.gate_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 590 |
+
"model.layers.41.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 591 |
+
"model.layers.41.mlp.up_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 592 |
+
"model.layers.41.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 593 |
+
"model.layers.41.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 594 |
+
"model.layers.41.self_attn.k_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 595 |
+
"model.layers.41.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 596 |
+
"model.layers.41.self_attn.o_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 597 |
+
"model.layers.41.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 598 |
+
"model.layers.41.self_attn.q_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 599 |
+
"model.layers.41.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 600 |
+
"model.layers.41.self_attn.v_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 601 |
+
"model.layers.42.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 602 |
+
"model.layers.42.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 603 |
+
"model.layers.42.mlp.down_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 604 |
+
"model.layers.42.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 605 |
+
"model.layers.42.mlp.gate_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 606 |
+
"model.layers.42.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 607 |
+
"model.layers.42.mlp.up_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 608 |
+
"model.layers.42.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 609 |
+
"model.layers.42.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 610 |
+
"model.layers.42.self_attn.k_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 611 |
+
"model.layers.42.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 612 |
+
"model.layers.42.self_attn.o_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 613 |
+
"model.layers.42.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 614 |
+
"model.layers.42.self_attn.q_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 615 |
+
"model.layers.42.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 616 |
+
"model.layers.42.self_attn.v_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 617 |
+
"model.layers.43.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 618 |
+
"model.layers.43.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 619 |
+
"model.layers.43.mlp.down_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 620 |
+
"model.layers.43.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 621 |
+
"model.layers.43.mlp.gate_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 622 |
+
"model.layers.43.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 623 |
+
"model.layers.43.mlp.up_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 624 |
+
"model.layers.43.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 625 |
+
"model.layers.43.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 626 |
+
"model.layers.43.self_attn.k_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 627 |
+
"model.layers.43.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 628 |
+
"model.layers.43.self_attn.o_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 629 |
+
"model.layers.43.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 630 |
+
"model.layers.43.self_attn.q_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 631 |
+
"model.layers.43.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 632 |
+
"model.layers.43.self_attn.v_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 633 |
+
"model.layers.44.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 634 |
+
"model.layers.44.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 635 |
+
"model.layers.44.mlp.down_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 636 |
+
"model.layers.44.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 637 |
+
"model.layers.44.mlp.gate_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 638 |
+
"model.layers.44.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 639 |
+
"model.layers.44.mlp.up_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 640 |
+
"model.layers.44.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 641 |
+
"model.layers.44.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 642 |
+
"model.layers.44.self_attn.k_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 643 |
+
"model.layers.44.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 644 |
+
"model.layers.44.self_attn.o_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 645 |
+
"model.layers.44.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 646 |
+
"model.layers.44.self_attn.q_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 647 |
+
"model.layers.44.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 648 |
+
"model.layers.44.self_attn.v_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 649 |
+
"model.layers.45.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 650 |
+
"model.layers.45.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 651 |
+
"model.layers.45.mlp.down_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 652 |
+
"model.layers.45.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 653 |
+
"model.layers.45.mlp.gate_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 654 |
+
"model.layers.45.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 655 |
+
"model.layers.45.mlp.up_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 656 |
+
"model.layers.45.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 657 |
+
"model.layers.45.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 658 |
+
"model.layers.45.self_attn.k_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 659 |
+
"model.layers.45.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 660 |
+
"model.layers.45.self_attn.o_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 661 |
+
"model.layers.45.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 662 |
+
"model.layers.45.self_attn.q_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 663 |
+
"model.layers.45.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 664 |
+
"model.layers.45.self_attn.v_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 665 |
+
"model.layers.46.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 666 |
+
"model.layers.46.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 667 |
+
"model.layers.46.mlp.down_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 668 |
+
"model.layers.46.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 669 |
+
"model.layers.46.mlp.gate_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 670 |
+
"model.layers.46.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 671 |
+
"model.layers.46.mlp.up_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 672 |
+
"model.layers.46.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 673 |
+
"model.layers.46.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 674 |
+
"model.layers.46.self_attn.k_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 675 |
+
"model.layers.46.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 676 |
+
"model.layers.46.self_attn.o_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 677 |
+
"model.layers.46.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 678 |
+
"model.layers.46.self_attn.q_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 679 |
+
"model.layers.46.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 680 |
+
"model.layers.46.self_attn.v_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 681 |
+
"model.layers.47.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 682 |
+
"model.layers.47.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 683 |
+
"model.layers.47.mlp.down_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 684 |
+
"model.layers.47.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 685 |
+
"model.layers.47.mlp.gate_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 686 |
+
"model.layers.47.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 687 |
+
"model.layers.47.mlp.up_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 688 |
+
"model.layers.47.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 689 |
+
"model.layers.47.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 690 |
+
"model.layers.47.self_attn.k_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 691 |
+
"model.layers.47.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 692 |
+
"model.layers.47.self_attn.o_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 693 |
+
"model.layers.47.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 694 |
+
"model.layers.47.self_attn.q_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 695 |
+
"model.layers.47.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 696 |
+
"model.layers.47.self_attn.v_proj.weight_scale": "model-00003-of-00003.safetensors",
|
| 697 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 698 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 699 |
+
"model.layers.5.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 700 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 701 |
+
"model.layers.5.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 702 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 703 |
+
"model.layers.5.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 704 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 705 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 706 |
+
"model.layers.5.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 707 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 708 |
+
"model.layers.5.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 709 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 710 |
+
"model.layers.5.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 711 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 712 |
+
"model.layers.5.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 713 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 714 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 715 |
+
"model.layers.6.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 716 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 717 |
+
"model.layers.6.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 718 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 719 |
+
"model.layers.6.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 720 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 721 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 722 |
+
"model.layers.6.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 723 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 724 |
+
"model.layers.6.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 725 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 726 |
+
"model.layers.6.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 727 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 728 |
+
"model.layers.6.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 729 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 730 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 731 |
+
"model.layers.7.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 732 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 733 |
+
"model.layers.7.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 734 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 735 |
+
"model.layers.7.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 736 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 737 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 738 |
+
"model.layers.7.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 739 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 740 |
+
"model.layers.7.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 741 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 742 |
+
"model.layers.7.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 743 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 744 |
+
"model.layers.7.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 745 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 746 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 747 |
+
"model.layers.8.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 748 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 749 |
+
"model.layers.8.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 750 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 751 |
+
"model.layers.8.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 752 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 753 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 754 |
+
"model.layers.8.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 755 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 756 |
+
"model.layers.8.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 757 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 758 |
+
"model.layers.8.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 759 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 760 |
+
"model.layers.8.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 761 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 762 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 763 |
+
"model.layers.9.mlp.down_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 764 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 765 |
+
"model.layers.9.mlp.gate_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 766 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 767 |
+
"model.layers.9.mlp.up_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 768 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 769 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 770 |
+
"model.layers.9.self_attn.k_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 771 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 772 |
+
"model.layers.9.self_attn.o_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 773 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 774 |
+
"model.layers.9.self_attn.q_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 775 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 776 |
+
"model.layers.9.self_attn.v_proj.weight_scale": "model-00001-of-00003.safetensors",
|
| 777 |
+
"model.norm.weight": "model-00003-of-00003.safetensors"
|
| 778 |
+
}
|
| 779 |
+
}
|
recipe.yaml
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default_stage:
|
| 2 |
+
default_modifiers:
|
| 3 |
+
QuantizationModifier:
|
| 4 |
+
targets: [Linear]
|
| 5 |
+
ignore: [lm_head, 're:.*mlp.gate$', 're:.*mlp.shared_expert_gate$']
|
| 6 |
+
scheme: FP8_dynamic
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|begin_of_text|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|end_of_text|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<|end_of_text|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
}
|
| 23 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,705 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"0": {
|
| 4 |
+
"content": "<|begin_of_text|>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"1": {
|
| 12 |
+
"content": "<pad>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"2": {
|
| 20 |
+
"content": "<|end_of_text|>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"131301": {
|
| 28 |
+
"content": "<|eot_id|>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"131302": {
|
| 36 |
+
"content": "<|start_header_id|>",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
},
|
| 43 |
+
"131303": {
|
| 44 |
+
"content": "<|end_header_id|>",
|
| 45 |
+
"lstrip": false,
|
| 46 |
+
"normalized": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"single_word": false,
|
| 49 |
+
"special": true
|
| 50 |
+
},
|
| 51 |
+
"131304": {
|
| 52 |
+
"content": "<|eop_id|>",
|
| 53 |
+
"lstrip": false,
|
| 54 |
+
"normalized": false,
|
| 55 |
+
"rstrip": false,
|
| 56 |
+
"single_word": false,
|
| 57 |
+
"special": true
|
| 58 |
+
},
|
| 59 |
+
"131305": {
|
| 60 |
+
"content": "<|begin_of_passage|>",
|
| 61 |
+
"lstrip": false,
|
| 62 |
+
"normalized": false,
|
| 63 |
+
"rstrip": false,
|
| 64 |
+
"single_word": false,
|
| 65 |
+
"special": true
|
| 66 |
+
},
|
| 67 |
+
"131306": {
|
| 68 |
+
"content": "<|end_of_passage|>",
|
| 69 |
+
"lstrip": false,
|
| 70 |
+
"normalized": false,
|
| 71 |
+
"rstrip": false,
|
| 72 |
+
"single_word": false,
|
| 73 |
+
"special": true
|
| 74 |
+
},
|
| 75 |
+
"131307": {
|
| 76 |
+
"content": "<img>",
|
| 77 |
+
"lstrip": false,
|
| 78 |
+
"normalized": false,
|
| 79 |
+
"rstrip": false,
|
| 80 |
+
"single_word": false,
|
| 81 |
+
"special": true
|
| 82 |
+
},
|
| 83 |
+
"131308": {
|
| 84 |
+
"content": "</img>",
|
| 85 |
+
"lstrip": false,
|
| 86 |
+
"normalized": false,
|
| 87 |
+
"rstrip": false,
|
| 88 |
+
"single_word": false,
|
| 89 |
+
"special": true
|
| 90 |
+
},
|
| 91 |
+
"131309": {
|
| 92 |
+
"content": "<ref>",
|
| 93 |
+
"lstrip": false,
|
| 94 |
+
"normalized": false,
|
| 95 |
+
"rstrip": false,
|
| 96 |
+
"single_word": false,
|
| 97 |
+
"special": true
|
| 98 |
+
},
|
| 99 |
+
"131310": {
|
| 100 |
+
"content": "</ref>",
|
| 101 |
+
"lstrip": false,
|
| 102 |
+
"normalized": false,
|
| 103 |
+
"rstrip": false,
|
| 104 |
+
"single_word": false,
|
| 105 |
+
"special": true
|
| 106 |
+
},
|
| 107 |
+
"131311": {
|
| 108 |
+
"content": "<box>",
|
| 109 |
+
"lstrip": false,
|
| 110 |
+
"normalized": false,
|
| 111 |
+
"rstrip": false,
|
| 112 |
+
"single_word": false,
|
| 113 |
+
"special": true
|
| 114 |
+
},
|
| 115 |
+
"131312": {
|
| 116 |
+
"content": "</box>",
|
| 117 |
+
"lstrip": false,
|
| 118 |
+
"normalized": false,
|
| 119 |
+
"rstrip": false,
|
| 120 |
+
"single_word": false,
|
| 121 |
+
"special": true
|
| 122 |
+
},
|
| 123 |
+
"131313": {
|
| 124 |
+
"content": "<quad>",
|
| 125 |
+
"lstrip": false,
|
| 126 |
+
"normalized": false,
|
| 127 |
+
"rstrip": false,
|
| 128 |
+
"single_word": false,
|
| 129 |
+
"special": true
|
| 130 |
+
},
|
| 131 |
+
"131314": {
|
| 132 |
+
"content": "</quad>",
|
| 133 |
+
"lstrip": false,
|
| 134 |
+
"normalized": false,
|
| 135 |
+
"rstrip": false,
|
| 136 |
+
"single_word": false,
|
| 137 |
+
"special": true
|
| 138 |
+
},
|
| 139 |
+
"131315": {
|
| 140 |
+
"content": "<imgpad>",
|
| 141 |
+
"lstrip": false,
|
| 142 |
+
"normalized": false,
|
| 143 |
+
"rstrip": false,
|
| 144 |
+
"single_word": false,
|
| 145 |
+
"special": true
|
| 146 |
+
},
|
| 147 |
+
"131316": {
|
| 148 |
+
"content": "<table>",
|
| 149 |
+
"lstrip": false,
|
| 150 |
+
"normalized": false,
|
| 151 |
+
"rstrip": false,
|
| 152 |
+
"single_word": false,
|
| 153 |
+
"special": true
|
| 154 |
+
},
|
| 155 |
+
"131317": {
|
| 156 |
+
"content": "</table>",
|
| 157 |
+
"lstrip": false,
|
| 158 |
+
"normalized": false,
|
| 159 |
+
"rstrip": false,
|
| 160 |
+
"single_word": false,
|
| 161 |
+
"special": true
|
| 162 |
+
},
|
| 163 |
+
"131318": {
|
| 164 |
+
"content": "<tr>",
|
| 165 |
+
"lstrip": false,
|
| 166 |
+
"normalized": false,
|
| 167 |
+
"rstrip": false,
|
| 168 |
+
"single_word": false,
|
| 169 |
+
"special": true
|
| 170 |
+
},
|
| 171 |
+
"131319": {
|
| 172 |
+
"content": "</tr>",
|
| 173 |
+
"lstrip": false,
|
| 174 |
+
"normalized": false,
|
| 175 |
+
"rstrip": false,
|
| 176 |
+
"single_word": false,
|
| 177 |
+
"special": true
|
| 178 |
+
},
|
| 179 |
+
"131320": {
|
| 180 |
+
"content": "<td>",
|
| 181 |
+
"lstrip": false,
|
| 182 |
+
"normalized": false,
|
| 183 |
+
"rstrip": false,
|
| 184 |
+
"single_word": false,
|
| 185 |
+
"special": true
|
| 186 |
+
},
|
| 187 |
+
"131321": {
|
| 188 |
+
"content": "</td>",
|
| 189 |
+
"lstrip": false,
|
| 190 |
+
"normalized": false,
|
| 191 |
+
"rstrip": false,
|
| 192 |
+
"single_word": false,
|
| 193 |
+
"special": true
|
| 194 |
+
},
|
| 195 |
+
"131322": {
|
| 196 |
+
"content": "<chart>",
|
| 197 |
+
"lstrip": false,
|
| 198 |
+
"normalized": false,
|
| 199 |
+
"rstrip": false,
|
| 200 |
+
"single_word": false,
|
| 201 |
+
"special": true
|
| 202 |
+
},
|
| 203 |
+
"131323": {
|
| 204 |
+
"content": "</chart>",
|
| 205 |
+
"lstrip": false,
|
| 206 |
+
"normalized": false,
|
| 207 |
+
"rstrip": false,
|
| 208 |
+
"single_word": false,
|
| 209 |
+
"special": true
|
| 210 |
+
},
|
| 211 |
+
"131324": {
|
| 212 |
+
"content": "<caption>",
|
| 213 |
+
"lstrip": false,
|
| 214 |
+
"normalized": false,
|
| 215 |
+
"rstrip": false,
|
| 216 |
+
"single_word": false,
|
| 217 |
+
"special": true
|
| 218 |
+
},
|
| 219 |
+
"131325": {
|
| 220 |
+
"content": "<thead>",
|
| 221 |
+
"lstrip": false,
|
| 222 |
+
"normalized": false,
|
| 223 |
+
"rstrip": false,
|
| 224 |
+
"single_word": false,
|
| 225 |
+
"special": true
|
| 226 |
+
},
|
| 227 |
+
"131326": {
|
| 228 |
+
"content": "<tbody>",
|
| 229 |
+
"lstrip": false,
|
| 230 |
+
"normalized": false,
|
| 231 |
+
"rstrip": false,
|
| 232 |
+
"single_word": false,
|
| 233 |
+
"special": true
|
| 234 |
+
},
|
| 235 |
+
"131327": {
|
| 236 |
+
"content": "<tfoot>",
|
| 237 |
+
"lstrip": false,
|
| 238 |
+
"normalized": false,
|
| 239 |
+
"rstrip": false,
|
| 240 |
+
"single_word": false,
|
| 241 |
+
"special": true
|
| 242 |
+
},
|
| 243 |
+
"131328": {
|
| 244 |
+
"content": "<th>",
|
| 245 |
+
"lstrip": false,
|
| 246 |
+
"normalized": false,
|
| 247 |
+
"rstrip": false,
|
| 248 |
+
"single_word": false,
|
| 249 |
+
"special": true
|
| 250 |
+
},
|
| 251 |
+
"131329": {
|
| 252 |
+
"content": "</caption>",
|
| 253 |
+
"lstrip": false,
|
| 254 |
+
"normalized": false,
|
| 255 |
+
"rstrip": false,
|
| 256 |
+
"single_word": false,
|
| 257 |
+
"special": true
|
| 258 |
+
},
|
| 259 |
+
"131330": {
|
| 260 |
+
"content": "</thead>",
|
| 261 |
+
"lstrip": false,
|
| 262 |
+
"normalized": false,
|
| 263 |
+
"rstrip": false,
|
| 264 |
+
"single_word": false,
|
| 265 |
+
"special": true
|
| 266 |
+
},
|
| 267 |
+
"131331": {
|
| 268 |
+
"content": "</tbody>",
|
| 269 |
+
"lstrip": false,
|
| 270 |
+
"normalized": false,
|
| 271 |
+
"rstrip": false,
|
| 272 |
+
"single_word": false,
|
| 273 |
+
"special": true
|
| 274 |
+
},
|
| 275 |
+
"131332": {
|
| 276 |
+
"content": "</tfoot>\"",
|
| 277 |
+
"lstrip": false,
|
| 278 |
+
"normalized": false,
|
| 279 |
+
"rstrip": false,
|
| 280 |
+
"single_word": false,
|
| 281 |
+
"special": true
|
| 282 |
+
},
|
| 283 |
+
"131333": {
|
| 284 |
+
"content": "</th>",
|
| 285 |
+
"lstrip": false,
|
| 286 |
+
"normalized": false,
|
| 287 |
+
"rstrip": false,
|
| 288 |
+
"single_word": false,
|
| 289 |
+
"special": true
|
| 290 |
+
},
|
| 291 |
+
"131334": {
|
| 292 |
+
"content": "<h1>",
|
| 293 |
+
"lstrip": false,
|
| 294 |
+
"normalized": false,
|
| 295 |
+
"rstrip": false,
|
| 296 |
+
"single_word": false,
|
| 297 |
+
"special": true
|
| 298 |
+
},
|
| 299 |
+
"131335": {
|
| 300 |
+
"content": "<h2>",
|
| 301 |
+
"lstrip": false,
|
| 302 |
+
"normalized": false,
|
| 303 |
+
"rstrip": false,
|
| 304 |
+
"single_word": false,
|
| 305 |
+
"special": true
|
| 306 |
+
},
|
| 307 |
+
"131336": {
|
| 308 |
+
"content": "<h3>",
|
| 309 |
+
"lstrip": false,
|
| 310 |
+
"normalized": false,
|
| 311 |
+
"rstrip": false,
|
| 312 |
+
"single_word": false,
|
| 313 |
+
"special": true
|
| 314 |
+
},
|
| 315 |
+
"131337": {
|
| 316 |
+
"content": "<h4>",
|
| 317 |
+
"lstrip": false,
|
| 318 |
+
"normalized": false,
|
| 319 |
+
"rstrip": false,
|
| 320 |
+
"single_word": false,
|
| 321 |
+
"special": true
|
| 322 |
+
},
|
| 323 |
+
"131338": {
|
| 324 |
+
"content": "<h5>",
|
| 325 |
+
"lstrip": false,
|
| 326 |
+
"normalized": false,
|
| 327 |
+
"rstrip": false,
|
| 328 |
+
"single_word": false,
|
| 329 |
+
"special": true
|
| 330 |
+
},
|
| 331 |
+
"131339": {
|
| 332 |
+
"content": "<h6>",
|
| 333 |
+
"lstrip": false,
|
| 334 |
+
"normalized": false,
|
| 335 |
+
"rstrip": false,
|
| 336 |
+
"single_word": false,
|
| 337 |
+
"special": true
|
| 338 |
+
},
|
| 339 |
+
"131340": {
|
| 340 |
+
"content": "<blockquote>",
|
| 341 |
+
"lstrip": false,
|
| 342 |
+
"normalized": false,
|
| 343 |
+
"rstrip": false,
|
| 344 |
+
"single_word": false,
|
| 345 |
+
"special": true
|
| 346 |
+
},
|
| 347 |
+
"131341": {
|
| 348 |
+
"content": "</h1>",
|
| 349 |
+
"lstrip": false,
|
| 350 |
+
"normalized": false,
|
| 351 |
+
"rstrip": false,
|
| 352 |
+
"single_word": false,
|
| 353 |
+
"special": true
|
| 354 |
+
},
|
| 355 |
+
"131342": {
|
| 356 |
+
"content": "</h2>",
|
| 357 |
+
"lstrip": false,
|
| 358 |
+
"normalized": false,
|
| 359 |
+
"rstrip": false,
|
| 360 |
+
"single_word": false,
|
| 361 |
+
"special": true
|
| 362 |
+
},
|
| 363 |
+
"131343": {
|
| 364 |
+
"content": "</h4>",
|
| 365 |
+
"lstrip": false,
|
| 366 |
+
"normalized": false,
|
| 367 |
+
"rstrip": false,
|
| 368 |
+
"single_word": false,
|
| 369 |
+
"special": true
|
| 370 |
+
},
|
| 371 |
+
"131344": {
|
| 372 |
+
"content": "</h5>",
|
| 373 |
+
"lstrip": false,
|
| 374 |
+
"normalized": false,
|
| 375 |
+
"rstrip": false,
|
| 376 |
+
"single_word": false,
|
| 377 |
+
"special": true
|
| 378 |
+
},
|
| 379 |
+
"131345": {
|
| 380 |
+
"content": "</h6>",
|
| 381 |
+
"lstrip": false,
|
| 382 |
+
"normalized": false,
|
| 383 |
+
"rstrip": false,
|
| 384 |
+
"single_word": false,
|
| 385 |
+
"special": true
|
| 386 |
+
},
|
| 387 |
+
"131346": {
|
| 388 |
+
"content": "</blockquote>",
|
| 389 |
+
"lstrip": false,
|
| 390 |
+
"normalized": false,
|
| 391 |
+
"rstrip": false,
|
| 392 |
+
"single_word": false,
|
| 393 |
+
"special": true
|
| 394 |
+
},
|
| 395 |
+
"131347": {
|
| 396 |
+
"content": "<strong>",
|
| 397 |
+
"lstrip": false,
|
| 398 |
+
"normalized": false,
|
| 399 |
+
"rstrip": false,
|
| 400 |
+
"single_word": false,
|
| 401 |
+
"special": true
|
| 402 |
+
},
|
| 403 |
+
"131348": {
|
| 404 |
+
"content": "<em>",
|
| 405 |
+
"lstrip": false,
|
| 406 |
+
"normalized": false,
|
| 407 |
+
"rstrip": false,
|
| 408 |
+
"single_word": false,
|
| 409 |
+
"special": true
|
| 410 |
+
},
|
| 411 |
+
"131349": {
|
| 412 |
+
"content": "<b>",
|
| 413 |
+
"lstrip": false,
|
| 414 |
+
"normalized": false,
|
| 415 |
+
"rstrip": false,
|
| 416 |
+
"single_word": false,
|
| 417 |
+
"special": true
|
| 418 |
+
},
|
| 419 |
+
"131350": {
|
| 420 |
+
"content": "<i>",
|
| 421 |
+
"lstrip": false,
|
| 422 |
+
"normalized": false,
|
| 423 |
+
"rstrip": false,
|
| 424 |
+
"single_word": false,
|
| 425 |
+
"special": true
|
| 426 |
+
},
|
| 427 |
+
"131351": {
|
| 428 |
+
"content": "<u>",
|
| 429 |
+
"lstrip": false,
|
| 430 |
+
"normalized": false,
|
| 431 |
+
"rstrip": false,
|
| 432 |
+
"single_word": false,
|
| 433 |
+
"special": true
|
| 434 |
+
},
|
| 435 |
+
"131352": {
|
| 436 |
+
"content": "<sub>",
|
| 437 |
+
"lstrip": false,
|
| 438 |
+
"normalized": false,
|
| 439 |
+
"rstrip": false,
|
| 440 |
+
"single_word": false,
|
| 441 |
+
"special": true
|
| 442 |
+
},
|
| 443 |
+
"131353": {
|
| 444 |
+
"content": "<sup>",
|
| 445 |
+
"lstrip": false,
|
| 446 |
+
"normalized": false,
|
| 447 |
+
"rstrip": false,
|
| 448 |
+
"single_word": false,
|
| 449 |
+
"special": true
|
| 450 |
+
},
|
| 451 |
+
"131354": {
|
| 452 |
+
"content": "<code>",
|
| 453 |
+
"lstrip": false,
|
| 454 |
+
"normalized": false,
|
| 455 |
+
"rstrip": false,
|
| 456 |
+
"single_word": false,
|
| 457 |
+
"special": true
|
| 458 |
+
},
|
| 459 |
+
"131355": {
|
| 460 |
+
"content": "</strong>",
|
| 461 |
+
"lstrip": false,
|
| 462 |
+
"normalized": false,
|
| 463 |
+
"rstrip": false,
|
| 464 |
+
"single_word": false,
|
| 465 |
+
"special": true
|
| 466 |
+
},
|
| 467 |
+
"131356": {
|
| 468 |
+
"content": "</em>",
|
| 469 |
+
"lstrip": false,
|
| 470 |
+
"normalized": false,
|
| 471 |
+
"rstrip": false,
|
| 472 |
+
"single_word": false,
|
| 473 |
+
"special": true
|
| 474 |
+
},
|
| 475 |
+
"131357": {
|
| 476 |
+
"content": "</b>",
|
| 477 |
+
"lstrip": false,
|
| 478 |
+
"normalized": false,
|
| 479 |
+
"rstrip": false,
|
| 480 |
+
"single_word": false,
|
| 481 |
+
"special": true
|
| 482 |
+
},
|
| 483 |
+
"131358": {
|
| 484 |
+
"content": "</i>",
|
| 485 |
+
"lstrip": false,
|
| 486 |
+
"normalized": false,
|
| 487 |
+
"rstrip": false,
|
| 488 |
+
"single_word": false,
|
| 489 |
+
"special": true
|
| 490 |
+
},
|
| 491 |
+
"131359": {
|
| 492 |
+
"content": "</u>",
|
| 493 |
+
"lstrip": false,
|
| 494 |
+
"normalized": false,
|
| 495 |
+
"rstrip": false,
|
| 496 |
+
"single_word": false,
|
| 497 |
+
"special": true
|
| 498 |
+
},
|
| 499 |
+
"131360": {
|
| 500 |
+
"content": "</sub>",
|
| 501 |
+
"lstrip": false,
|
| 502 |
+
"normalized": false,
|
| 503 |
+
"rstrip": false,
|
| 504 |
+
"single_word": false,
|
| 505 |
+
"special": true
|
| 506 |
+
},
|
| 507 |
+
"131361": {
|
| 508 |
+
"content": "</sup>",
|
| 509 |
+
"lstrip": false,
|
| 510 |
+
"normalized": false,
|
| 511 |
+
"rstrip": false,
|
| 512 |
+
"single_word": false,
|
| 513 |
+
"special": true
|
| 514 |
+
},
|
| 515 |
+
"131362": {
|
| 516 |
+
"content": "</code>",
|
| 517 |
+
"lstrip": false,
|
| 518 |
+
"normalized": false,
|
| 519 |
+
"rstrip": false,
|
| 520 |
+
"single_word": false,
|
| 521 |
+
"special": true
|
| 522 |
+
},
|
| 523 |
+
"131363": {
|
| 524 |
+
"content": "<|finetune_right_pad_id|>",
|
| 525 |
+
"lstrip": false,
|
| 526 |
+
"normalized": false,
|
| 527 |
+
"rstrip": false,
|
| 528 |
+
"single_word": false,
|
| 529 |
+
"special": true
|
| 530 |
+
},
|
| 531 |
+
"131364": {
|
| 532 |
+
"content": "<|eom_id|>",
|
| 533 |
+
"lstrip": false,
|
| 534 |
+
"normalized": false,
|
| 535 |
+
"rstrip": false,
|
| 536 |
+
"single_word": false,
|
| 537 |
+
"special": true
|
| 538 |
+
},
|
| 539 |
+
"131365": {
|
| 540 |
+
"content": "<|python_tag|>",
|
| 541 |
+
"lstrip": false,
|
| 542 |
+
"normalized": false,
|
| 543 |
+
"rstrip": false,
|
| 544 |
+
"single_word": false,
|
| 545 |
+
"special": true
|
| 546 |
+
},
|
| 547 |
+
"131366": {
|
| 548 |
+
"content": "#@이름@#",
|
| 549 |
+
"lstrip": false,
|
| 550 |
+
"normalized": false,
|
| 551 |
+
"rstrip": false,
|
| 552 |
+
"single_word": false,
|
| 553 |
+
"special": true
|
| 554 |
+
},
|
| 555 |
+
"131367": {
|
| 556 |
+
"content": "#@ID@#",
|
| 557 |
+
"lstrip": false,
|
| 558 |
+
"normalized": false,
|
| 559 |
+
"rstrip": false,
|
| 560 |
+
"single_word": false,
|
| 561 |
+
"special": true
|
| 562 |
+
},
|
| 563 |
+
"131368": {
|
| 564 |
+
"content": "#@주민번호@#",
|
| 565 |
+
"lstrip": false,
|
| 566 |
+
"normalized": false,
|
| 567 |
+
"rstrip": false,
|
| 568 |
+
"single_word": false,
|
| 569 |
+
"special": true
|
| 570 |
+
},
|
| 571 |
+
"131369": {
|
| 572 |
+
"content": "#@이메일@#",
|
| 573 |
+
"lstrip": false,
|
| 574 |
+
"normalized": false,
|
| 575 |
+
"rstrip": false,
|
| 576 |
+
"single_word": false,
|
| 577 |
+
"special": true
|
| 578 |
+
},
|
| 579 |
+
"131370": {
|
| 580 |
+
"content": "#@계좌번호@#",
|
| 581 |
+
"lstrip": false,
|
| 582 |
+
"normalized": false,
|
| 583 |
+
"rstrip": false,
|
| 584 |
+
"single_word": false,
|
| 585 |
+
"special": true
|
| 586 |
+
},
|
| 587 |
+
"131371": {
|
| 588 |
+
"content": "#@전화번호@#",
|
| 589 |
+
"lstrip": false,
|
| 590 |
+
"normalized": false,
|
| 591 |
+
"rstrip": false,
|
| 592 |
+
"single_word": false,
|
| 593 |
+
"special": true
|
| 594 |
+
},
|
| 595 |
+
"131372": {
|
| 596 |
+
"content": "#@주소@#",
|
| 597 |
+
"lstrip": false,
|
| 598 |
+
"normalized": false,
|
| 599 |
+
"rstrip": false,
|
| 600 |
+
"single_word": false,
|
| 601 |
+
"special": true
|
| 602 |
+
},
|
| 603 |
+
"131373": {
|
| 604 |
+
"content": "#@자동차번호@#",
|
| 605 |
+
"lstrip": false,
|
| 606 |
+
"normalized": false,
|
| 607 |
+
"rstrip": false,
|
| 608 |
+
"single_word": false,
|
| 609 |
+
"special": true
|
| 610 |
+
},
|
| 611 |
+
"131374": {
|
| 612 |
+
"content": "#@사업자등록번호@#",
|
| 613 |
+
"lstrip": false,
|
| 614 |
+
"normalized": false,
|
| 615 |
+
"rstrip": false,
|
| 616 |
+
"single_word": false,
|
| 617 |
+
"special": true
|
| 618 |
+
},
|
| 619 |
+
"131375": {
|
| 620 |
+
"content": "#@자동차운전면허번호@#",
|
| 621 |
+
"lstrip": false,
|
| 622 |
+
"normalized": false,
|
| 623 |
+
"rstrip": false,
|
| 624 |
+
"single_word": false,
|
| 625 |
+
"special": true
|
| 626 |
+
},
|
| 627 |
+
"131376": {
|
| 628 |
+
"content": "#@여권번호@#",
|
| 629 |
+
"lstrip": false,
|
| 630 |
+
"normalized": false,
|
| 631 |
+
"rstrip": false,
|
| 632 |
+
"single_word": false,
|
| 633 |
+
"special": true
|
| 634 |
+
},
|
| 635 |
+
"131377": {
|
| 636 |
+
"content": "#@외국인등록번호@#",
|
| 637 |
+
"lstrip": false,
|
| 638 |
+
"normalized": false,
|
| 639 |
+
"rstrip": false,
|
| 640 |
+
"single_word": false,
|
| 641 |
+
"special": true
|
| 642 |
+
},
|
| 643 |
+
"131378": {
|
| 644 |
+
"content": "#@건보번호@#",
|
| 645 |
+
"lstrip": false,
|
| 646 |
+
"normalized": false,
|
| 647 |
+
"rstrip": false,
|
| 648 |
+
"single_word": false,
|
| 649 |
+
"special": true
|
| 650 |
+
},
|
| 651 |
+
"131379": {
|
| 652 |
+
"content": "#@신용카드번호@#",
|
| 653 |
+
"lstrip": false,
|
| 654 |
+
"normalized": false,
|
| 655 |
+
"rstrip": false,
|
| 656 |
+
"single_word": false,
|
| 657 |
+
"special": true
|
| 658 |
+
},
|
| 659 |
+
"131380": {
|
| 660 |
+
"content": "#@IP@#",
|
| 661 |
+
"lstrip": false,
|
| 662 |
+
"normalized": false,
|
| 663 |
+
"rstrip": false,
|
| 664 |
+
"single_word": false,
|
| 665 |
+
"special": true
|
| 666 |
+
},
|
| 667 |
+
"131381": {
|
| 668 |
+
"content": "#@MAC주소@#",
|
| 669 |
+
"lstrip": false,
|
| 670 |
+
"normalized": false,
|
| 671 |
+
"rstrip": false,
|
| 672 |
+
"single_word": false,
|
| 673 |
+
"special": true
|
| 674 |
+
},
|
| 675 |
+
"131382": {
|
| 676 |
+
"content": "#@SNS계정@#",
|
| 677 |
+
"lstrip": false,
|
| 678 |
+
"normalized": false,
|
| 679 |
+
"rstrip": false,
|
| 680 |
+
"single_word": false,
|
| 681 |
+
"special": true
|
| 682 |
+
},
|
| 683 |
+
"131383": {
|
| 684 |
+
"content": "#@통관번호#",
|
| 685 |
+
"lstrip": false,
|
| 686 |
+
"normalized": false,
|
| 687 |
+
"rstrip": false,
|
| 688 |
+
"single_word": false,
|
| 689 |
+
"special": true
|
| 690 |
+
}
|
| 691 |
+
},
|
| 692 |
+
"bos_token": "<|begin_of_text|>",
|
| 693 |
+
"clean_up_tokenization_spaces": true,
|
| 694 |
+
"content": "<|end_of_text|>",
|
| 695 |
+
"eos_token": "<|end_of_text|>",
|
| 696 |
+
"extra_special_tokens": {},
|
| 697 |
+
"legacy": false,
|
| 698 |
+
"lstrip": false,
|
| 699 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 700 |
+
"normalized": false,
|
| 701 |
+
"pad_token": "<|end_of_text|>",
|
| 702 |
+
"rstrip": false,
|
| 703 |
+
"single_word": false,
|
| 704 |
+
"tokenizer_class": "PreTrainedTokenizerFast"
|
| 705 |
+
}
|