Add new SentenceTransformer model
Browse files- .gitattributes +1 -0
- 1_Pooling/config.json +10 -0
- README.md +141 -0
- added_tokens.json +24 -0
- config.json +29 -0
- config_sentence_transformers.json +10 -0
- merges.txt +0 -0
- model-00001-of-00006.safetensors +3 -0
- model-00002-of-00006.safetensors +3 -0
- model-00003-of-00006.safetensors +3 -0
- model-00004-of-00006.safetensors +3 -0
- model-00005-of-00006.safetensors +3 -0
- model-00006-of-00006.safetensors +3 -0
- model.safetensors.index.json +345 -0
- modules.json +20 -0
- sentence_bert_config.json +4 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +207 -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
|
1_Pooling/config.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"word_embedding_dimension": 3584,
|
3 |
+
"pooling_mode_cls_token": false,
|
4 |
+
"pooling_mode_mean_tokens": false,
|
5 |
+
"pooling_mode_max_tokens": false,
|
6 |
+
"pooling_mode_mean_sqrt_len_tokens": false,
|
7 |
+
"pooling_mode_weightedmean_tokens": false,
|
8 |
+
"pooling_mode_lasttoken": true,
|
9 |
+
"include_prompt": true
|
10 |
+
}
|
README.md
ADDED
@@ -0,0 +1,141 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: sentence-transformers
|
3 |
+
pipeline_tag: sentence-similarity
|
4 |
+
tags:
|
5 |
+
- sentence-transformers
|
6 |
+
- sentence-similarity
|
7 |
+
- feature-extraction
|
8 |
+
---
|
9 |
+
|
10 |
+
# SentenceTransformer
|
11 |
+
|
12 |
+
This is a [sentence-transformers](https://www.SBERT.net) model trained. It maps sentences & paragraphs to a 3584-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
|
13 |
+
|
14 |
+
## Model Details
|
15 |
+
|
16 |
+
### Model Description
|
17 |
+
- **Model Type:** Sentence Transformer
|
18 |
+
<!-- - **Base model:** [Unknown](https://huggingface.co/unknown) -->
|
19 |
+
- **Maximum Sequence Length:** 32768 tokens
|
20 |
+
- **Output Dimensionality:** 3584 dimensions
|
21 |
+
- **Similarity Function:** Cosine Similarity
|
22 |
+
<!-- - **Training Dataset:** Unknown -->
|
23 |
+
<!-- - **Language:** Unknown -->
|
24 |
+
<!-- - **License:** Unknown -->
|
25 |
+
|
26 |
+
### Model Sources
|
27 |
+
|
28 |
+
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
|
29 |
+
- **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
|
30 |
+
- **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
|
31 |
+
|
32 |
+
### Full Model Architecture
|
33 |
+
|
34 |
+
```
|
35 |
+
SentenceTransformer(
|
36 |
+
(0): Transformer({'max_seq_length': 32768, 'do_lower_case': False}) with Transformer model: Qwen2Model
|
37 |
+
(1): Pooling({'word_embedding_dimension': 3584, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': False, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': True, 'include_prompt': True})
|
38 |
+
(2): Normalize()
|
39 |
+
)
|
40 |
+
```
|
41 |
+
|
42 |
+
## Usage
|
43 |
+
|
44 |
+
### Direct Usage (Sentence Transformers)
|
45 |
+
|
46 |
+
First install the Sentence Transformers library:
|
47 |
+
|
48 |
+
```bash
|
49 |
+
pip install -U sentence-transformers
|
50 |
+
```
|
51 |
+
|
52 |
+
Then you can load this model and run inference.
|
53 |
+
```python
|
54 |
+
from sentence_transformers import SentenceTransformer
|
55 |
+
|
56 |
+
# Download from the 🤗 Hub
|
57 |
+
model = SentenceTransformer("nomic-ai/qwen7b-coder-instruct-5M-last-token-causal-8e6-eos-token")
|
58 |
+
# Run inference
|
59 |
+
sentences = [
|
60 |
+
'The weather is lovely today.',
|
61 |
+
"It's so sunny outside!",
|
62 |
+
'He drove to the stadium.',
|
63 |
+
]
|
64 |
+
embeddings = model.encode(sentences)
|
65 |
+
print(embeddings.shape)
|
66 |
+
# [3, 3584]
|
67 |
+
|
68 |
+
# Get the similarity scores for the embeddings
|
69 |
+
similarities = model.similarity(embeddings, embeddings)
|
70 |
+
print(similarities.shape)
|
71 |
+
# [3, 3]
|
72 |
+
```
|
73 |
+
|
74 |
+
<!--
|
75 |
+
### Direct Usage (Transformers)
|
76 |
+
|
77 |
+
<details><summary>Click to see the direct usage in Transformers</summary>
|
78 |
+
|
79 |
+
</details>
|
80 |
+
-->
|
81 |
+
|
82 |
+
<!--
|
83 |
+
### Downstream Usage (Sentence Transformers)
|
84 |
+
|
85 |
+
You can finetune this model on your own dataset.
|
86 |
+
|
87 |
+
<details><summary>Click to expand</summary>
|
88 |
+
|
89 |
+
</details>
|
90 |
+
-->
|
91 |
+
|
92 |
+
<!--
|
93 |
+
### Out-of-Scope Use
|
94 |
+
|
95 |
+
*List how the model may foreseeably be misused and address what users ought not to do with the model.*
|
96 |
+
-->
|
97 |
+
|
98 |
+
<!--
|
99 |
+
## Bias, Risks and Limitations
|
100 |
+
|
101 |
+
*What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
|
102 |
+
-->
|
103 |
+
|
104 |
+
<!--
|
105 |
+
### Recommendations
|
106 |
+
|
107 |
+
*What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
|
108 |
+
-->
|
109 |
+
|
110 |
+
## Training Details
|
111 |
+
|
112 |
+
### Framework Versions
|
113 |
+
- Python: 3.10.12
|
114 |
+
- Sentence Transformers: 3.3.0
|
115 |
+
- Transformers: 4.45.2
|
116 |
+
- PyTorch: 2.4.1+cu121
|
117 |
+
- Accelerate: 1.4.0
|
118 |
+
- Datasets: 2.21.0
|
119 |
+
- Tokenizers: 0.20.0
|
120 |
+
|
121 |
+
## Citation
|
122 |
+
|
123 |
+
### BibTeX
|
124 |
+
|
125 |
+
<!--
|
126 |
+
## Glossary
|
127 |
+
|
128 |
+
*Clearly define terms in order to be accessible across audiences.*
|
129 |
+
-->
|
130 |
+
|
131 |
+
<!--
|
132 |
+
## Model Card Authors
|
133 |
+
|
134 |
+
*Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
|
135 |
+
-->
|
136 |
+
|
137 |
+
<!--
|
138 |
+
## Model Card Contact
|
139 |
+
|
140 |
+
*Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
|
141 |
+
-->
|
added_tokens.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</tool_call>": 151658,
|
3 |
+
"<tool_call>": 151657,
|
4 |
+
"<|box_end|>": 151649,
|
5 |
+
"<|box_start|>": 151648,
|
6 |
+
"<|endoftext|>": 151643,
|
7 |
+
"<|file_sep|>": 151664,
|
8 |
+
"<|fim_middle|>": 151660,
|
9 |
+
"<|fim_pad|>": 151662,
|
10 |
+
"<|fim_prefix|>": 151659,
|
11 |
+
"<|fim_suffix|>": 151661,
|
12 |
+
"<|im_end|>": 151645,
|
13 |
+
"<|im_start|>": 151644,
|
14 |
+
"<|image_pad|>": 151655,
|
15 |
+
"<|object_ref_end|>": 151647,
|
16 |
+
"<|object_ref_start|>": 151646,
|
17 |
+
"<|quad_end|>": 151651,
|
18 |
+
"<|quad_start|>": 151650,
|
19 |
+
"<|repo_name|>": 151663,
|
20 |
+
"<|video_pad|>": 151656,
|
21 |
+
"<|vision_end|>": 151653,
|
22 |
+
"<|vision_pad|>": 151654,
|
23 |
+
"<|vision_start|>": 151652
|
24 |
+
}
|
config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "tmp",
|
3 |
+
"architectures": [
|
4 |
+
"Qwen2Model"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 151643,
|
8 |
+
"eos_token_id": 151645,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 3584,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 18944,
|
13 |
+
"max_position_embeddings": 32768,
|
14 |
+
"max_window_layers": 28,
|
15 |
+
"model_type": "qwen2",
|
16 |
+
"num_attention_heads": 28,
|
17 |
+
"num_hidden_layers": 28,
|
18 |
+
"num_key_value_heads": 4,
|
19 |
+
"rms_norm_eps": 1e-06,
|
20 |
+
"rope_scaling": null,
|
21 |
+
"rope_theta": 1000000.0,
|
22 |
+
"sliding_window": null,
|
23 |
+
"tie_word_embeddings": false,
|
24 |
+
"torch_dtype": "float32",
|
25 |
+
"transformers_version": "4.45.2",
|
26 |
+
"use_cache": true,
|
27 |
+
"use_sliding_window": false,
|
28 |
+
"vocab_size": 152064
|
29 |
+
}
|
config_sentence_transformers.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"__version__": {
|
3 |
+
"sentence_transformers": "3.3.0",
|
4 |
+
"transformers": "4.45.2",
|
5 |
+
"pytorch": "2.4.1+cu121"
|
6 |
+
},
|
7 |
+
"prompts": {},
|
8 |
+
"default_prompt_name": null,
|
9 |
+
"similarity_fn_name": "cosine"
|
10 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model-00001-of-00006.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e33053439bc99e1fdc72a0ad6d9f0bae0b9afc84c34b51e0e8986dd769359eda
|
3 |
+
size 4976686992
|
model-00002-of-00006.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3ada145dd42a034de6267ad12d2cc02043b1bc41738590094ace97ed261e457
|
3 |
+
size 4778621952
|
model-00003-of-00006.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d395d51ea31cd5b1551f9c15e836709f01f6af542d62089f06b7c06e709da0ff
|
3 |
+
size 4932743600
|
model-00004-of-00006.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9090fd22409a92917dc4e14540979574c7aeaf2bac12e51402f8983d1536e4d1
|
3 |
+
size 4932743624
|
model-00005-of-00006.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4f212fd19c01b5e928fd5780257b2e4c9d617f4c3f5733294570eda2dcbe9972
|
3 |
+
size 4998851880
|
model-00006-of-00006.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b2742bab0012d717fda6e18f7efff1146f8e7f44d678dc04cac83bddca0331e8
|
3 |
+
size 3662864928
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,345 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 28282476544
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"embed_tokens.weight": "model-00001-of-00006.safetensors",
|
7 |
+
"layers.0.input_layernorm.weight": "model-00001-of-00006.safetensors",
|
8 |
+
"layers.0.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
|
9 |
+
"layers.0.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
|
10 |
+
"layers.0.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
|
11 |
+
"layers.0.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
|
12 |
+
"layers.0.self_attn.k_proj.bias": "model-00001-of-00006.safetensors",
|
13 |
+
"layers.0.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
|
14 |
+
"layers.0.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
|
15 |
+
"layers.0.self_attn.q_proj.bias": "model-00001-of-00006.safetensors",
|
16 |
+
"layers.0.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
|
17 |
+
"layers.0.self_attn.v_proj.bias": "model-00001-of-00006.safetensors",
|
18 |
+
"layers.0.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
|
19 |
+
"layers.1.input_layernorm.weight": "model-00001-of-00006.safetensors",
|
20 |
+
"layers.1.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
|
21 |
+
"layers.1.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
|
22 |
+
"layers.1.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
|
23 |
+
"layers.1.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
|
24 |
+
"layers.1.self_attn.k_proj.bias": "model-00001-of-00006.safetensors",
|
25 |
+
"layers.1.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
|
26 |
+
"layers.1.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
|
27 |
+
"layers.1.self_attn.q_proj.bias": "model-00001-of-00006.safetensors",
|
28 |
+
"layers.1.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
|
29 |
+
"layers.1.self_attn.v_proj.bias": "model-00001-of-00006.safetensors",
|
30 |
+
"layers.1.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
|
31 |
+
"layers.10.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
32 |
+
"layers.10.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
33 |
+
"layers.10.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
34 |
+
"layers.10.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
35 |
+
"layers.10.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
36 |
+
"layers.10.self_attn.k_proj.bias": "model-00003-of-00006.safetensors",
|
37 |
+
"layers.10.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
38 |
+
"layers.10.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
39 |
+
"layers.10.self_attn.q_proj.bias": "model-00003-of-00006.safetensors",
|
40 |
+
"layers.10.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
41 |
+
"layers.10.self_attn.v_proj.bias": "model-00003-of-00006.safetensors",
|
42 |
+
"layers.10.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
43 |
+
"layers.11.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
44 |
+
"layers.11.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
45 |
+
"layers.11.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
46 |
+
"layers.11.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
47 |
+
"layers.11.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
48 |
+
"layers.11.self_attn.k_proj.bias": "model-00003-of-00006.safetensors",
|
49 |
+
"layers.11.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
50 |
+
"layers.11.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
51 |
+
"layers.11.self_attn.q_proj.bias": "model-00003-of-00006.safetensors",
|
52 |
+
"layers.11.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
53 |
+
"layers.11.self_attn.v_proj.bias": "model-00003-of-00006.safetensors",
|
54 |
+
"layers.11.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
55 |
+
"layers.12.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
56 |
+
"layers.12.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
57 |
+
"layers.12.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
58 |
+
"layers.12.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
59 |
+
"layers.12.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
60 |
+
"layers.12.self_attn.k_proj.bias": "model-00003-of-00006.safetensors",
|
61 |
+
"layers.12.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
62 |
+
"layers.12.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
63 |
+
"layers.12.self_attn.q_proj.bias": "model-00003-of-00006.safetensors",
|
64 |
+
"layers.12.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
65 |
+
"layers.12.self_attn.v_proj.bias": "model-00003-of-00006.safetensors",
|
66 |
+
"layers.12.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
67 |
+
"layers.13.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
68 |
+
"layers.13.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
69 |
+
"layers.13.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
70 |
+
"layers.13.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
71 |
+
"layers.13.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
72 |
+
"layers.13.self_attn.k_proj.bias": "model-00003-of-00006.safetensors",
|
73 |
+
"layers.13.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
74 |
+
"layers.13.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
75 |
+
"layers.13.self_attn.q_proj.bias": "model-00003-of-00006.safetensors",
|
76 |
+
"layers.13.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
77 |
+
"layers.13.self_attn.v_proj.bias": "model-00003-of-00006.safetensors",
|
78 |
+
"layers.13.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
79 |
+
"layers.14.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
80 |
+
"layers.14.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
81 |
+
"layers.14.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
|
82 |
+
"layers.14.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
83 |
+
"layers.14.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
84 |
+
"layers.14.self_attn.k_proj.bias": "model-00004-of-00006.safetensors",
|
85 |
+
"layers.14.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
86 |
+
"layers.14.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
87 |
+
"layers.14.self_attn.q_proj.bias": "model-00004-of-00006.safetensors",
|
88 |
+
"layers.14.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
89 |
+
"layers.14.self_attn.v_proj.bias": "model-00004-of-00006.safetensors",
|
90 |
+
"layers.14.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
91 |
+
"layers.15.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
92 |
+
"layers.15.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
93 |
+
"layers.15.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
|
94 |
+
"layers.15.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
95 |
+
"layers.15.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
96 |
+
"layers.15.self_attn.k_proj.bias": "model-00004-of-00006.safetensors",
|
97 |
+
"layers.15.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
98 |
+
"layers.15.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
99 |
+
"layers.15.self_attn.q_proj.bias": "model-00004-of-00006.safetensors",
|
100 |
+
"layers.15.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
101 |
+
"layers.15.self_attn.v_proj.bias": "model-00004-of-00006.safetensors",
|
102 |
+
"layers.15.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
103 |
+
"layers.16.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
104 |
+
"layers.16.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
105 |
+
"layers.16.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
|
106 |
+
"layers.16.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
107 |
+
"layers.16.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
108 |
+
"layers.16.self_attn.k_proj.bias": "model-00004-of-00006.safetensors",
|
109 |
+
"layers.16.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
110 |
+
"layers.16.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
111 |
+
"layers.16.self_attn.q_proj.bias": "model-00004-of-00006.safetensors",
|
112 |
+
"layers.16.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
113 |
+
"layers.16.self_attn.v_proj.bias": "model-00004-of-00006.safetensors",
|
114 |
+
"layers.16.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
115 |
+
"layers.17.input_layernorm.weight": "model-00004-of-00006.safetensors",
|
116 |
+
"layers.17.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
|
117 |
+
"layers.17.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
|
118 |
+
"layers.17.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
119 |
+
"layers.17.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
120 |
+
"layers.17.self_attn.k_proj.bias": "model-00004-of-00006.safetensors",
|
121 |
+
"layers.17.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
122 |
+
"layers.17.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
123 |
+
"layers.17.self_attn.q_proj.bias": "model-00004-of-00006.safetensors",
|
124 |
+
"layers.17.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
125 |
+
"layers.17.self_attn.v_proj.bias": "model-00004-of-00006.safetensors",
|
126 |
+
"layers.17.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
127 |
+
"layers.18.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
128 |
+
"layers.18.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
129 |
+
"layers.18.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
|
130 |
+
"layers.18.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
131 |
+
"layers.18.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
132 |
+
"layers.18.self_attn.k_proj.bias": "model-00004-of-00006.safetensors",
|
133 |
+
"layers.18.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
|
134 |
+
"layers.18.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
|
135 |
+
"layers.18.self_attn.q_proj.bias": "model-00004-of-00006.safetensors",
|
136 |
+
"layers.18.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
|
137 |
+
"layers.18.self_attn.v_proj.bias": "model-00004-of-00006.safetensors",
|
138 |
+
"layers.18.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
|
139 |
+
"layers.19.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
140 |
+
"layers.19.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
141 |
+
"layers.19.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
142 |
+
"layers.19.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
143 |
+
"layers.19.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
144 |
+
"layers.19.self_attn.k_proj.bias": "model-00005-of-00006.safetensors",
|
145 |
+
"layers.19.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
146 |
+
"layers.19.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
|
147 |
+
"layers.19.self_attn.q_proj.bias": "model-00005-of-00006.safetensors",
|
148 |
+
"layers.19.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
149 |
+
"layers.19.self_attn.v_proj.bias": "model-00005-of-00006.safetensors",
|
150 |
+
"layers.19.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
151 |
+
"layers.2.input_layernorm.weight": "model-00001-of-00006.safetensors",
|
152 |
+
"layers.2.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
|
153 |
+
"layers.2.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
|
154 |
+
"layers.2.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
|
155 |
+
"layers.2.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
|
156 |
+
"layers.2.self_attn.k_proj.bias": "model-00001-of-00006.safetensors",
|
157 |
+
"layers.2.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
|
158 |
+
"layers.2.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
|
159 |
+
"layers.2.self_attn.q_proj.bias": "model-00001-of-00006.safetensors",
|
160 |
+
"layers.2.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
|
161 |
+
"layers.2.self_attn.v_proj.bias": "model-00001-of-00006.safetensors",
|
162 |
+
"layers.2.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
|
163 |
+
"layers.20.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
164 |
+
"layers.20.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
165 |
+
"layers.20.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
166 |
+
"layers.20.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
167 |
+
"layers.20.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
168 |
+
"layers.20.self_attn.k_proj.bias": "model-00005-of-00006.safetensors",
|
169 |
+
"layers.20.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
170 |
+
"layers.20.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
|
171 |
+
"layers.20.self_attn.q_proj.bias": "model-00005-of-00006.safetensors",
|
172 |
+
"layers.20.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
173 |
+
"layers.20.self_attn.v_proj.bias": "model-00005-of-00006.safetensors",
|
174 |
+
"layers.20.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
175 |
+
"layers.21.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
176 |
+
"layers.21.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
177 |
+
"layers.21.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
178 |
+
"layers.21.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
179 |
+
"layers.21.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
180 |
+
"layers.21.self_attn.k_proj.bias": "model-00005-of-00006.safetensors",
|
181 |
+
"layers.21.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
182 |
+
"layers.21.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
|
183 |
+
"layers.21.self_attn.q_proj.bias": "model-00005-of-00006.safetensors",
|
184 |
+
"layers.21.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
185 |
+
"layers.21.self_attn.v_proj.bias": "model-00005-of-00006.safetensors",
|
186 |
+
"layers.21.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
187 |
+
"layers.22.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
188 |
+
"layers.22.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
189 |
+
"layers.22.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
190 |
+
"layers.22.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
191 |
+
"layers.22.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
192 |
+
"layers.22.self_attn.k_proj.bias": "model-00005-of-00006.safetensors",
|
193 |
+
"layers.22.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
194 |
+
"layers.22.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
|
195 |
+
"layers.22.self_attn.q_proj.bias": "model-00005-of-00006.safetensors",
|
196 |
+
"layers.22.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
197 |
+
"layers.22.self_attn.v_proj.bias": "model-00005-of-00006.safetensors",
|
198 |
+
"layers.22.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
199 |
+
"layers.23.input_layernorm.weight": "model-00005-of-00006.safetensors",
|
200 |
+
"layers.23.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
|
201 |
+
"layers.23.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
|
202 |
+
"layers.23.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
203 |
+
"layers.23.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
204 |
+
"layers.23.self_attn.k_proj.bias": "model-00005-of-00006.safetensors",
|
205 |
+
"layers.23.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
206 |
+
"layers.23.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
|
207 |
+
"layers.23.self_attn.q_proj.bias": "model-00005-of-00006.safetensors",
|
208 |
+
"layers.23.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
209 |
+
"layers.23.self_attn.v_proj.bias": "model-00005-of-00006.safetensors",
|
210 |
+
"layers.23.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
211 |
+
"layers.24.input_layernorm.weight": "model-00006-of-00006.safetensors",
|
212 |
+
"layers.24.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
|
213 |
+
"layers.24.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
|
214 |
+
"layers.24.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
|
215 |
+
"layers.24.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
216 |
+
"layers.24.self_attn.k_proj.bias": "model-00005-of-00006.safetensors",
|
217 |
+
"layers.24.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
|
218 |
+
"layers.24.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
|
219 |
+
"layers.24.self_attn.q_proj.bias": "model-00005-of-00006.safetensors",
|
220 |
+
"layers.24.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
|
221 |
+
"layers.24.self_attn.v_proj.bias": "model-00005-of-00006.safetensors",
|
222 |
+
"layers.24.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
|
223 |
+
"layers.25.input_layernorm.weight": "model-00006-of-00006.safetensors",
|
224 |
+
"layers.25.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
|
225 |
+
"layers.25.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
|
226 |
+
"layers.25.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
|
227 |
+
"layers.25.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
228 |
+
"layers.25.self_attn.k_proj.bias": "model-00006-of-00006.safetensors",
|
229 |
+
"layers.25.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
|
230 |
+
"layers.25.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
|
231 |
+
"layers.25.self_attn.q_proj.bias": "model-00006-of-00006.safetensors",
|
232 |
+
"layers.25.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
|
233 |
+
"layers.25.self_attn.v_proj.bias": "model-00006-of-00006.safetensors",
|
234 |
+
"layers.25.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
|
235 |
+
"layers.26.input_layernorm.weight": "model-00006-of-00006.safetensors",
|
236 |
+
"layers.26.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
|
237 |
+
"layers.26.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
|
238 |
+
"layers.26.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
|
239 |
+
"layers.26.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
240 |
+
"layers.26.self_attn.k_proj.bias": "model-00006-of-00006.safetensors",
|
241 |
+
"layers.26.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
|
242 |
+
"layers.26.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
|
243 |
+
"layers.26.self_attn.q_proj.bias": "model-00006-of-00006.safetensors",
|
244 |
+
"layers.26.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
|
245 |
+
"layers.26.self_attn.v_proj.bias": "model-00006-of-00006.safetensors",
|
246 |
+
"layers.26.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
|
247 |
+
"layers.27.input_layernorm.weight": "model-00006-of-00006.safetensors",
|
248 |
+
"layers.27.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
|
249 |
+
"layers.27.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
|
250 |
+
"layers.27.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
|
251 |
+
"layers.27.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
252 |
+
"layers.27.self_attn.k_proj.bias": "model-00006-of-00006.safetensors",
|
253 |
+
"layers.27.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
|
254 |
+
"layers.27.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
|
255 |
+
"layers.27.self_attn.q_proj.bias": "model-00006-of-00006.safetensors",
|
256 |
+
"layers.27.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
|
257 |
+
"layers.27.self_attn.v_proj.bias": "model-00006-of-00006.safetensors",
|
258 |
+
"layers.27.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
|
259 |
+
"layers.3.input_layernorm.weight": "model-00002-of-00006.safetensors",
|
260 |
+
"layers.3.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
|
261 |
+
"layers.3.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
262 |
+
"layers.3.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
263 |
+
"layers.3.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
264 |
+
"layers.3.self_attn.k_proj.bias": "model-00002-of-00006.safetensors",
|
265 |
+
"layers.3.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
266 |
+
"layers.3.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
267 |
+
"layers.3.self_attn.q_proj.bias": "model-00002-of-00006.safetensors",
|
268 |
+
"layers.3.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
269 |
+
"layers.3.self_attn.v_proj.bias": "model-00002-of-00006.safetensors",
|
270 |
+
"layers.3.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
271 |
+
"layers.4.input_layernorm.weight": "model-00002-of-00006.safetensors",
|
272 |
+
"layers.4.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
|
273 |
+
"layers.4.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
274 |
+
"layers.4.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
275 |
+
"layers.4.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
276 |
+
"layers.4.self_attn.k_proj.bias": "model-00002-of-00006.safetensors",
|
277 |
+
"layers.4.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
278 |
+
"layers.4.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
279 |
+
"layers.4.self_attn.q_proj.bias": "model-00002-of-00006.safetensors",
|
280 |
+
"layers.4.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
281 |
+
"layers.4.self_attn.v_proj.bias": "model-00002-of-00006.safetensors",
|
282 |
+
"layers.4.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
283 |
+
"layers.5.input_layernorm.weight": "model-00002-of-00006.safetensors",
|
284 |
+
"layers.5.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
|
285 |
+
"layers.5.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
286 |
+
"layers.5.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
287 |
+
"layers.5.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
288 |
+
"layers.5.self_attn.k_proj.bias": "model-00002-of-00006.safetensors",
|
289 |
+
"layers.5.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
290 |
+
"layers.5.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
291 |
+
"layers.5.self_attn.q_proj.bias": "model-00002-of-00006.safetensors",
|
292 |
+
"layers.5.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
293 |
+
"layers.5.self_attn.v_proj.bias": "model-00002-of-00006.safetensors",
|
294 |
+
"layers.5.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
295 |
+
"layers.6.input_layernorm.weight": "model-00002-of-00006.safetensors",
|
296 |
+
"layers.6.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
|
297 |
+
"layers.6.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
298 |
+
"layers.6.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
299 |
+
"layers.6.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
300 |
+
"layers.6.self_attn.k_proj.bias": "model-00002-of-00006.safetensors",
|
301 |
+
"layers.6.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
302 |
+
"layers.6.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
303 |
+
"layers.6.self_attn.q_proj.bias": "model-00002-of-00006.safetensors",
|
304 |
+
"layers.6.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
305 |
+
"layers.6.self_attn.v_proj.bias": "model-00002-of-00006.safetensors",
|
306 |
+
"layers.6.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
307 |
+
"layers.7.input_layernorm.weight": "model-00002-of-00006.safetensors",
|
308 |
+
"layers.7.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
|
309 |
+
"layers.7.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
|
310 |
+
"layers.7.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
311 |
+
"layers.7.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
312 |
+
"layers.7.self_attn.k_proj.bias": "model-00002-of-00006.safetensors",
|
313 |
+
"layers.7.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
314 |
+
"layers.7.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
315 |
+
"layers.7.self_attn.q_proj.bias": "model-00002-of-00006.safetensors",
|
316 |
+
"layers.7.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
317 |
+
"layers.7.self_attn.v_proj.bias": "model-00002-of-00006.safetensors",
|
318 |
+
"layers.7.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
319 |
+
"layers.8.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
320 |
+
"layers.8.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
321 |
+
"layers.8.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
322 |
+
"layers.8.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
323 |
+
"layers.8.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
324 |
+
"layers.8.self_attn.k_proj.bias": "model-00002-of-00006.safetensors",
|
325 |
+
"layers.8.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
|
326 |
+
"layers.8.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
|
327 |
+
"layers.8.self_attn.q_proj.bias": "model-00002-of-00006.safetensors",
|
328 |
+
"layers.8.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
|
329 |
+
"layers.8.self_attn.v_proj.bias": "model-00002-of-00006.safetensors",
|
330 |
+
"layers.8.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
|
331 |
+
"layers.9.input_layernorm.weight": "model-00003-of-00006.safetensors",
|
332 |
+
"layers.9.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
|
333 |
+
"layers.9.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
|
334 |
+
"layers.9.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
335 |
+
"layers.9.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
336 |
+
"layers.9.self_attn.k_proj.bias": "model-00003-of-00006.safetensors",
|
337 |
+
"layers.9.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
|
338 |
+
"layers.9.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
|
339 |
+
"layers.9.self_attn.q_proj.bias": "model-00003-of-00006.safetensors",
|
340 |
+
"layers.9.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
|
341 |
+
"layers.9.self_attn.v_proj.bias": "model-00003-of-00006.safetensors",
|
342 |
+
"layers.9.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
|
343 |
+
"norm.weight": "model-00006-of-00006.safetensors"
|
344 |
+
}
|
345 |
+
}
|
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 |
+
]
|
sentence_bert_config.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"max_seq_length": 32768,
|
3 |
+
"do_lower_case": false
|
4 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>",
|
5 |
+
"<|object_ref_start|>",
|
6 |
+
"<|object_ref_end|>",
|
7 |
+
"<|box_start|>",
|
8 |
+
"<|box_end|>",
|
9 |
+
"<|quad_start|>",
|
10 |
+
"<|quad_end|>",
|
11 |
+
"<|vision_start|>",
|
12 |
+
"<|vision_end|>",
|
13 |
+
"<|vision_pad|>",
|
14 |
+
"<|image_pad|>",
|
15 |
+
"<|video_pad|>"
|
16 |
+
],
|
17 |
+
"eos_token": {
|
18 |
+
"content": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|endoftext|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
3 |
+
size 11421896
|
tokenizer_config.json
ADDED
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
3 |
+
"add_prefix_space": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"151643": {
|
6 |
+
"content": "<|endoftext|>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"151644": {
|
14 |
+
"content": "<|im_start|>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"151645": {
|
22 |
+
"content": "<|im_end|>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
},
|
29 |
+
"151646": {
|
30 |
+
"content": "<|object_ref_start|>",
|
31 |
+
"lstrip": false,
|
32 |
+
"normalized": false,
|
33 |
+
"rstrip": false,
|
34 |
+
"single_word": false,
|
35 |
+
"special": true
|
36 |
+
},
|
37 |
+
"151647": {
|
38 |
+
"content": "<|object_ref_end|>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false,
|
43 |
+
"special": true
|
44 |
+
},
|
45 |
+
"151648": {
|
46 |
+
"content": "<|box_start|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false,
|
51 |
+
"special": true
|
52 |
+
},
|
53 |
+
"151649": {
|
54 |
+
"content": "<|box_end|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": false,
|
57 |
+
"rstrip": false,
|
58 |
+
"single_word": false,
|
59 |
+
"special": true
|
60 |
+
},
|
61 |
+
"151650": {
|
62 |
+
"content": "<|quad_start|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": false,
|
65 |
+
"rstrip": false,
|
66 |
+
"single_word": false,
|
67 |
+
"special": true
|
68 |
+
},
|
69 |
+
"151651": {
|
70 |
+
"content": "<|quad_end|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": false,
|
73 |
+
"rstrip": false,
|
74 |
+
"single_word": false,
|
75 |
+
"special": true
|
76 |
+
},
|
77 |
+
"151652": {
|
78 |
+
"content": "<|vision_start|>",
|
79 |
+
"lstrip": false,
|
80 |
+
"normalized": false,
|
81 |
+
"rstrip": false,
|
82 |
+
"single_word": false,
|
83 |
+
"special": true
|
84 |
+
},
|
85 |
+
"151653": {
|
86 |
+
"content": "<|vision_end|>",
|
87 |
+
"lstrip": false,
|
88 |
+
"normalized": false,
|
89 |
+
"rstrip": false,
|
90 |
+
"single_word": false,
|
91 |
+
"special": true
|
92 |
+
},
|
93 |
+
"151654": {
|
94 |
+
"content": "<|vision_pad|>",
|
95 |
+
"lstrip": false,
|
96 |
+
"normalized": false,
|
97 |
+
"rstrip": false,
|
98 |
+
"single_word": false,
|
99 |
+
"special": true
|
100 |
+
},
|
101 |
+
"151655": {
|
102 |
+
"content": "<|image_pad|>",
|
103 |
+
"lstrip": false,
|
104 |
+
"normalized": false,
|
105 |
+
"rstrip": false,
|
106 |
+
"single_word": false,
|
107 |
+
"special": true
|
108 |
+
},
|
109 |
+
"151656": {
|
110 |
+
"content": "<|video_pad|>",
|
111 |
+
"lstrip": false,
|
112 |
+
"normalized": false,
|
113 |
+
"rstrip": false,
|
114 |
+
"single_word": false,
|
115 |
+
"special": true
|
116 |
+
},
|
117 |
+
"151657": {
|
118 |
+
"content": "<tool_call>",
|
119 |
+
"lstrip": false,
|
120 |
+
"normalized": false,
|
121 |
+
"rstrip": false,
|
122 |
+
"single_word": false,
|
123 |
+
"special": false
|
124 |
+
},
|
125 |
+
"151658": {
|
126 |
+
"content": "</tool_call>",
|
127 |
+
"lstrip": false,
|
128 |
+
"normalized": false,
|
129 |
+
"rstrip": false,
|
130 |
+
"single_word": false,
|
131 |
+
"special": false
|
132 |
+
},
|
133 |
+
"151659": {
|
134 |
+
"content": "<|fim_prefix|>",
|
135 |
+
"lstrip": false,
|
136 |
+
"normalized": false,
|
137 |
+
"rstrip": false,
|
138 |
+
"single_word": false,
|
139 |
+
"special": false
|
140 |
+
},
|
141 |
+
"151660": {
|
142 |
+
"content": "<|fim_middle|>",
|
143 |
+
"lstrip": false,
|
144 |
+
"normalized": false,
|
145 |
+
"rstrip": false,
|
146 |
+
"single_word": false,
|
147 |
+
"special": false
|
148 |
+
},
|
149 |
+
"151661": {
|
150 |
+
"content": "<|fim_suffix|>",
|
151 |
+
"lstrip": false,
|
152 |
+
"normalized": false,
|
153 |
+
"rstrip": false,
|
154 |
+
"single_word": false,
|
155 |
+
"special": false
|
156 |
+
},
|
157 |
+
"151662": {
|
158 |
+
"content": "<|fim_pad|>",
|
159 |
+
"lstrip": false,
|
160 |
+
"normalized": false,
|
161 |
+
"rstrip": false,
|
162 |
+
"single_word": false,
|
163 |
+
"special": false
|
164 |
+
},
|
165 |
+
"151663": {
|
166 |
+
"content": "<|repo_name|>",
|
167 |
+
"lstrip": false,
|
168 |
+
"normalized": false,
|
169 |
+
"rstrip": false,
|
170 |
+
"single_word": false,
|
171 |
+
"special": false
|
172 |
+
},
|
173 |
+
"151664": {
|
174 |
+
"content": "<|file_sep|>",
|
175 |
+
"lstrip": false,
|
176 |
+
"normalized": false,
|
177 |
+
"rstrip": false,
|
178 |
+
"single_word": false,
|
179 |
+
"special": false
|
180 |
+
}
|
181 |
+
},
|
182 |
+
"additional_special_tokens": [
|
183 |
+
"<|im_start|>",
|
184 |
+
"<|im_end|>",
|
185 |
+
"<|object_ref_start|>",
|
186 |
+
"<|object_ref_end|>",
|
187 |
+
"<|box_start|>",
|
188 |
+
"<|box_end|>",
|
189 |
+
"<|quad_start|>",
|
190 |
+
"<|quad_end|>",
|
191 |
+
"<|vision_start|>",
|
192 |
+
"<|vision_end|>",
|
193 |
+
"<|vision_pad|>",
|
194 |
+
"<|image_pad|>",
|
195 |
+
"<|video_pad|>"
|
196 |
+
],
|
197 |
+
"bos_token": null,
|
198 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\n\\n# 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>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\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\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
|
199 |
+
"clean_up_tokenization_spaces": false,
|
200 |
+
"eos_token": "<|im_end|>",
|
201 |
+
"errors": "replace",
|
202 |
+
"model_max_length": 32768,
|
203 |
+
"pad_token": "<|endoftext|>",
|
204 |
+
"split_special_tokens": false,
|
205 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
206 |
+
"unk_token": null
|
207 |
+
}
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|