Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +0 -0
- added_tokens.json +28 -0
- chat_template.jinja +85 -0
- chat_template.json +3 -0
- config.json +29 -0
- config_sentence_transformers.json +8 -0
- generation_config.json +6 -0
- merges.txt +0 -0
- model.safetensors +3 -0
- model.safetensors.index.json +358 -0
- modules.json +20 -0
- preprocessor_config.json +31 -0
- sentence_bert_config.json +4 -0
- sentencepiece.bpe.model +3 -0
- special_tokens_map.json +51 -0
- tokenizer.json +3 -0
- tokenizer_config.json +56 -0
- vocab.json +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
The diff for this file is too large to render.
See raw diff
|
|
added_tokens.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</think>": 151668,
|
3 |
+
"</tool_call>": 151658,
|
4 |
+
"</tool_response>": 151666,
|
5 |
+
"<think>": 151667,
|
6 |
+
"<tool_call>": 151657,
|
7 |
+
"<tool_response>": 151665,
|
8 |
+
"<|box_end|>": 151649,
|
9 |
+
"<|box_start|>": 151648,
|
10 |
+
"<|endoftext|>": 151643,
|
11 |
+
"<|file_sep|>": 151664,
|
12 |
+
"<|fim_middle|>": 151660,
|
13 |
+
"<|fim_pad|>": 151662,
|
14 |
+
"<|fim_prefix|>": 151659,
|
15 |
+
"<|fim_suffix|>": 151661,
|
16 |
+
"<|im_end|>": 151645,
|
17 |
+
"<|im_start|>": 151644,
|
18 |
+
"<|image_pad|>": 151655,
|
19 |
+
"<|object_ref_end|>": 151647,
|
20 |
+
"<|object_ref_start|>": 151646,
|
21 |
+
"<|quad_end|>": 151651,
|
22 |
+
"<|quad_start|>": 151650,
|
23 |
+
"<|repo_name|>": 151663,
|
24 |
+
"<|video_pad|>": 151656,
|
25 |
+
"<|vision_end|>": 151653,
|
26 |
+
"<|vision_pad|>": 151654,
|
27 |
+
"<|vision_start|>": 151652
|
28 |
+
}
|
chat_template.jinja
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{%- if tools %}
|
2 |
+
{{- '<|im_start|>system\n' }}
|
3 |
+
{%- if messages[0].role == 'system' %}
|
4 |
+
{{- messages[0].content + '\n\n' }}
|
5 |
+
{%- endif %}
|
6 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
7 |
+
{%- for tool in tools %}
|
8 |
+
{{- "\n" }}
|
9 |
+
{{- tool | tojson }}
|
10 |
+
{%- endfor %}
|
11 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
12 |
+
{%- else %}
|
13 |
+
{%- if messages[0].role == 'system' %}
|
14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
15 |
+
{%- endif %}
|
16 |
+
{%- endif %}
|
17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
18 |
+
{%- for message in messages[::-1] %}
|
19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
20 |
+
{%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
21 |
+
{%- set ns.multi_step_tool = false %}
|
22 |
+
{%- set ns.last_query_index = index %}
|
23 |
+
{%- endif %}
|
24 |
+
{%- endfor %}
|
25 |
+
{%- for message in messages %}
|
26 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
27 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
28 |
+
{%- elif message.role == "assistant" %}
|
29 |
+
{%- set content = message.content %}
|
30 |
+
{%- set reasoning_content = '' %}
|
31 |
+
{%- if message.reasoning_content is defined and message.reasoning_content is not none %}
|
32 |
+
{%- set reasoning_content = message.reasoning_content %}
|
33 |
+
{%- else %}
|
34 |
+
{%- if '</think>' in message.content %}
|
35 |
+
{%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
|
36 |
+
{%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
37 |
+
{%- endif %}
|
38 |
+
{%- endif %}
|
39 |
+
{%- if loop.index0 > ns.last_query_index %}
|
40 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
41 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
42 |
+
{%- else %}
|
43 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
44 |
+
{%- endif %}
|
45 |
+
{%- else %}
|
46 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
47 |
+
{%- endif %}
|
48 |
+
{%- if message.tool_calls %}
|
49 |
+
{%- for tool_call in message.tool_calls %}
|
50 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
51 |
+
{{- '\n' }}
|
52 |
+
{%- endif %}
|
53 |
+
{%- if tool_call.function %}
|
54 |
+
{%- set tool_call = tool_call.function %}
|
55 |
+
{%- endif %}
|
56 |
+
{{- '<tool_call>\n{"name": "' }}
|
57 |
+
{{- tool_call.name }}
|
58 |
+
{{- '", "arguments": ' }}
|
59 |
+
{%- if tool_call.arguments is string %}
|
60 |
+
{{- tool_call.arguments }}
|
61 |
+
{%- else %}
|
62 |
+
{{- tool_call.arguments | tojson }}
|
63 |
+
{%- endif %}
|
64 |
+
{{- '}\n</tool_call>' }}
|
65 |
+
{%- endfor %}
|
66 |
+
{%- endif %}
|
67 |
+
{{- '<|im_end|>\n' }}
|
68 |
+
{%- elif message.role == "tool" %}
|
69 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
70 |
+
{{- '<|im_start|>user' }}
|
71 |
+
{%- endif %}
|
72 |
+
{{- '\n<tool_response>\n' }}
|
73 |
+
{{- message.content }}
|
74 |
+
{{- '\n</tool_response>' }}
|
75 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
76 |
+
{{- '<|im_end|>\n' }}
|
77 |
+
{%- endif %}
|
78 |
+
{%- endif %}
|
79 |
+
{%- endfor %}
|
80 |
+
{%- if add_generation_prompt %}
|
81 |
+
{{- '<|im_start|>assistant\n' }}
|
82 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
83 |
+
{{- '<think>\n\n</think>\n\n' }}
|
84 |
+
{%- endif %}
|
85 |
+
{%- endif %}
|
chat_template.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}"
|
3 |
+
}
|
config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"BertModel"
|
4 |
+
],
|
5 |
+
"attention_probs_dropout_prob": 0.1,
|
6 |
+
"classifier_dropout": null,
|
7 |
+
"hidden_act": "gelu",
|
8 |
+
"hidden_dropout_prob": 0.1,
|
9 |
+
"hidden_size": 384,
|
10 |
+
"initializer_range": 0.02,
|
11 |
+
"intermediate_size": 1536,
|
12 |
+
"layer_norm_eps": 1e-12,
|
13 |
+
"max_position_embeddings": 512,
|
14 |
+
"model_type": "bert",
|
15 |
+
"num_attention_heads": 12,
|
16 |
+
"num_hidden_layers": 12,
|
17 |
+
"pad_token_id": 0,
|
18 |
+
"position_embedding_type": "absolute",
|
19 |
+
"quantization": {
|
20 |
+
"group_size": 64,
|
21 |
+
"bits": 4
|
22 |
+
},
|
23 |
+
"tokenizer_class": "XLMRobertaTokenizer",
|
24 |
+
"torch_dtype": "float32",
|
25 |
+
"transformers_version": "4.29.0",
|
26 |
+
"type_vocab_size": 2,
|
27 |
+
"use_cache": true,
|
28 |
+
"vocab_size": 250037
|
29 |
+
}
|
config_sentence_transformers.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"prompts": {
|
3 |
+
"query": "Instruct: Given a web search query, retrieve relevant passages that answer the query\nQuery:",
|
4 |
+
"document": ""
|
5 |
+
},
|
6 |
+
"default_prompt_name": null,
|
7 |
+
"similarity_fn_name": "cosine"
|
8 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 151643,
|
3 |
+
"eos_token_id": 151643,
|
4 |
+
"max_new_tokens": 2048,
|
5 |
+
"transformers_version": "4.51.3"
|
6 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:402030fcb35e5c23a390962eb18d67c027f3e53f4c46e2fe72e6da069d7d3a83
|
3 |
+
size 66306360
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,358 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 66268008
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"embeddings.LayerNorm.bias": "model.safetensors",
|
7 |
+
"embeddings.LayerNorm.weight": "model.safetensors",
|
8 |
+
"embeddings.position_embeddings.biases": "model.safetensors",
|
9 |
+
"embeddings.position_embeddings.scales": "model.safetensors",
|
10 |
+
"embeddings.position_embeddings.weight": "model.safetensors",
|
11 |
+
"embeddings.token_type_embeddings.biases": "model.safetensors",
|
12 |
+
"embeddings.token_type_embeddings.scales": "model.safetensors",
|
13 |
+
"embeddings.token_type_embeddings.weight": "model.safetensors",
|
14 |
+
"embeddings.word_embeddings.biases": "model.safetensors",
|
15 |
+
"embeddings.word_embeddings.scales": "model.safetensors",
|
16 |
+
"embeddings.word_embeddings.weight": "model.safetensors",
|
17 |
+
"encoder.layer.0.attention.output.LayerNorm.bias": "model.safetensors",
|
18 |
+
"encoder.layer.0.attention.output.LayerNorm.weight": "model.safetensors",
|
19 |
+
"encoder.layer.0.attention.output.dense.bias": "model.safetensors",
|
20 |
+
"encoder.layer.0.attention.output.dense.biases": "model.safetensors",
|
21 |
+
"encoder.layer.0.attention.output.dense.scales": "model.safetensors",
|
22 |
+
"encoder.layer.0.attention.output.dense.weight": "model.safetensors",
|
23 |
+
"encoder.layer.0.attention.self.key.bias": "model.safetensors",
|
24 |
+
"encoder.layer.0.attention.self.key.biases": "model.safetensors",
|
25 |
+
"encoder.layer.0.attention.self.key.scales": "model.safetensors",
|
26 |
+
"encoder.layer.0.attention.self.key.weight": "model.safetensors",
|
27 |
+
"encoder.layer.0.attention.self.query.bias": "model.safetensors",
|
28 |
+
"encoder.layer.0.attention.self.query.biases": "model.safetensors",
|
29 |
+
"encoder.layer.0.attention.self.query.scales": "model.safetensors",
|
30 |
+
"encoder.layer.0.attention.self.query.weight": "model.safetensors",
|
31 |
+
"encoder.layer.0.attention.self.value.bias": "model.safetensors",
|
32 |
+
"encoder.layer.0.attention.self.value.biases": "model.safetensors",
|
33 |
+
"encoder.layer.0.attention.self.value.scales": "model.safetensors",
|
34 |
+
"encoder.layer.0.attention.self.value.weight": "model.safetensors",
|
35 |
+
"encoder.layer.0.intermediate.dense.bias": "model.safetensors",
|
36 |
+
"encoder.layer.0.intermediate.dense.biases": "model.safetensors",
|
37 |
+
"encoder.layer.0.intermediate.dense.scales": "model.safetensors",
|
38 |
+
"encoder.layer.0.intermediate.dense.weight": "model.safetensors",
|
39 |
+
"encoder.layer.0.output.LayerNorm.bias": "model.safetensors",
|
40 |
+
"encoder.layer.0.output.LayerNorm.weight": "model.safetensors",
|
41 |
+
"encoder.layer.0.output.dense.bias": "model.safetensors",
|
42 |
+
"encoder.layer.0.output.dense.biases": "model.safetensors",
|
43 |
+
"encoder.layer.0.output.dense.scales": "model.safetensors",
|
44 |
+
"encoder.layer.0.output.dense.weight": "model.safetensors",
|
45 |
+
"encoder.layer.1.attention.output.LayerNorm.bias": "model.safetensors",
|
46 |
+
"encoder.layer.1.attention.output.LayerNorm.weight": "model.safetensors",
|
47 |
+
"encoder.layer.1.attention.output.dense.bias": "model.safetensors",
|
48 |
+
"encoder.layer.1.attention.output.dense.biases": "model.safetensors",
|
49 |
+
"encoder.layer.1.attention.output.dense.scales": "model.safetensors",
|
50 |
+
"encoder.layer.1.attention.output.dense.weight": "model.safetensors",
|
51 |
+
"encoder.layer.1.attention.self.key.bias": "model.safetensors",
|
52 |
+
"encoder.layer.1.attention.self.key.biases": "model.safetensors",
|
53 |
+
"encoder.layer.1.attention.self.key.scales": "model.safetensors",
|
54 |
+
"encoder.layer.1.attention.self.key.weight": "model.safetensors",
|
55 |
+
"encoder.layer.1.attention.self.query.bias": "model.safetensors",
|
56 |
+
"encoder.layer.1.attention.self.query.biases": "model.safetensors",
|
57 |
+
"encoder.layer.1.attention.self.query.scales": "model.safetensors",
|
58 |
+
"encoder.layer.1.attention.self.query.weight": "model.safetensors",
|
59 |
+
"encoder.layer.1.attention.self.value.bias": "model.safetensors",
|
60 |
+
"encoder.layer.1.attention.self.value.biases": "model.safetensors",
|
61 |
+
"encoder.layer.1.attention.self.value.scales": "model.safetensors",
|
62 |
+
"encoder.layer.1.attention.self.value.weight": "model.safetensors",
|
63 |
+
"encoder.layer.1.intermediate.dense.bias": "model.safetensors",
|
64 |
+
"encoder.layer.1.intermediate.dense.biases": "model.safetensors",
|
65 |
+
"encoder.layer.1.intermediate.dense.scales": "model.safetensors",
|
66 |
+
"encoder.layer.1.intermediate.dense.weight": "model.safetensors",
|
67 |
+
"encoder.layer.1.output.LayerNorm.bias": "model.safetensors",
|
68 |
+
"encoder.layer.1.output.LayerNorm.weight": "model.safetensors",
|
69 |
+
"encoder.layer.1.output.dense.bias": "model.safetensors",
|
70 |
+
"encoder.layer.1.output.dense.biases": "model.safetensors",
|
71 |
+
"encoder.layer.1.output.dense.scales": "model.safetensors",
|
72 |
+
"encoder.layer.1.output.dense.weight": "model.safetensors",
|
73 |
+
"encoder.layer.10.attention.output.LayerNorm.bias": "model.safetensors",
|
74 |
+
"encoder.layer.10.attention.output.LayerNorm.weight": "model.safetensors",
|
75 |
+
"encoder.layer.10.attention.output.dense.bias": "model.safetensors",
|
76 |
+
"encoder.layer.10.attention.output.dense.biases": "model.safetensors",
|
77 |
+
"encoder.layer.10.attention.output.dense.scales": "model.safetensors",
|
78 |
+
"encoder.layer.10.attention.output.dense.weight": "model.safetensors",
|
79 |
+
"encoder.layer.10.attention.self.key.bias": "model.safetensors",
|
80 |
+
"encoder.layer.10.attention.self.key.biases": "model.safetensors",
|
81 |
+
"encoder.layer.10.attention.self.key.scales": "model.safetensors",
|
82 |
+
"encoder.layer.10.attention.self.key.weight": "model.safetensors",
|
83 |
+
"encoder.layer.10.attention.self.query.bias": "model.safetensors",
|
84 |
+
"encoder.layer.10.attention.self.query.biases": "model.safetensors",
|
85 |
+
"encoder.layer.10.attention.self.query.scales": "model.safetensors",
|
86 |
+
"encoder.layer.10.attention.self.query.weight": "model.safetensors",
|
87 |
+
"encoder.layer.10.attention.self.value.bias": "model.safetensors",
|
88 |
+
"encoder.layer.10.attention.self.value.biases": "model.safetensors",
|
89 |
+
"encoder.layer.10.attention.self.value.scales": "model.safetensors",
|
90 |
+
"encoder.layer.10.attention.self.value.weight": "model.safetensors",
|
91 |
+
"encoder.layer.10.intermediate.dense.bias": "model.safetensors",
|
92 |
+
"encoder.layer.10.intermediate.dense.biases": "model.safetensors",
|
93 |
+
"encoder.layer.10.intermediate.dense.scales": "model.safetensors",
|
94 |
+
"encoder.layer.10.intermediate.dense.weight": "model.safetensors",
|
95 |
+
"encoder.layer.10.output.LayerNorm.bias": "model.safetensors",
|
96 |
+
"encoder.layer.10.output.LayerNorm.weight": "model.safetensors",
|
97 |
+
"encoder.layer.10.output.dense.bias": "model.safetensors",
|
98 |
+
"encoder.layer.10.output.dense.biases": "model.safetensors",
|
99 |
+
"encoder.layer.10.output.dense.scales": "model.safetensors",
|
100 |
+
"encoder.layer.10.output.dense.weight": "model.safetensors",
|
101 |
+
"encoder.layer.11.attention.output.LayerNorm.bias": "model.safetensors",
|
102 |
+
"encoder.layer.11.attention.output.LayerNorm.weight": "model.safetensors",
|
103 |
+
"encoder.layer.11.attention.output.dense.bias": "model.safetensors",
|
104 |
+
"encoder.layer.11.attention.output.dense.biases": "model.safetensors",
|
105 |
+
"encoder.layer.11.attention.output.dense.scales": "model.safetensors",
|
106 |
+
"encoder.layer.11.attention.output.dense.weight": "model.safetensors",
|
107 |
+
"encoder.layer.11.attention.self.key.bias": "model.safetensors",
|
108 |
+
"encoder.layer.11.attention.self.key.biases": "model.safetensors",
|
109 |
+
"encoder.layer.11.attention.self.key.scales": "model.safetensors",
|
110 |
+
"encoder.layer.11.attention.self.key.weight": "model.safetensors",
|
111 |
+
"encoder.layer.11.attention.self.query.bias": "model.safetensors",
|
112 |
+
"encoder.layer.11.attention.self.query.biases": "model.safetensors",
|
113 |
+
"encoder.layer.11.attention.self.query.scales": "model.safetensors",
|
114 |
+
"encoder.layer.11.attention.self.query.weight": "model.safetensors",
|
115 |
+
"encoder.layer.11.attention.self.value.bias": "model.safetensors",
|
116 |
+
"encoder.layer.11.attention.self.value.biases": "model.safetensors",
|
117 |
+
"encoder.layer.11.attention.self.value.scales": "model.safetensors",
|
118 |
+
"encoder.layer.11.attention.self.value.weight": "model.safetensors",
|
119 |
+
"encoder.layer.11.intermediate.dense.bias": "model.safetensors",
|
120 |
+
"encoder.layer.11.intermediate.dense.biases": "model.safetensors",
|
121 |
+
"encoder.layer.11.intermediate.dense.scales": "model.safetensors",
|
122 |
+
"encoder.layer.11.intermediate.dense.weight": "model.safetensors",
|
123 |
+
"encoder.layer.11.output.LayerNorm.bias": "model.safetensors",
|
124 |
+
"encoder.layer.11.output.LayerNorm.weight": "model.safetensors",
|
125 |
+
"encoder.layer.11.output.dense.bias": "model.safetensors",
|
126 |
+
"encoder.layer.11.output.dense.biases": "model.safetensors",
|
127 |
+
"encoder.layer.11.output.dense.scales": "model.safetensors",
|
128 |
+
"encoder.layer.11.output.dense.weight": "model.safetensors",
|
129 |
+
"encoder.layer.2.attention.output.LayerNorm.bias": "model.safetensors",
|
130 |
+
"encoder.layer.2.attention.output.LayerNorm.weight": "model.safetensors",
|
131 |
+
"encoder.layer.2.attention.output.dense.bias": "model.safetensors",
|
132 |
+
"encoder.layer.2.attention.output.dense.biases": "model.safetensors",
|
133 |
+
"encoder.layer.2.attention.output.dense.scales": "model.safetensors",
|
134 |
+
"encoder.layer.2.attention.output.dense.weight": "model.safetensors",
|
135 |
+
"encoder.layer.2.attention.self.key.bias": "model.safetensors",
|
136 |
+
"encoder.layer.2.attention.self.key.biases": "model.safetensors",
|
137 |
+
"encoder.layer.2.attention.self.key.scales": "model.safetensors",
|
138 |
+
"encoder.layer.2.attention.self.key.weight": "model.safetensors",
|
139 |
+
"encoder.layer.2.attention.self.query.bias": "model.safetensors",
|
140 |
+
"encoder.layer.2.attention.self.query.biases": "model.safetensors",
|
141 |
+
"encoder.layer.2.attention.self.query.scales": "model.safetensors",
|
142 |
+
"encoder.layer.2.attention.self.query.weight": "model.safetensors",
|
143 |
+
"encoder.layer.2.attention.self.value.bias": "model.safetensors",
|
144 |
+
"encoder.layer.2.attention.self.value.biases": "model.safetensors",
|
145 |
+
"encoder.layer.2.attention.self.value.scales": "model.safetensors",
|
146 |
+
"encoder.layer.2.attention.self.value.weight": "model.safetensors",
|
147 |
+
"encoder.layer.2.intermediate.dense.bias": "model.safetensors",
|
148 |
+
"encoder.layer.2.intermediate.dense.biases": "model.safetensors",
|
149 |
+
"encoder.layer.2.intermediate.dense.scales": "model.safetensors",
|
150 |
+
"encoder.layer.2.intermediate.dense.weight": "model.safetensors",
|
151 |
+
"encoder.layer.2.output.LayerNorm.bias": "model.safetensors",
|
152 |
+
"encoder.layer.2.output.LayerNorm.weight": "model.safetensors",
|
153 |
+
"encoder.layer.2.output.dense.bias": "model.safetensors",
|
154 |
+
"encoder.layer.2.output.dense.biases": "model.safetensors",
|
155 |
+
"encoder.layer.2.output.dense.scales": "model.safetensors",
|
156 |
+
"encoder.layer.2.output.dense.weight": "model.safetensors",
|
157 |
+
"encoder.layer.3.attention.output.LayerNorm.bias": "model.safetensors",
|
158 |
+
"encoder.layer.3.attention.output.LayerNorm.weight": "model.safetensors",
|
159 |
+
"encoder.layer.3.attention.output.dense.bias": "model.safetensors",
|
160 |
+
"encoder.layer.3.attention.output.dense.biases": "model.safetensors",
|
161 |
+
"encoder.layer.3.attention.output.dense.scales": "model.safetensors",
|
162 |
+
"encoder.layer.3.attention.output.dense.weight": "model.safetensors",
|
163 |
+
"encoder.layer.3.attention.self.key.bias": "model.safetensors",
|
164 |
+
"encoder.layer.3.attention.self.key.biases": "model.safetensors",
|
165 |
+
"encoder.layer.3.attention.self.key.scales": "model.safetensors",
|
166 |
+
"encoder.layer.3.attention.self.key.weight": "model.safetensors",
|
167 |
+
"encoder.layer.3.attention.self.query.bias": "model.safetensors",
|
168 |
+
"encoder.layer.3.attention.self.query.biases": "model.safetensors",
|
169 |
+
"encoder.layer.3.attention.self.query.scales": "model.safetensors",
|
170 |
+
"encoder.layer.3.attention.self.query.weight": "model.safetensors",
|
171 |
+
"encoder.layer.3.attention.self.value.bias": "model.safetensors",
|
172 |
+
"encoder.layer.3.attention.self.value.biases": "model.safetensors",
|
173 |
+
"encoder.layer.3.attention.self.value.scales": "model.safetensors",
|
174 |
+
"encoder.layer.3.attention.self.value.weight": "model.safetensors",
|
175 |
+
"encoder.layer.3.intermediate.dense.bias": "model.safetensors",
|
176 |
+
"encoder.layer.3.intermediate.dense.biases": "model.safetensors",
|
177 |
+
"encoder.layer.3.intermediate.dense.scales": "model.safetensors",
|
178 |
+
"encoder.layer.3.intermediate.dense.weight": "model.safetensors",
|
179 |
+
"encoder.layer.3.output.LayerNorm.bias": "model.safetensors",
|
180 |
+
"encoder.layer.3.output.LayerNorm.weight": "model.safetensors",
|
181 |
+
"encoder.layer.3.output.dense.bias": "model.safetensors",
|
182 |
+
"encoder.layer.3.output.dense.biases": "model.safetensors",
|
183 |
+
"encoder.layer.3.output.dense.scales": "model.safetensors",
|
184 |
+
"encoder.layer.3.output.dense.weight": "model.safetensors",
|
185 |
+
"encoder.layer.4.attention.output.LayerNorm.bias": "model.safetensors",
|
186 |
+
"encoder.layer.4.attention.output.LayerNorm.weight": "model.safetensors",
|
187 |
+
"encoder.layer.4.attention.output.dense.bias": "model.safetensors",
|
188 |
+
"encoder.layer.4.attention.output.dense.biases": "model.safetensors",
|
189 |
+
"encoder.layer.4.attention.output.dense.scales": "model.safetensors",
|
190 |
+
"encoder.layer.4.attention.output.dense.weight": "model.safetensors",
|
191 |
+
"encoder.layer.4.attention.self.key.bias": "model.safetensors",
|
192 |
+
"encoder.layer.4.attention.self.key.biases": "model.safetensors",
|
193 |
+
"encoder.layer.4.attention.self.key.scales": "model.safetensors",
|
194 |
+
"encoder.layer.4.attention.self.key.weight": "model.safetensors",
|
195 |
+
"encoder.layer.4.attention.self.query.bias": "model.safetensors",
|
196 |
+
"encoder.layer.4.attention.self.query.biases": "model.safetensors",
|
197 |
+
"encoder.layer.4.attention.self.query.scales": "model.safetensors",
|
198 |
+
"encoder.layer.4.attention.self.query.weight": "model.safetensors",
|
199 |
+
"encoder.layer.4.attention.self.value.bias": "model.safetensors",
|
200 |
+
"encoder.layer.4.attention.self.value.biases": "model.safetensors",
|
201 |
+
"encoder.layer.4.attention.self.value.scales": "model.safetensors",
|
202 |
+
"encoder.layer.4.attention.self.value.weight": "model.safetensors",
|
203 |
+
"encoder.layer.4.intermediate.dense.bias": "model.safetensors",
|
204 |
+
"encoder.layer.4.intermediate.dense.biases": "model.safetensors",
|
205 |
+
"encoder.layer.4.intermediate.dense.scales": "model.safetensors",
|
206 |
+
"encoder.layer.4.intermediate.dense.weight": "model.safetensors",
|
207 |
+
"encoder.layer.4.output.LayerNorm.bias": "model.safetensors",
|
208 |
+
"encoder.layer.4.output.LayerNorm.weight": "model.safetensors",
|
209 |
+
"encoder.layer.4.output.dense.bias": "model.safetensors",
|
210 |
+
"encoder.layer.4.output.dense.biases": "model.safetensors",
|
211 |
+
"encoder.layer.4.output.dense.scales": "model.safetensors",
|
212 |
+
"encoder.layer.4.output.dense.weight": "model.safetensors",
|
213 |
+
"encoder.layer.5.attention.output.LayerNorm.bias": "model.safetensors",
|
214 |
+
"encoder.layer.5.attention.output.LayerNorm.weight": "model.safetensors",
|
215 |
+
"encoder.layer.5.attention.output.dense.bias": "model.safetensors",
|
216 |
+
"encoder.layer.5.attention.output.dense.biases": "model.safetensors",
|
217 |
+
"encoder.layer.5.attention.output.dense.scales": "model.safetensors",
|
218 |
+
"encoder.layer.5.attention.output.dense.weight": "model.safetensors",
|
219 |
+
"encoder.layer.5.attention.self.key.bias": "model.safetensors",
|
220 |
+
"encoder.layer.5.attention.self.key.biases": "model.safetensors",
|
221 |
+
"encoder.layer.5.attention.self.key.scales": "model.safetensors",
|
222 |
+
"encoder.layer.5.attention.self.key.weight": "model.safetensors",
|
223 |
+
"encoder.layer.5.attention.self.query.bias": "model.safetensors",
|
224 |
+
"encoder.layer.5.attention.self.query.biases": "model.safetensors",
|
225 |
+
"encoder.layer.5.attention.self.query.scales": "model.safetensors",
|
226 |
+
"encoder.layer.5.attention.self.query.weight": "model.safetensors",
|
227 |
+
"encoder.layer.5.attention.self.value.bias": "model.safetensors",
|
228 |
+
"encoder.layer.5.attention.self.value.biases": "model.safetensors",
|
229 |
+
"encoder.layer.5.attention.self.value.scales": "model.safetensors",
|
230 |
+
"encoder.layer.5.attention.self.value.weight": "model.safetensors",
|
231 |
+
"encoder.layer.5.intermediate.dense.bias": "model.safetensors",
|
232 |
+
"encoder.layer.5.intermediate.dense.biases": "model.safetensors",
|
233 |
+
"encoder.layer.5.intermediate.dense.scales": "model.safetensors",
|
234 |
+
"encoder.layer.5.intermediate.dense.weight": "model.safetensors",
|
235 |
+
"encoder.layer.5.output.LayerNorm.bias": "model.safetensors",
|
236 |
+
"encoder.layer.5.output.LayerNorm.weight": "model.safetensors",
|
237 |
+
"encoder.layer.5.output.dense.bias": "model.safetensors",
|
238 |
+
"encoder.layer.5.output.dense.biases": "model.safetensors",
|
239 |
+
"encoder.layer.5.output.dense.scales": "model.safetensors",
|
240 |
+
"encoder.layer.5.output.dense.weight": "model.safetensors",
|
241 |
+
"encoder.layer.6.attention.output.LayerNorm.bias": "model.safetensors",
|
242 |
+
"encoder.layer.6.attention.output.LayerNorm.weight": "model.safetensors",
|
243 |
+
"encoder.layer.6.attention.output.dense.bias": "model.safetensors",
|
244 |
+
"encoder.layer.6.attention.output.dense.biases": "model.safetensors",
|
245 |
+
"encoder.layer.6.attention.output.dense.scales": "model.safetensors",
|
246 |
+
"encoder.layer.6.attention.output.dense.weight": "model.safetensors",
|
247 |
+
"encoder.layer.6.attention.self.key.bias": "model.safetensors",
|
248 |
+
"encoder.layer.6.attention.self.key.biases": "model.safetensors",
|
249 |
+
"encoder.layer.6.attention.self.key.scales": "model.safetensors",
|
250 |
+
"encoder.layer.6.attention.self.key.weight": "model.safetensors",
|
251 |
+
"encoder.layer.6.attention.self.query.bias": "model.safetensors",
|
252 |
+
"encoder.layer.6.attention.self.query.biases": "model.safetensors",
|
253 |
+
"encoder.layer.6.attention.self.query.scales": "model.safetensors",
|
254 |
+
"encoder.layer.6.attention.self.query.weight": "model.safetensors",
|
255 |
+
"encoder.layer.6.attention.self.value.bias": "model.safetensors",
|
256 |
+
"encoder.layer.6.attention.self.value.biases": "model.safetensors",
|
257 |
+
"encoder.layer.6.attention.self.value.scales": "model.safetensors",
|
258 |
+
"encoder.layer.6.attention.self.value.weight": "model.safetensors",
|
259 |
+
"encoder.layer.6.intermediate.dense.bias": "model.safetensors",
|
260 |
+
"encoder.layer.6.intermediate.dense.biases": "model.safetensors",
|
261 |
+
"encoder.layer.6.intermediate.dense.scales": "model.safetensors",
|
262 |
+
"encoder.layer.6.intermediate.dense.weight": "model.safetensors",
|
263 |
+
"encoder.layer.6.output.LayerNorm.bias": "model.safetensors",
|
264 |
+
"encoder.layer.6.output.LayerNorm.weight": "model.safetensors",
|
265 |
+
"encoder.layer.6.output.dense.bias": "model.safetensors",
|
266 |
+
"encoder.layer.6.output.dense.biases": "model.safetensors",
|
267 |
+
"encoder.layer.6.output.dense.scales": "model.safetensors",
|
268 |
+
"encoder.layer.6.output.dense.weight": "model.safetensors",
|
269 |
+
"encoder.layer.7.attention.output.LayerNorm.bias": "model.safetensors",
|
270 |
+
"encoder.layer.7.attention.output.LayerNorm.weight": "model.safetensors",
|
271 |
+
"encoder.layer.7.attention.output.dense.bias": "model.safetensors",
|
272 |
+
"encoder.layer.7.attention.output.dense.biases": "model.safetensors",
|
273 |
+
"encoder.layer.7.attention.output.dense.scales": "model.safetensors",
|
274 |
+
"encoder.layer.7.attention.output.dense.weight": "model.safetensors",
|
275 |
+
"encoder.layer.7.attention.self.key.bias": "model.safetensors",
|
276 |
+
"encoder.layer.7.attention.self.key.biases": "model.safetensors",
|
277 |
+
"encoder.layer.7.attention.self.key.scales": "model.safetensors",
|
278 |
+
"encoder.layer.7.attention.self.key.weight": "model.safetensors",
|
279 |
+
"encoder.layer.7.attention.self.query.bias": "model.safetensors",
|
280 |
+
"encoder.layer.7.attention.self.query.biases": "model.safetensors",
|
281 |
+
"encoder.layer.7.attention.self.query.scales": "model.safetensors",
|
282 |
+
"encoder.layer.7.attention.self.query.weight": "model.safetensors",
|
283 |
+
"encoder.layer.7.attention.self.value.bias": "model.safetensors",
|
284 |
+
"encoder.layer.7.attention.self.value.biases": "model.safetensors",
|
285 |
+
"encoder.layer.7.attention.self.value.scales": "model.safetensors",
|
286 |
+
"encoder.layer.7.attention.self.value.weight": "model.safetensors",
|
287 |
+
"encoder.layer.7.intermediate.dense.bias": "model.safetensors",
|
288 |
+
"encoder.layer.7.intermediate.dense.biases": "model.safetensors",
|
289 |
+
"encoder.layer.7.intermediate.dense.scales": "model.safetensors",
|
290 |
+
"encoder.layer.7.intermediate.dense.weight": "model.safetensors",
|
291 |
+
"encoder.layer.7.output.LayerNorm.bias": "model.safetensors",
|
292 |
+
"encoder.layer.7.output.LayerNorm.weight": "model.safetensors",
|
293 |
+
"encoder.layer.7.output.dense.bias": "model.safetensors",
|
294 |
+
"encoder.layer.7.output.dense.biases": "model.safetensors",
|
295 |
+
"encoder.layer.7.output.dense.scales": "model.safetensors",
|
296 |
+
"encoder.layer.7.output.dense.weight": "model.safetensors",
|
297 |
+
"encoder.layer.8.attention.output.LayerNorm.bias": "model.safetensors",
|
298 |
+
"encoder.layer.8.attention.output.LayerNorm.weight": "model.safetensors",
|
299 |
+
"encoder.layer.8.attention.output.dense.bias": "model.safetensors",
|
300 |
+
"encoder.layer.8.attention.output.dense.biases": "model.safetensors",
|
301 |
+
"encoder.layer.8.attention.output.dense.scales": "model.safetensors",
|
302 |
+
"encoder.layer.8.attention.output.dense.weight": "model.safetensors",
|
303 |
+
"encoder.layer.8.attention.self.key.bias": "model.safetensors",
|
304 |
+
"encoder.layer.8.attention.self.key.biases": "model.safetensors",
|
305 |
+
"encoder.layer.8.attention.self.key.scales": "model.safetensors",
|
306 |
+
"encoder.layer.8.attention.self.key.weight": "model.safetensors",
|
307 |
+
"encoder.layer.8.attention.self.query.bias": "model.safetensors",
|
308 |
+
"encoder.layer.8.attention.self.query.biases": "model.safetensors",
|
309 |
+
"encoder.layer.8.attention.self.query.scales": "model.safetensors",
|
310 |
+
"encoder.layer.8.attention.self.query.weight": "model.safetensors",
|
311 |
+
"encoder.layer.8.attention.self.value.bias": "model.safetensors",
|
312 |
+
"encoder.layer.8.attention.self.value.biases": "model.safetensors",
|
313 |
+
"encoder.layer.8.attention.self.value.scales": "model.safetensors",
|
314 |
+
"encoder.layer.8.attention.self.value.weight": "model.safetensors",
|
315 |
+
"encoder.layer.8.intermediate.dense.bias": "model.safetensors",
|
316 |
+
"encoder.layer.8.intermediate.dense.biases": "model.safetensors",
|
317 |
+
"encoder.layer.8.intermediate.dense.scales": "model.safetensors",
|
318 |
+
"encoder.layer.8.intermediate.dense.weight": "model.safetensors",
|
319 |
+
"encoder.layer.8.output.LayerNorm.bias": "model.safetensors",
|
320 |
+
"encoder.layer.8.output.LayerNorm.weight": "model.safetensors",
|
321 |
+
"encoder.layer.8.output.dense.bias": "model.safetensors",
|
322 |
+
"encoder.layer.8.output.dense.biases": "model.safetensors",
|
323 |
+
"encoder.layer.8.output.dense.scales": "model.safetensors",
|
324 |
+
"encoder.layer.8.output.dense.weight": "model.safetensors",
|
325 |
+
"encoder.layer.9.attention.output.LayerNorm.bias": "model.safetensors",
|
326 |
+
"encoder.layer.9.attention.output.LayerNorm.weight": "model.safetensors",
|
327 |
+
"encoder.layer.9.attention.output.dense.bias": "model.safetensors",
|
328 |
+
"encoder.layer.9.attention.output.dense.biases": "model.safetensors",
|
329 |
+
"encoder.layer.9.attention.output.dense.scales": "model.safetensors",
|
330 |
+
"encoder.layer.9.attention.output.dense.weight": "model.safetensors",
|
331 |
+
"encoder.layer.9.attention.self.key.bias": "model.safetensors",
|
332 |
+
"encoder.layer.9.attention.self.key.biases": "model.safetensors",
|
333 |
+
"encoder.layer.9.attention.self.key.scales": "model.safetensors",
|
334 |
+
"encoder.layer.9.attention.self.key.weight": "model.safetensors",
|
335 |
+
"encoder.layer.9.attention.self.query.bias": "model.safetensors",
|
336 |
+
"encoder.layer.9.attention.self.query.biases": "model.safetensors",
|
337 |
+
"encoder.layer.9.attention.self.query.scales": "model.safetensors",
|
338 |
+
"encoder.layer.9.attention.self.query.weight": "model.safetensors",
|
339 |
+
"encoder.layer.9.attention.self.value.bias": "model.safetensors",
|
340 |
+
"encoder.layer.9.attention.self.value.biases": "model.safetensors",
|
341 |
+
"encoder.layer.9.attention.self.value.scales": "model.safetensors",
|
342 |
+
"encoder.layer.9.attention.self.value.weight": "model.safetensors",
|
343 |
+
"encoder.layer.9.intermediate.dense.bias": "model.safetensors",
|
344 |
+
"encoder.layer.9.intermediate.dense.biases": "model.safetensors",
|
345 |
+
"encoder.layer.9.intermediate.dense.scales": "model.safetensors",
|
346 |
+
"encoder.layer.9.intermediate.dense.weight": "model.safetensors",
|
347 |
+
"encoder.layer.9.output.LayerNorm.bias": "model.safetensors",
|
348 |
+
"encoder.layer.9.output.LayerNorm.weight": "model.safetensors",
|
349 |
+
"encoder.layer.9.output.dense.bias": "model.safetensors",
|
350 |
+
"encoder.layer.9.output.dense.biases": "model.safetensors",
|
351 |
+
"encoder.layer.9.output.dense.scales": "model.safetensors",
|
352 |
+
"encoder.layer.9.output.dense.weight": "model.safetensors",
|
353 |
+
"pooler.dense.bias": "model.safetensors",
|
354 |
+
"pooler.dense.biases": "model.safetensors",
|
355 |
+
"pooler.dense.scales": "model.safetensors",
|
356 |
+
"pooler.dense.weight": "model.safetensors"
|
357 |
+
}
|
358 |
+
}
|
modules.json
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{
|
3 |
+
"idx": 0,
|
4 |
+
"name": "0",
|
5 |
+
"path": "",
|
6 |
+
"type": "sentence_transformers.models.Transformer"
|
7 |
+
},
|
8 |
+
{
|
9 |
+
"idx": 1,
|
10 |
+
"name": "1",
|
11 |
+
"path": "1_Pooling",
|
12 |
+
"type": "sentence_transformers.models.Pooling"
|
13 |
+
},
|
14 |
+
{
|
15 |
+
"idx": 2,
|
16 |
+
"name": "2",
|
17 |
+
"path": "2_Normalize",
|
18 |
+
"type": "sentence_transformers.models.Normalize"
|
19 |
+
}
|
20 |
+
]
|
preprocessor_config.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_convert_rgb": true,
|
3 |
+
"do_normalize": true,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"image_mean": [
|
7 |
+
0.48145466,
|
8 |
+
0.4578275,
|
9 |
+
0.40821073
|
10 |
+
],
|
11 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
12 |
+
"image_std": [
|
13 |
+
0.26862954,
|
14 |
+
0.26130258,
|
15 |
+
0.27577711
|
16 |
+
],
|
17 |
+
"max_pixels": 602112,
|
18 |
+
"merge_size": 2,
|
19 |
+
"min_pixels": 3136,
|
20 |
+
"patch_size": 14,
|
21 |
+
"processor_class": "ColQwen2Processor",
|
22 |
+
"resample": 3,
|
23 |
+
"rescale_factor": 0.00392156862745098,
|
24 |
+
"size": {
|
25 |
+
"max_pixels": 602112,
|
26 |
+
"min_pixels": 3136,
|
27 |
+
"longest_edge": 602112,
|
28 |
+
"shortest_edge": 3136
|
29 |
+
},
|
30 |
+
"temporal_patch_size": 2
|
31 |
+
}
|
sentence_bert_config.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"max_seq_length": 512,
|
3 |
+
"do_lower_case": false
|
4 |
+
}
|
sentencepiece.bpe.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865
|
3 |
+
size 5069051
|
special_tokens_map.json
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<s>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"cls_token": {
|
10 |
+
"content": "<s>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"eos_token": {
|
17 |
+
"content": "</s>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"mask_token": {
|
24 |
+
"content": "<mask>",
|
25 |
+
"lstrip": false,
|
26 |
+
"normalized": false,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
},
|
30 |
+
"pad_token": {
|
31 |
+
"content": "<pad>",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": false,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false
|
36 |
+
},
|
37 |
+
"sep_token": {
|
38 |
+
"content": "</s>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false
|
43 |
+
},
|
44 |
+
"unk_token": {
|
45 |
+
"content": "<unk>",
|
46 |
+
"lstrip": false,
|
47 |
+
"normalized": false,
|
48 |
+
"rstrip": false,
|
49 |
+
"single_word": false
|
50 |
+
}
|
51 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cd98e5698b201ba914efb8c18b6709fa8735ab71dcad8d2b431e52e8bf68d932
|
3 |
+
size 17082800
|
tokenizer_config.json
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "<s>",
|
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": "</s>",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"3": {
|
28 |
+
"content": "<unk>",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"250001": {
|
36 |
+
"content": "<mask>",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"bos_token": "<s>",
|
45 |
+
"clean_up_tokenization_spaces": true,
|
46 |
+
"cls_token": "<s>",
|
47 |
+
"eos_token": "</s>",
|
48 |
+
"extra_special_tokens": {},
|
49 |
+
"mask_token": "<mask>",
|
50 |
+
"model_max_length": 512,
|
51 |
+
"pad_token": "<pad>",
|
52 |
+
"sep_token": "</s>",
|
53 |
+
"sp_model_kwargs": {},
|
54 |
+
"tokenizer_class": "XLMRobertaTokenizer",
|
55 |
+
"unk_token": "<unk>"
|
56 |
+
}
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|