Upload Phi3VForCausalLMMoE
Browse files- README.md +150 -102
- config.json +152 -0
- generation_config.json +7 -0
- pytorch_model-00001-of-00004.bin +3 -0
- pytorch_model-00002-of-00004.bin +3 -0
- pytorch_model-00003-of-00004.bin +3 -0
- pytorch_model-00004-of-00004.bin +3 -0
- pytorch_model.bin.index.json +793 -0
README.md
CHANGED
|
@@ -1,151 +1,199 @@
|
|
| 1 |
---
|
| 2 |
-
language:
|
| 3 |
-
- multilingual
|
| 4 |
-
license: apache-2.0
|
| 5 |
library_name: transformers
|
| 6 |
-
|
| 7 |
-
- lamm-mit/Cephalo-Bioinspired-Mechanics-Materials
|
| 8 |
-
- lamm-mit/Cephalo-Wikipedia-Materials
|
| 9 |
-
tags:
|
| 10 |
-
- nlp
|
| 11 |
-
- code
|
| 12 |
-
- vision
|
| 13 |
-
- chemistry
|
| 14 |
-
- engineering
|
| 15 |
-
- biology
|
| 16 |
-
- bio-inspired
|
| 17 |
-
- text-generation-inference
|
| 18 |
-
- materials science
|
| 19 |
-
pipeline_tag: image-text-to-text
|
| 20 |
-
inference:
|
| 21 |
-
parameters:
|
| 22 |
-
temperature: 0.3
|
| 23 |
-
widget:
|
| 24 |
-
- messages:
|
| 25 |
-
- role: user
|
| 26 |
-
content: <|image_1|>Can you describe what you see in the image?
|
| 27 |
---
|
| 28 |
-
## Model Summary
|
| 29 |
|
| 30 |
-
|
| 31 |
|
| 32 |
-
|
| 33 |
|
| 34 |
-
Cephalo can interpret complex visual scenes and generating contextually accurate language descriptions and answer queries.
|
| 35 |
|
| 36 |
-
The model is developed to process diverse inputs, including images and text, facilitating a broad range of applications such as image captioning, visual question answering, and multimodal content generation. The architecture combines a vision encoder model and an autoregressive transformer to process complex natural language understanding.
|
| 37 |
|
| 38 |
-
|
| 39 |
|
| 40 |
-
|
| 41 |
|
| 42 |
-
|
| 43 |
|
| 44 |
-
|
| 45 |
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
|
|
|
|
|
|
| 51 |
|
| 52 |
-
|
| 53 |
|
| 54 |
-
|
| 55 |
-
<|user|>\n<|image_1|>\n{prompt_1}<|end|>\n<|assistant|>\n{response_1}<|end|>\n<|user|>\n{prompt_2}<|end|>\n<|assistant|>\n
|
| 56 |
-
```
|
| 57 |
|
| 58 |
-
|
|
|
|
|
|
|
| 59 |
|
| 60 |
-
|
| 61 |
|
| 62 |
-
|
| 63 |
-
from PIL import Image
|
| 64 |
-
import requests
|
| 65 |
-
from transformers import AutoModelForCausalLM
|
| 66 |
-
from transformers import AutoProcessor
|
| 67 |
|
| 68 |
-
|
| 69 |
|
| 70 |
-
model
|
| 71 |
|
| 72 |
-
|
| 73 |
|
| 74 |
-
|
| 75 |
|
| 76 |
-
|
| 77 |
-
{"role": "user", "content": f"<|image_1|>\n{question}"},
|
| 78 |
-
]
|
| 79 |
|
| 80 |
-
|
| 81 |
|
| 82 |
-
|
| 83 |
|
| 84 |
-
|
| 85 |
|
| 86 |
-
|
| 87 |
|
| 88 |
-
|
| 89 |
-
"max_new_tokens": 512,
|
| 90 |
-
"temperature": 0.1,
|
| 91 |
-
"do_sample": True,
|
| 92 |
-
"stop_strings": ['<|end|>',
|
| 93 |
-
'<|endoftext|>'],
|
| 94 |
-
"tokenizer": processor.tokenizer,
|
| 95 |
-
}
|
| 96 |
|
| 97 |
-
|
| 98 |
|
| 99 |
-
|
| 100 |
-
generate_ids = generate_ids[:, inputs['input_ids'].shape[1]:]
|
| 101 |
-
response = processor.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
|
| 102 |
|
| 103 |
-
|
| 104 |
-
```
|
| 105 |
-
Sample output:
|
| 106 |
|
| 107 |
-
|
| 108 |
-
<small>Image by [Vaishakh Manohar](https://www.quantamagazine.org/the-simple-algorithm-that-ants-use-to-build-bridges-20180226/)</small>
|
| 109 |
|
| 110 |
-
|
| 111 |
-
The image shows a group of red ants (Solenopsis invicta) climbing over a vertical wooden post. The ants are using their long legs and antennae to navigate the rough surface of the wood, demonstrating their ability to adapt to different materials and environments. This behavior is relevant for materials design because it highlights the importance of considering the interactions between materials and living organisms, such as ants, when designing new materials.
|
| 112 |
|
| 113 |
-
|
| 114 |
|
| 115 |
-
|
| 116 |
|
| 117 |
-
|
| 118 |
-
</pre>
|
| 119 |
|
|
|
|
| 120 |
|
| 121 |
-
|
| 122 |
|
| 123 |
-
|
| 124 |
|
| 125 |
-
|
| 126 |
|
| 127 |
-
|
| 128 |
|
|
|
|
| 129 |
|
| 130 |
-
|
| 131 |
|
| 132 |
-
|
| 133 |
|
| 134 |
-

|
| 135 |
|
| 136 |
-
|
| 137 |
|
| 138 |
-
|
| 139 |
|
| 140 |
-
|
| 141 |
|
| 142 |
-
|
| 143 |
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
library_name: transformers
|
| 3 |
+
tags: []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
|
|
|
| 5 |
|
| 6 |
+
# Model Card for Model ID
|
| 7 |
|
| 8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 9 |
|
|
|
|
| 10 |
|
|
|
|
| 11 |
|
| 12 |
+
## Model Details
|
| 13 |
|
| 14 |
+
### Model Description
|
| 15 |
|
| 16 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 17 |
|
| 18 |
+
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
|
| 19 |
|
| 20 |
+
- **Developed by:** [More Information Needed]
|
| 21 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 22 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 23 |
+
- **Model type:** [More Information Needed]
|
| 24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
+
- **License:** [More Information Needed]
|
| 26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
|
| 28 |
+
### Model Sources [optional]
|
| 29 |
|
| 30 |
+
<!-- Provide the basic links for the model. -->
|
|
|
|
|
|
|
| 31 |
|
| 32 |
+
- **Repository:** [More Information Needed]
|
| 33 |
+
- **Paper [optional]:** [More Information Needed]
|
| 34 |
+
- **Demo [optional]:** [More Information Needed]
|
| 35 |
|
| 36 |
+
## Uses
|
| 37 |
|
| 38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
|
| 40 |
+
### Direct Use
|
| 41 |
|
| 42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
|
| 44 |
+
[More Information Needed]
|
| 45 |
|
| 46 |
+
### Downstream Use [optional]
|
| 47 |
|
| 48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
|
|
|
|
|
|
| 49 |
|
| 50 |
+
[More Information Needed]
|
| 51 |
|
| 52 |
+
### Out-of-Scope Use
|
| 53 |
|
| 54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
|
| 56 |
+
[More Information Needed]
|
| 57 |
|
| 58 |
+
## Bias, Risks, and Limitations
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
|
| 60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
|
| 62 |
+
[More Information Needed]
|
|
|
|
|
|
|
| 63 |
|
| 64 |
+
### Recommendations
|
|
|
|
|
|
|
| 65 |
|
| 66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
|
|
|
| 67 |
|
| 68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
|
|
|
| 69 |
|
| 70 |
+
## How to Get Started with the Model
|
| 71 |
|
| 72 |
+
Use the code below to get started with the model.
|
| 73 |
|
| 74 |
+
[More Information Needed]
|
|
|
|
| 75 |
|
| 76 |
+
## Training Details
|
| 77 |
|
| 78 |
+
### Training Data
|
| 79 |
|
| 80 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 81 |
|
| 82 |
+
[More Information Needed]
|
| 83 |
|
| 84 |
+
### Training Procedure
|
| 85 |
|
| 86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
|
| 88 |
+
#### Preprocessing [optional]
|
| 89 |
|
| 90 |
+
[More Information Needed]
|
| 91 |
|
|
|
|
| 92 |
|
| 93 |
+
#### Training Hyperparameters
|
| 94 |
|
| 95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 96 |
|
| 97 |
+
#### Speeds, Sizes, Times [optional]
|
| 98 |
|
| 99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 100 |
|
| 101 |
+
[More Information Needed]
|
| 102 |
+
|
| 103 |
+
## Evaluation
|
| 104 |
+
|
| 105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 106 |
+
|
| 107 |
+
### Testing Data, Factors & Metrics
|
| 108 |
+
|
| 109 |
+
#### Testing Data
|
| 110 |
+
|
| 111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 112 |
+
|
| 113 |
+
[More Information Needed]
|
| 114 |
+
|
| 115 |
+
#### Factors
|
| 116 |
+
|
| 117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Metrics
|
| 122 |
+
|
| 123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
### Results
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
#### Summary
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
## Model Examination [optional]
|
| 136 |
+
|
| 137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 138 |
+
|
| 139 |
+
[More Information Needed]
|
| 140 |
+
|
| 141 |
+
## Environmental Impact
|
| 142 |
+
|
| 143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
+
|
| 145 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 146 |
+
|
| 147 |
+
- **Hardware Type:** [More Information Needed]
|
| 148 |
+
- **Hours used:** [More Information Needed]
|
| 149 |
+
- **Cloud Provider:** [More Information Needed]
|
| 150 |
+
- **Compute Region:** [More Information Needed]
|
| 151 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
+
|
| 153 |
+
## Technical Specifications [optional]
|
| 154 |
+
|
| 155 |
+
### Model Architecture and Objective
|
| 156 |
+
|
| 157 |
+
[More Information Needed]
|
| 158 |
+
|
| 159 |
+
### Compute Infrastructure
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
#### Hardware
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Software
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
## Citation [optional]
|
| 172 |
+
|
| 173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
+
|
| 175 |
+
**BibTeX:**
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
**APA:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
## Glossary [optional]
|
| 184 |
+
|
| 185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## More Information [optional]
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## Model Card Authors [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Contact
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
config.json
ADDED
|
@@ -0,0 +1,152 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "microsoft/Phi-3-vision-128k-instruct",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Phi3VForCausalLMMoE"
|
| 5 |
+
],
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"auto_map": {
|
| 8 |
+
"AutoConfig": "moe_phi3_v.Phi3VForCausalLMMoEConfig",
|
| 9 |
+
"AutoModelForCausalLM": "moe_phi3_v.Phi3VForCausalLMMoE"
|
| 10 |
+
},
|
| 11 |
+
"bos_token_id": 1,
|
| 12 |
+
"embd_layer": {
|
| 13 |
+
"embedding_cls": "image",
|
| 14 |
+
"hd_transform_order": "sub_glb",
|
| 15 |
+
"projection_cls": "mlp",
|
| 16 |
+
"use_hd_transform": true,
|
| 17 |
+
"with_learnable_separator": true
|
| 18 |
+
},
|
| 19 |
+
"embd_pdrop": 0.0,
|
| 20 |
+
"eos_token_id": 2,
|
| 21 |
+
"hidden_act": "silu",
|
| 22 |
+
"hidden_size": 3072,
|
| 23 |
+
"img_processor": {
|
| 24 |
+
"image_dim_out": 1024,
|
| 25 |
+
"model_name": "openai/clip-vit-large-patch14-336",
|
| 26 |
+
"name": "clip_vision_model",
|
| 27 |
+
"num_img_tokens": 144
|
| 28 |
+
},
|
| 29 |
+
"initializer_range": 0.02,
|
| 30 |
+
"intermediate_size": 8192,
|
| 31 |
+
"k": 1,
|
| 32 |
+
"max_position_embeddings": 131072,
|
| 33 |
+
"model_type": "phi3_v_moe",
|
| 34 |
+
"num_attention_heads": 32,
|
| 35 |
+
"num_expert_models": 3,
|
| 36 |
+
"num_hidden_layers": 32,
|
| 37 |
+
"num_key_value_heads": 32,
|
| 38 |
+
"original_max_position_embeddings": 4096,
|
| 39 |
+
"pad_token_id": 32000,
|
| 40 |
+
"resid_pdrop": 0.0,
|
| 41 |
+
"rms_norm_eps": 1e-05,
|
| 42 |
+
"rope_scaling": {
|
| 43 |
+
"long_factor": [
|
| 44 |
+
1.0299999713897705,
|
| 45 |
+
1.0499999523162842,
|
| 46 |
+
1.0499999523162842,
|
| 47 |
+
1.0799999237060547,
|
| 48 |
+
1.2299998998641968,
|
| 49 |
+
1.2299998998641968,
|
| 50 |
+
1.2999999523162842,
|
| 51 |
+
1.4499999284744263,
|
| 52 |
+
1.5999999046325684,
|
| 53 |
+
1.6499998569488525,
|
| 54 |
+
1.8999998569488525,
|
| 55 |
+
2.859999895095825,
|
| 56 |
+
3.68999981880188,
|
| 57 |
+
5.419999599456787,
|
| 58 |
+
5.489999771118164,
|
| 59 |
+
5.489999771118164,
|
| 60 |
+
9.09000015258789,
|
| 61 |
+
11.579999923706055,
|
| 62 |
+
15.65999984741211,
|
| 63 |
+
15.769999504089355,
|
| 64 |
+
15.789999961853027,
|
| 65 |
+
18.360000610351562,
|
| 66 |
+
21.989999771118164,
|
| 67 |
+
23.079999923706055,
|
| 68 |
+
30.009998321533203,
|
| 69 |
+
32.35000228881836,
|
| 70 |
+
32.590003967285156,
|
| 71 |
+
35.56000518798828,
|
| 72 |
+
39.95000457763672,
|
| 73 |
+
53.840003967285156,
|
| 74 |
+
56.20000457763672,
|
| 75 |
+
57.95000457763672,
|
| 76 |
+
59.29000473022461,
|
| 77 |
+
59.77000427246094,
|
| 78 |
+
59.920005798339844,
|
| 79 |
+
61.190006256103516,
|
| 80 |
+
61.96000671386719,
|
| 81 |
+
62.50000762939453,
|
| 82 |
+
63.3700065612793,
|
| 83 |
+
63.48000717163086,
|
| 84 |
+
63.48000717163086,
|
| 85 |
+
63.66000747680664,
|
| 86 |
+
63.850006103515625,
|
| 87 |
+
64.08000946044922,
|
| 88 |
+
64.760009765625,
|
| 89 |
+
64.80001068115234,
|
| 90 |
+
64.81001281738281,
|
| 91 |
+
64.81001281738281
|
| 92 |
+
],
|
| 93 |
+
"short_factor": [
|
| 94 |
+
1.05,
|
| 95 |
+
1.05,
|
| 96 |
+
1.05,
|
| 97 |
+
1.1,
|
| 98 |
+
1.1,
|
| 99 |
+
1.1,
|
| 100 |
+
1.2500000000000002,
|
| 101 |
+
1.2500000000000002,
|
| 102 |
+
1.4000000000000004,
|
| 103 |
+
1.4500000000000004,
|
| 104 |
+
1.5500000000000005,
|
| 105 |
+
1.8500000000000008,
|
| 106 |
+
1.9000000000000008,
|
| 107 |
+
2.000000000000001,
|
| 108 |
+
2.000000000000001,
|
| 109 |
+
2.000000000000001,
|
| 110 |
+
2.000000000000001,
|
| 111 |
+
2.000000000000001,
|
| 112 |
+
2.000000000000001,
|
| 113 |
+
2.000000000000001,
|
| 114 |
+
2.000000000000001,
|
| 115 |
+
2.000000000000001,
|
| 116 |
+
2.000000000000001,
|
| 117 |
+
2.000000000000001,
|
| 118 |
+
2.000000000000001,
|
| 119 |
+
2.000000000000001,
|
| 120 |
+
2.000000000000001,
|
| 121 |
+
2.000000000000001,
|
| 122 |
+
2.000000000000001,
|
| 123 |
+
2.000000000000001,
|
| 124 |
+
2.000000000000001,
|
| 125 |
+
2.000000000000001,
|
| 126 |
+
2.1000000000000005,
|
| 127 |
+
2.1000000000000005,
|
| 128 |
+
2.2,
|
| 129 |
+
2.3499999999999996,
|
| 130 |
+
2.3499999999999996,
|
| 131 |
+
2.3499999999999996,
|
| 132 |
+
2.3499999999999996,
|
| 133 |
+
2.3999999999999995,
|
| 134 |
+
2.3999999999999995,
|
| 135 |
+
2.6499999999999986,
|
| 136 |
+
2.6999999999999984,
|
| 137 |
+
2.8999999999999977,
|
| 138 |
+
2.9499999999999975,
|
| 139 |
+
3.049999999999997,
|
| 140 |
+
3.049999999999997,
|
| 141 |
+
3.049999999999997
|
| 142 |
+
],
|
| 143 |
+
"type": "su"
|
| 144 |
+
},
|
| 145 |
+
"rope_theta": 10000.0,
|
| 146 |
+
"sliding_window": 131072,
|
| 147 |
+
"tie_word_embeddings": false,
|
| 148 |
+
"torch_dtype": "bfloat16",
|
| 149 |
+
"transformers_version": "4.41.1",
|
| 150 |
+
"use_cache": true,
|
| 151 |
+
"vocab_size": 32064
|
| 152 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 1,
|
| 4 |
+
"eos_token_id": 2,
|
| 5 |
+
"pad_token_id": 32000,
|
| 6 |
+
"transformers_version": "4.41.1"
|
| 7 |
+
}
|
pytorch_model-00001-of-00004.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:13395a89696b690cb4cdffd5e8bb225e64181a33535417761e830a5ce4672c18
|
| 3 |
+
size 4925359194
|
pytorch_model-00002-of-00004.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ec54a2ec76df6fd71f158726797b1744d9dc94f6bfbd3682a0753a260f26d0a
|
| 3 |
+
size 4983183042
|
pytorch_model-00003-of-00004.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7dc0f73ed03e0e85ccdfd31c2cdbd01a73bd28cc55978e7d06778a50db952c49
|
| 3 |
+
size 4907652664
|
pytorch_model-00004-of-00004.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d15760408a807be3102337cc34d3bd25406bf0d4eec9f6517757bd59b60a6694
|
| 3 |
+
size 3535621544
|
pytorch_model.bin.index.json
ADDED
|
@@ -0,0 +1,793 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 18351511744
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "pytorch_model-00004-of-00004.bin",
|
| 7 |
+
"model.lm_head.weight": "pytorch_model-00004-of-00004.bin",
|
| 8 |
+
"model.model.embed_tokens.weight": "pytorch_model-00001-of-00004.bin",
|
| 9 |
+
"model.model.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 10 |
+
"model.model.layers.0.mlp.experts.0.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 11 |
+
"model.model.layers.0.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 12 |
+
"model.model.layers.0.mlp.experts.1.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 13 |
+
"model.model.layers.0.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 14 |
+
"model.model.layers.0.mlp.experts.2.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 15 |
+
"model.model.layers.0.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 16 |
+
"model.model.layers.0.mlp.gating_layer.gate.bias": "pytorch_model-00001-of-00004.bin",
|
| 17 |
+
"model.model.layers.0.mlp.gating_layer.gate.weight": "pytorch_model-00001-of-00004.bin",
|
| 18 |
+
"model.model.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 19 |
+
"model.model.layers.0.self_attn.o_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 20 |
+
"model.model.layers.0.self_attn.qkv_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 21 |
+
"model.model.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 22 |
+
"model.model.layers.1.mlp.experts.0.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 23 |
+
"model.model.layers.1.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 24 |
+
"model.model.layers.1.mlp.experts.1.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 25 |
+
"model.model.layers.1.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 26 |
+
"model.model.layers.1.mlp.experts.2.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 27 |
+
"model.model.layers.1.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 28 |
+
"model.model.layers.1.mlp.gating_layer.gate.bias": "pytorch_model-00001-of-00004.bin",
|
| 29 |
+
"model.model.layers.1.mlp.gating_layer.gate.weight": "pytorch_model-00001-of-00004.bin",
|
| 30 |
+
"model.model.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 31 |
+
"model.model.layers.1.self_attn.o_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 32 |
+
"model.model.layers.1.self_attn.qkv_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 33 |
+
"model.model.layers.10.input_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 34 |
+
"model.model.layers.10.mlp.experts.0.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 35 |
+
"model.model.layers.10.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 36 |
+
"model.model.layers.10.mlp.experts.1.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 37 |
+
"model.model.layers.10.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 38 |
+
"model.model.layers.10.mlp.experts.2.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 39 |
+
"model.model.layers.10.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 40 |
+
"model.model.layers.10.mlp.gating_layer.gate.bias": "pytorch_model-00002-of-00004.bin",
|
| 41 |
+
"model.model.layers.10.mlp.gating_layer.gate.weight": "pytorch_model-00002-of-00004.bin",
|
| 42 |
+
"model.model.layers.10.post_attention_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 43 |
+
"model.model.layers.10.self_attn.o_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 44 |
+
"model.model.layers.10.self_attn.qkv_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 45 |
+
"model.model.layers.11.input_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 46 |
+
"model.model.layers.11.mlp.experts.0.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 47 |
+
"model.model.layers.11.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 48 |
+
"model.model.layers.11.mlp.experts.1.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 49 |
+
"model.model.layers.11.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 50 |
+
"model.model.layers.11.mlp.experts.2.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 51 |
+
"model.model.layers.11.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 52 |
+
"model.model.layers.11.mlp.gating_layer.gate.bias": "pytorch_model-00002-of-00004.bin",
|
| 53 |
+
"model.model.layers.11.mlp.gating_layer.gate.weight": "pytorch_model-00002-of-00004.bin",
|
| 54 |
+
"model.model.layers.11.post_attention_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 55 |
+
"model.model.layers.11.self_attn.o_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 56 |
+
"model.model.layers.11.self_attn.qkv_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 57 |
+
"model.model.layers.12.input_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 58 |
+
"model.model.layers.12.mlp.experts.0.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 59 |
+
"model.model.layers.12.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 60 |
+
"model.model.layers.12.mlp.experts.1.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 61 |
+
"model.model.layers.12.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 62 |
+
"model.model.layers.12.mlp.experts.2.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 63 |
+
"model.model.layers.12.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 64 |
+
"model.model.layers.12.mlp.gating_layer.gate.bias": "pytorch_model-00002-of-00004.bin",
|
| 65 |
+
"model.model.layers.12.mlp.gating_layer.gate.weight": "pytorch_model-00002-of-00004.bin",
|
| 66 |
+
"model.model.layers.12.post_attention_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 67 |
+
"model.model.layers.12.self_attn.o_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 68 |
+
"model.model.layers.12.self_attn.qkv_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 69 |
+
"model.model.layers.13.input_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 70 |
+
"model.model.layers.13.mlp.experts.0.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 71 |
+
"model.model.layers.13.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 72 |
+
"model.model.layers.13.mlp.experts.1.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 73 |
+
"model.model.layers.13.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 74 |
+
"model.model.layers.13.mlp.experts.2.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 75 |
+
"model.model.layers.13.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 76 |
+
"model.model.layers.13.mlp.gating_layer.gate.bias": "pytorch_model-00002-of-00004.bin",
|
| 77 |
+
"model.model.layers.13.mlp.gating_layer.gate.weight": "pytorch_model-00002-of-00004.bin",
|
| 78 |
+
"model.model.layers.13.post_attention_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 79 |
+
"model.model.layers.13.self_attn.o_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 80 |
+
"model.model.layers.13.self_attn.qkv_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 81 |
+
"model.model.layers.14.input_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 82 |
+
"model.model.layers.14.mlp.experts.0.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 83 |
+
"model.model.layers.14.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 84 |
+
"model.model.layers.14.mlp.experts.1.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 85 |
+
"model.model.layers.14.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 86 |
+
"model.model.layers.14.mlp.experts.2.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 87 |
+
"model.model.layers.14.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 88 |
+
"model.model.layers.14.mlp.gating_layer.gate.bias": "pytorch_model-00002-of-00004.bin",
|
| 89 |
+
"model.model.layers.14.mlp.gating_layer.gate.weight": "pytorch_model-00002-of-00004.bin",
|
| 90 |
+
"model.model.layers.14.post_attention_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 91 |
+
"model.model.layers.14.self_attn.o_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 92 |
+
"model.model.layers.14.self_attn.qkv_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 93 |
+
"model.model.layers.15.input_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 94 |
+
"model.model.layers.15.mlp.experts.0.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 95 |
+
"model.model.layers.15.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 96 |
+
"model.model.layers.15.mlp.experts.1.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 97 |
+
"model.model.layers.15.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 98 |
+
"model.model.layers.15.mlp.experts.2.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 99 |
+
"model.model.layers.15.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 100 |
+
"model.model.layers.15.mlp.gating_layer.gate.bias": "pytorch_model-00002-of-00004.bin",
|
| 101 |
+
"model.model.layers.15.mlp.gating_layer.gate.weight": "pytorch_model-00002-of-00004.bin",
|
| 102 |
+
"model.model.layers.15.post_attention_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 103 |
+
"model.model.layers.15.self_attn.o_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 104 |
+
"model.model.layers.15.self_attn.qkv_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 105 |
+
"model.model.layers.16.input_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 106 |
+
"model.model.layers.16.mlp.experts.0.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 107 |
+
"model.model.layers.16.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 108 |
+
"model.model.layers.16.mlp.experts.1.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 109 |
+
"model.model.layers.16.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 110 |
+
"model.model.layers.16.mlp.experts.2.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 111 |
+
"model.model.layers.16.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 112 |
+
"model.model.layers.16.mlp.gating_layer.gate.bias": "pytorch_model-00002-of-00004.bin",
|
| 113 |
+
"model.model.layers.16.mlp.gating_layer.gate.weight": "pytorch_model-00002-of-00004.bin",
|
| 114 |
+
"model.model.layers.16.post_attention_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 115 |
+
"model.model.layers.16.self_attn.o_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 116 |
+
"model.model.layers.16.self_attn.qkv_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 117 |
+
"model.model.layers.17.input_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 118 |
+
"model.model.layers.17.mlp.experts.0.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 119 |
+
"model.model.layers.17.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 120 |
+
"model.model.layers.17.mlp.experts.1.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 121 |
+
"model.model.layers.17.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 122 |
+
"model.model.layers.17.mlp.experts.2.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 123 |
+
"model.model.layers.17.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 124 |
+
"model.model.layers.17.mlp.gating_layer.gate.bias": "pytorch_model-00003-of-00004.bin",
|
| 125 |
+
"model.model.layers.17.mlp.gating_layer.gate.weight": "pytorch_model-00003-of-00004.bin",
|
| 126 |
+
"model.model.layers.17.post_attention_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 127 |
+
"model.model.layers.17.self_attn.o_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 128 |
+
"model.model.layers.17.self_attn.qkv_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 129 |
+
"model.model.layers.18.input_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 130 |
+
"model.model.layers.18.mlp.experts.0.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 131 |
+
"model.model.layers.18.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 132 |
+
"model.model.layers.18.mlp.experts.1.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 133 |
+
"model.model.layers.18.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 134 |
+
"model.model.layers.18.mlp.experts.2.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 135 |
+
"model.model.layers.18.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 136 |
+
"model.model.layers.18.mlp.gating_layer.gate.bias": "pytorch_model-00003-of-00004.bin",
|
| 137 |
+
"model.model.layers.18.mlp.gating_layer.gate.weight": "pytorch_model-00003-of-00004.bin",
|
| 138 |
+
"model.model.layers.18.post_attention_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 139 |
+
"model.model.layers.18.self_attn.o_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 140 |
+
"model.model.layers.18.self_attn.qkv_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 141 |
+
"model.model.layers.19.input_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 142 |
+
"model.model.layers.19.mlp.experts.0.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 143 |
+
"model.model.layers.19.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 144 |
+
"model.model.layers.19.mlp.experts.1.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 145 |
+
"model.model.layers.19.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 146 |
+
"model.model.layers.19.mlp.experts.2.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 147 |
+
"model.model.layers.19.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 148 |
+
"model.model.layers.19.mlp.gating_layer.gate.bias": "pytorch_model-00003-of-00004.bin",
|
| 149 |
+
"model.model.layers.19.mlp.gating_layer.gate.weight": "pytorch_model-00003-of-00004.bin",
|
| 150 |
+
"model.model.layers.19.post_attention_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 151 |
+
"model.model.layers.19.self_attn.o_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 152 |
+
"model.model.layers.19.self_attn.qkv_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 153 |
+
"model.model.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 154 |
+
"model.model.layers.2.mlp.experts.0.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 155 |
+
"model.model.layers.2.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 156 |
+
"model.model.layers.2.mlp.experts.1.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 157 |
+
"model.model.layers.2.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 158 |
+
"model.model.layers.2.mlp.experts.2.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 159 |
+
"model.model.layers.2.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 160 |
+
"model.model.layers.2.mlp.gating_layer.gate.bias": "pytorch_model-00001-of-00004.bin",
|
| 161 |
+
"model.model.layers.2.mlp.gating_layer.gate.weight": "pytorch_model-00001-of-00004.bin",
|
| 162 |
+
"model.model.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 163 |
+
"model.model.layers.2.self_attn.o_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 164 |
+
"model.model.layers.2.self_attn.qkv_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 165 |
+
"model.model.layers.20.input_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 166 |
+
"model.model.layers.20.mlp.experts.0.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 167 |
+
"model.model.layers.20.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 168 |
+
"model.model.layers.20.mlp.experts.1.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 169 |
+
"model.model.layers.20.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 170 |
+
"model.model.layers.20.mlp.experts.2.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 171 |
+
"model.model.layers.20.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 172 |
+
"model.model.layers.20.mlp.gating_layer.gate.bias": "pytorch_model-00003-of-00004.bin",
|
| 173 |
+
"model.model.layers.20.mlp.gating_layer.gate.weight": "pytorch_model-00003-of-00004.bin",
|
| 174 |
+
"model.model.layers.20.post_attention_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 175 |
+
"model.model.layers.20.self_attn.o_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 176 |
+
"model.model.layers.20.self_attn.qkv_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 177 |
+
"model.model.layers.21.input_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 178 |
+
"model.model.layers.21.mlp.experts.0.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 179 |
+
"model.model.layers.21.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 180 |
+
"model.model.layers.21.mlp.experts.1.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 181 |
+
"model.model.layers.21.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 182 |
+
"model.model.layers.21.mlp.experts.2.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 183 |
+
"model.model.layers.21.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 184 |
+
"model.model.layers.21.mlp.gating_layer.gate.bias": "pytorch_model-00003-of-00004.bin",
|
| 185 |
+
"model.model.layers.21.mlp.gating_layer.gate.weight": "pytorch_model-00003-of-00004.bin",
|
| 186 |
+
"model.model.layers.21.post_attention_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 187 |
+
"model.model.layers.21.self_attn.o_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 188 |
+
"model.model.layers.21.self_attn.qkv_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 189 |
+
"model.model.layers.22.input_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 190 |
+
"model.model.layers.22.mlp.experts.0.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 191 |
+
"model.model.layers.22.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 192 |
+
"model.model.layers.22.mlp.experts.1.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 193 |
+
"model.model.layers.22.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 194 |
+
"model.model.layers.22.mlp.experts.2.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 195 |
+
"model.model.layers.22.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 196 |
+
"model.model.layers.22.mlp.gating_layer.gate.bias": "pytorch_model-00003-of-00004.bin",
|
| 197 |
+
"model.model.layers.22.mlp.gating_layer.gate.weight": "pytorch_model-00003-of-00004.bin",
|
| 198 |
+
"model.model.layers.22.post_attention_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 199 |
+
"model.model.layers.22.self_attn.o_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 200 |
+
"model.model.layers.22.self_attn.qkv_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 201 |
+
"model.model.layers.23.input_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 202 |
+
"model.model.layers.23.mlp.experts.0.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 203 |
+
"model.model.layers.23.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 204 |
+
"model.model.layers.23.mlp.experts.1.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 205 |
+
"model.model.layers.23.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 206 |
+
"model.model.layers.23.mlp.experts.2.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 207 |
+
"model.model.layers.23.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 208 |
+
"model.model.layers.23.mlp.gating_layer.gate.bias": "pytorch_model-00003-of-00004.bin",
|
| 209 |
+
"model.model.layers.23.mlp.gating_layer.gate.weight": "pytorch_model-00003-of-00004.bin",
|
| 210 |
+
"model.model.layers.23.post_attention_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 211 |
+
"model.model.layers.23.self_attn.o_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 212 |
+
"model.model.layers.23.self_attn.qkv_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 213 |
+
"model.model.layers.24.input_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 214 |
+
"model.model.layers.24.mlp.experts.0.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 215 |
+
"model.model.layers.24.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 216 |
+
"model.model.layers.24.mlp.experts.1.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 217 |
+
"model.model.layers.24.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 218 |
+
"model.model.layers.24.mlp.experts.2.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 219 |
+
"model.model.layers.24.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 220 |
+
"model.model.layers.24.mlp.gating_layer.gate.bias": "pytorch_model-00003-of-00004.bin",
|
| 221 |
+
"model.model.layers.24.mlp.gating_layer.gate.weight": "pytorch_model-00003-of-00004.bin",
|
| 222 |
+
"model.model.layers.24.post_attention_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 223 |
+
"model.model.layers.24.self_attn.o_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 224 |
+
"model.model.layers.24.self_attn.qkv_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 225 |
+
"model.model.layers.25.input_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 226 |
+
"model.model.layers.25.mlp.experts.0.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 227 |
+
"model.model.layers.25.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 228 |
+
"model.model.layers.25.mlp.experts.1.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 229 |
+
"model.model.layers.25.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 230 |
+
"model.model.layers.25.mlp.experts.2.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 231 |
+
"model.model.layers.25.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 232 |
+
"model.model.layers.25.mlp.gating_layer.gate.bias": "pytorch_model-00003-of-00004.bin",
|
| 233 |
+
"model.model.layers.25.mlp.gating_layer.gate.weight": "pytorch_model-00003-of-00004.bin",
|
| 234 |
+
"model.model.layers.25.post_attention_layernorm.weight": "pytorch_model-00003-of-00004.bin",
|
| 235 |
+
"model.model.layers.25.self_attn.o_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 236 |
+
"model.model.layers.25.self_attn.qkv_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 237 |
+
"model.model.layers.26.input_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 238 |
+
"model.model.layers.26.mlp.experts.0.down_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 239 |
+
"model.model.layers.26.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 240 |
+
"model.model.layers.26.mlp.experts.1.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 241 |
+
"model.model.layers.26.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 242 |
+
"model.model.layers.26.mlp.experts.2.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 243 |
+
"model.model.layers.26.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 244 |
+
"model.model.layers.26.mlp.gating_layer.gate.bias": "pytorch_model-00004-of-00004.bin",
|
| 245 |
+
"model.model.layers.26.mlp.gating_layer.gate.weight": "pytorch_model-00004-of-00004.bin",
|
| 246 |
+
"model.model.layers.26.post_attention_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 247 |
+
"model.model.layers.26.self_attn.o_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 248 |
+
"model.model.layers.26.self_attn.qkv_proj.weight": "pytorch_model-00003-of-00004.bin",
|
| 249 |
+
"model.model.layers.27.input_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 250 |
+
"model.model.layers.27.mlp.experts.0.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 251 |
+
"model.model.layers.27.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 252 |
+
"model.model.layers.27.mlp.experts.1.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 253 |
+
"model.model.layers.27.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 254 |
+
"model.model.layers.27.mlp.experts.2.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 255 |
+
"model.model.layers.27.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 256 |
+
"model.model.layers.27.mlp.gating_layer.gate.bias": "pytorch_model-00004-of-00004.bin",
|
| 257 |
+
"model.model.layers.27.mlp.gating_layer.gate.weight": "pytorch_model-00004-of-00004.bin",
|
| 258 |
+
"model.model.layers.27.post_attention_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 259 |
+
"model.model.layers.27.self_attn.o_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 260 |
+
"model.model.layers.27.self_attn.qkv_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 261 |
+
"model.model.layers.28.input_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 262 |
+
"model.model.layers.28.mlp.experts.0.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 263 |
+
"model.model.layers.28.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 264 |
+
"model.model.layers.28.mlp.experts.1.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 265 |
+
"model.model.layers.28.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 266 |
+
"model.model.layers.28.mlp.experts.2.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 267 |
+
"model.model.layers.28.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 268 |
+
"model.model.layers.28.mlp.gating_layer.gate.bias": "pytorch_model-00004-of-00004.bin",
|
| 269 |
+
"model.model.layers.28.mlp.gating_layer.gate.weight": "pytorch_model-00004-of-00004.bin",
|
| 270 |
+
"model.model.layers.28.post_attention_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 271 |
+
"model.model.layers.28.self_attn.o_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 272 |
+
"model.model.layers.28.self_attn.qkv_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 273 |
+
"model.model.layers.29.input_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 274 |
+
"model.model.layers.29.mlp.experts.0.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 275 |
+
"model.model.layers.29.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 276 |
+
"model.model.layers.29.mlp.experts.1.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 277 |
+
"model.model.layers.29.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 278 |
+
"model.model.layers.29.mlp.experts.2.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 279 |
+
"model.model.layers.29.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 280 |
+
"model.model.layers.29.mlp.gating_layer.gate.bias": "pytorch_model-00004-of-00004.bin",
|
| 281 |
+
"model.model.layers.29.mlp.gating_layer.gate.weight": "pytorch_model-00004-of-00004.bin",
|
| 282 |
+
"model.model.layers.29.post_attention_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 283 |
+
"model.model.layers.29.self_attn.o_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 284 |
+
"model.model.layers.29.self_attn.qkv_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 285 |
+
"model.model.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 286 |
+
"model.model.layers.3.mlp.experts.0.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 287 |
+
"model.model.layers.3.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 288 |
+
"model.model.layers.3.mlp.experts.1.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 289 |
+
"model.model.layers.3.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 290 |
+
"model.model.layers.3.mlp.experts.2.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 291 |
+
"model.model.layers.3.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 292 |
+
"model.model.layers.3.mlp.gating_layer.gate.bias": "pytorch_model-00001-of-00004.bin",
|
| 293 |
+
"model.model.layers.3.mlp.gating_layer.gate.weight": "pytorch_model-00001-of-00004.bin",
|
| 294 |
+
"model.model.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 295 |
+
"model.model.layers.3.self_attn.o_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 296 |
+
"model.model.layers.3.self_attn.qkv_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 297 |
+
"model.model.layers.30.input_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 298 |
+
"model.model.layers.30.mlp.experts.0.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 299 |
+
"model.model.layers.30.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 300 |
+
"model.model.layers.30.mlp.experts.1.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 301 |
+
"model.model.layers.30.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 302 |
+
"model.model.layers.30.mlp.experts.2.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 303 |
+
"model.model.layers.30.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 304 |
+
"model.model.layers.30.mlp.gating_layer.gate.bias": "pytorch_model-00004-of-00004.bin",
|
| 305 |
+
"model.model.layers.30.mlp.gating_layer.gate.weight": "pytorch_model-00004-of-00004.bin",
|
| 306 |
+
"model.model.layers.30.post_attention_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 307 |
+
"model.model.layers.30.self_attn.o_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 308 |
+
"model.model.layers.30.self_attn.qkv_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 309 |
+
"model.model.layers.31.input_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 310 |
+
"model.model.layers.31.mlp.experts.0.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 311 |
+
"model.model.layers.31.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 312 |
+
"model.model.layers.31.mlp.experts.1.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 313 |
+
"model.model.layers.31.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 314 |
+
"model.model.layers.31.mlp.experts.2.down_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 315 |
+
"model.model.layers.31.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 316 |
+
"model.model.layers.31.mlp.gating_layer.gate.bias": "pytorch_model-00004-of-00004.bin",
|
| 317 |
+
"model.model.layers.31.mlp.gating_layer.gate.weight": "pytorch_model-00004-of-00004.bin",
|
| 318 |
+
"model.model.layers.31.post_attention_layernorm.weight": "pytorch_model-00004-of-00004.bin",
|
| 319 |
+
"model.model.layers.31.self_attn.o_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 320 |
+
"model.model.layers.31.self_attn.qkv_proj.weight": "pytorch_model-00004-of-00004.bin",
|
| 321 |
+
"model.model.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 322 |
+
"model.model.layers.4.mlp.experts.0.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 323 |
+
"model.model.layers.4.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 324 |
+
"model.model.layers.4.mlp.experts.1.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 325 |
+
"model.model.layers.4.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 326 |
+
"model.model.layers.4.mlp.experts.2.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 327 |
+
"model.model.layers.4.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 328 |
+
"model.model.layers.4.mlp.gating_layer.gate.bias": "pytorch_model-00001-of-00004.bin",
|
| 329 |
+
"model.model.layers.4.mlp.gating_layer.gate.weight": "pytorch_model-00001-of-00004.bin",
|
| 330 |
+
"model.model.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 331 |
+
"model.model.layers.4.self_attn.o_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 332 |
+
"model.model.layers.4.self_attn.qkv_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 333 |
+
"model.model.layers.5.input_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 334 |
+
"model.model.layers.5.mlp.experts.0.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 335 |
+
"model.model.layers.5.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 336 |
+
"model.model.layers.5.mlp.experts.1.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 337 |
+
"model.model.layers.5.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 338 |
+
"model.model.layers.5.mlp.experts.2.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 339 |
+
"model.model.layers.5.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 340 |
+
"model.model.layers.5.mlp.gating_layer.gate.bias": "pytorch_model-00001-of-00004.bin",
|
| 341 |
+
"model.model.layers.5.mlp.gating_layer.gate.weight": "pytorch_model-00001-of-00004.bin",
|
| 342 |
+
"model.model.layers.5.post_attention_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 343 |
+
"model.model.layers.5.self_attn.o_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 344 |
+
"model.model.layers.5.self_attn.qkv_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 345 |
+
"model.model.layers.6.input_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 346 |
+
"model.model.layers.6.mlp.experts.0.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 347 |
+
"model.model.layers.6.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 348 |
+
"model.model.layers.6.mlp.experts.1.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 349 |
+
"model.model.layers.6.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 350 |
+
"model.model.layers.6.mlp.experts.2.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 351 |
+
"model.model.layers.6.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 352 |
+
"model.model.layers.6.mlp.gating_layer.gate.bias": "pytorch_model-00001-of-00004.bin",
|
| 353 |
+
"model.model.layers.6.mlp.gating_layer.gate.weight": "pytorch_model-00001-of-00004.bin",
|
| 354 |
+
"model.model.layers.6.post_attention_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 355 |
+
"model.model.layers.6.self_attn.o_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 356 |
+
"model.model.layers.6.self_attn.qkv_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 357 |
+
"model.model.layers.7.input_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 358 |
+
"model.model.layers.7.mlp.experts.0.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 359 |
+
"model.model.layers.7.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 360 |
+
"model.model.layers.7.mlp.experts.1.down_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 361 |
+
"model.model.layers.7.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 362 |
+
"model.model.layers.7.mlp.experts.2.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 363 |
+
"model.model.layers.7.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 364 |
+
"model.model.layers.7.mlp.gating_layer.gate.bias": "pytorch_model-00002-of-00004.bin",
|
| 365 |
+
"model.model.layers.7.mlp.gating_layer.gate.weight": "pytorch_model-00002-of-00004.bin",
|
| 366 |
+
"model.model.layers.7.post_attention_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 367 |
+
"model.model.layers.7.self_attn.o_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 368 |
+
"model.model.layers.7.self_attn.qkv_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 369 |
+
"model.model.layers.8.input_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 370 |
+
"model.model.layers.8.mlp.experts.0.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 371 |
+
"model.model.layers.8.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 372 |
+
"model.model.layers.8.mlp.experts.1.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 373 |
+
"model.model.layers.8.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 374 |
+
"model.model.layers.8.mlp.experts.2.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 375 |
+
"model.model.layers.8.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 376 |
+
"model.model.layers.8.mlp.gating_layer.gate.bias": "pytorch_model-00002-of-00004.bin",
|
| 377 |
+
"model.model.layers.8.mlp.gating_layer.gate.weight": "pytorch_model-00002-of-00004.bin",
|
| 378 |
+
"model.model.layers.8.post_attention_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 379 |
+
"model.model.layers.8.self_attn.o_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 380 |
+
"model.model.layers.8.self_attn.qkv_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 381 |
+
"model.model.layers.9.input_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 382 |
+
"model.model.layers.9.mlp.experts.0.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 383 |
+
"model.model.layers.9.mlp.experts.0.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 384 |
+
"model.model.layers.9.mlp.experts.1.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 385 |
+
"model.model.layers.9.mlp.experts.1.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 386 |
+
"model.model.layers.9.mlp.experts.2.down_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 387 |
+
"model.model.layers.9.mlp.experts.2.gate_up_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 388 |
+
"model.model.layers.9.mlp.gating_layer.gate.bias": "pytorch_model-00002-of-00004.bin",
|
| 389 |
+
"model.model.layers.9.mlp.gating_layer.gate.weight": "pytorch_model-00002-of-00004.bin",
|
| 390 |
+
"model.model.layers.9.post_attention_layernorm.weight": "pytorch_model-00002-of-00004.bin",
|
| 391 |
+
"model.model.layers.9.self_attn.o_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 392 |
+
"model.model.layers.9.self_attn.qkv_proj.weight": "pytorch_model-00002-of-00004.bin",
|
| 393 |
+
"model.model.norm.weight": "pytorch_model-00004-of-00004.bin",
|
| 394 |
+
"model.model.vision_embed_tokens.glb_GN": "pytorch_model-00001-of-00004.bin",
|
| 395 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.embeddings.class_embedding": "pytorch_model-00001-of-00004.bin",
|
| 396 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.embeddings.patch_embedding.weight": "pytorch_model-00001-of-00004.bin",
|
| 397 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.embeddings.position_embedding.weight": "pytorch_model-00001-of-00004.bin",
|
| 398 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 399 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 400 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 401 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 402 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 403 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 404 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 405 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 406 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 407 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 408 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 409 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 410 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 411 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 412 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 413 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.0.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 414 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 415 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 416 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 417 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 418 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 419 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 420 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 421 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 422 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 423 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 424 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 425 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 426 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 427 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 428 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 429 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.1.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 430 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 431 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 432 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 433 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 434 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 435 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 436 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 437 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 438 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 439 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 440 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 441 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 442 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 443 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 444 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 445 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.10.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 446 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 447 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 448 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 449 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 450 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 451 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 452 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 453 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 454 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 455 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 456 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 457 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 458 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 459 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 460 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 461 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.11.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 462 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 463 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 464 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 465 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 466 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 467 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 468 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 469 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 470 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 471 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 472 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 473 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 474 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 475 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 476 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 477 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.12.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 478 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 479 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 480 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 481 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 482 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 483 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 484 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 485 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 486 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 487 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 488 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 489 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 490 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 491 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 492 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 493 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.13.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 494 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 495 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 496 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 497 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 498 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 499 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 500 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 501 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 502 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 503 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 504 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 505 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 506 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 507 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 508 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 509 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.14.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 510 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 511 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 512 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 513 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 514 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 515 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 516 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 517 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 518 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 519 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 520 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 521 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 522 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 523 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 524 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 525 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.15.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 526 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 527 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 528 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 529 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 530 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 531 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 532 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 533 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 534 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 535 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 536 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 537 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 538 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 539 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 540 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 541 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.16.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 542 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 543 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 544 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 545 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 546 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 547 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 548 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 549 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 550 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 551 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 552 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 553 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 554 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 555 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 556 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 557 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.17.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 558 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 559 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 560 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 561 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 562 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 563 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 564 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 565 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 566 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 567 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 568 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 569 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 570 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 571 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 572 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 573 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.18.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 574 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 575 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 576 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 577 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 578 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 579 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 580 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 581 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 582 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 583 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 584 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 585 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 586 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 587 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 588 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 589 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.19.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 590 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 591 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 592 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 593 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 594 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 595 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 596 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 597 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 598 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 599 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 600 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 601 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 602 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 603 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 604 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 605 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.2.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 606 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 607 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 608 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 609 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 610 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 611 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 612 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 613 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 614 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 615 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 616 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 617 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 618 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 619 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 620 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 621 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.20.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 622 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 623 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 624 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 625 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 626 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 627 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 628 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 629 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 630 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 631 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 632 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 633 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 634 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 635 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 636 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 637 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.21.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 638 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 639 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 640 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 641 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 642 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 643 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 644 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 645 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 646 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 647 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 648 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 649 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 650 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 651 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 652 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 653 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.22.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 654 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 655 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 656 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 657 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 658 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 659 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 660 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 661 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 662 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 663 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 664 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 665 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 666 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 667 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 668 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 669 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.23.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 670 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 671 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 672 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 673 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 674 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 675 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 676 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 677 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 678 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 679 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 680 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 681 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 682 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 683 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 684 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 685 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.3.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 686 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 687 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 688 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 689 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 690 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 691 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 692 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 693 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 694 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 695 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 696 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 697 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 698 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 699 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 700 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 701 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.4.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 702 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 703 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 704 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 705 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 706 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 707 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 708 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 709 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 710 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 711 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 712 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 713 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 714 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 715 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 716 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 717 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.5.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 718 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 719 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 720 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 721 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 722 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 723 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 724 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 725 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 726 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 727 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 728 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 729 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 730 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 731 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 732 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 733 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.6.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 734 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 735 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 736 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 737 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 738 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 739 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 740 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 741 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 742 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 743 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 744 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 745 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 746 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 747 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 748 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 749 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.7.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 750 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 751 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 752 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 753 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 754 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 755 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 756 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 757 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 758 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 759 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 760 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 761 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 762 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 763 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 764 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 765 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.8.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 766 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.layer_norm1.bias": "pytorch_model-00001-of-00004.bin",
|
| 767 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.layer_norm1.weight": "pytorch_model-00001-of-00004.bin",
|
| 768 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.layer_norm2.bias": "pytorch_model-00001-of-00004.bin",
|
| 769 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.layer_norm2.weight": "pytorch_model-00001-of-00004.bin",
|
| 770 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.mlp.fc1.bias": "pytorch_model-00001-of-00004.bin",
|
| 771 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.mlp.fc1.weight": "pytorch_model-00001-of-00004.bin",
|
| 772 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.mlp.fc2.bias": "pytorch_model-00001-of-00004.bin",
|
| 773 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.mlp.fc2.weight": "pytorch_model-00001-of-00004.bin",
|
| 774 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.self_attn.k_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 775 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.self_attn.k_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 776 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.self_attn.out_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 777 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.self_attn.out_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 778 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.self_attn.q_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 779 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.self_attn.q_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 780 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.self_attn.v_proj.bias": "pytorch_model-00001-of-00004.bin",
|
| 781 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.encoder.layers.9.self_attn.v_proj.weight": "pytorch_model-00001-of-00004.bin",
|
| 782 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.post_layernorm.bias": "pytorch_model-00001-of-00004.bin",
|
| 783 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.post_layernorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 784 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.pre_layrnorm.bias": "pytorch_model-00001-of-00004.bin",
|
| 785 |
+
"model.model.vision_embed_tokens.img_processor.vision_model.pre_layrnorm.weight": "pytorch_model-00001-of-00004.bin",
|
| 786 |
+
"model.model.vision_embed_tokens.img_projection.0.bias": "pytorch_model-00001-of-00004.bin",
|
| 787 |
+
"model.model.vision_embed_tokens.img_projection.0.weight": "pytorch_model-00001-of-00004.bin",
|
| 788 |
+
"model.model.vision_embed_tokens.img_projection.2.bias": "pytorch_model-00001-of-00004.bin",
|
| 789 |
+
"model.model.vision_embed_tokens.img_projection.2.weight": "pytorch_model-00001-of-00004.bin",
|
| 790 |
+
"model.model.vision_embed_tokens.sub_GN": "pytorch_model-00001-of-00004.bin",
|
| 791 |
+
"model.model.vision_embed_tokens.wte.weight": "pytorch_model-00001-of-00004.bin"
|
| 792 |
+
}
|
| 793 |
+
}
|