Upload folder using huggingface_hub
Browse files- README.md +61 -0
- config.json +26 -0
- generation_config.json +6 -0
- learned_lambdas.json +1759 -0
- logs/save_merged_model_20250703_172454.log +74 -0
- model-00001-of-00003.safetensors +3 -0
- model-00002-of-00003.safetensors +3 -0
- model-00003-of-00003.safetensors +3 -0
- model.safetensors.index.json +298 -0
- special_tokens_map.json +24 -0
- tokenizer.json +0 -0
- tokenizer_config.json +44 -0
README.md
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- merge
|
4 |
+
- parameter_wise
|
5 |
+
- llm-adamerge
|
6 |
+
base_model: mistralai/Mistral-7B-v0.1
|
7 |
+
---
|
8 |
+
|
9 |
+
# Merged Model using LLM-AdaMerge (parameter_wise)
|
10 |
+
|
11 |
+
This model was created by merging multiple fine-tuned models using the LLM-AdaMerge approach with parameter_wise merging.
|
12 |
+
|
13 |
+
## Merge Details
|
14 |
+
|
15 |
+
- **Merge Type**: parameter_wise
|
16 |
+
- **Base Model**: mistralai/Mistral-7B-v0.1
|
17 |
+
- **Number of Models Merged**: 3
|
18 |
+
- **Models Merged**: instruct, math, code
|
19 |
+
- **Final Training Loss**: N/A
|
20 |
+
- **Training Epochs**: 0
|
21 |
+
|
22 |
+
## Lambda Coefficients
|
23 |
+
|
24 |
+
The following lambda coefficients were learned during training:
|
25 |
+
|
26 |
+
|
27 |
+
### Parameter-wise Lambdas
|
28 |
+
This model uses parameter-wise lambda coefficients. Total parameters with individual lambdas: 291
|
29 |
+
|
30 |
+
|
31 |
+
See the uploaded `learned_lambdas.json` file for detailed parameter-wise coefficients.
|
32 |
+
|
33 |
+
## Usage
|
34 |
+
|
35 |
+
```python
|
36 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
37 |
+
|
38 |
+
model = AutoModelForCausalLM.from_pretrained("your-username/model-name")
|
39 |
+
tokenizer = AutoTokenizer.from_pretrained("your-username/model-name")
|
40 |
+
|
41 |
+
# Use the model
|
42 |
+
inputs = tokenizer("Hello, how are you?", return_tensors="pt")
|
43 |
+
outputs = model.generate(**inputs)
|
44 |
+
print(tokenizer.decode(outputs[0]))
|
45 |
+
```
|
46 |
+
|
47 |
+
## Training Configuration
|
48 |
+
|
49 |
+
See the uploaded `training_config.json` file for detailed training configuration.
|
50 |
+
|
51 |
+
## Citation
|
52 |
+
|
53 |
+
If you use this model, please cite the LLM-AdaMerge paper:
|
54 |
+
|
55 |
+
```bibtex
|
56 |
+
@article{llmadamerge2024,
|
57 |
+
title={LLM-AdaMerge: Adaptive Model Merging for Large Language Models},
|
58 |
+
author={...},
|
59 |
+
year={2024}
|
60 |
+
}
|
61 |
+
```
|
config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"MistralForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_dropout": 0.0,
|
6 |
+
"bos_token_id": 1,
|
7 |
+
"eos_token_id": 2,
|
8 |
+
"head_dim": null,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 4096,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 14336,
|
13 |
+
"max_position_embeddings": 32768,
|
14 |
+
"model_type": "mistral",
|
15 |
+
"num_attention_heads": 32,
|
16 |
+
"num_hidden_layers": 32,
|
17 |
+
"num_key_value_heads": 8,
|
18 |
+
"rms_norm_eps": 1e-05,
|
19 |
+
"rope_theta": 10000.0,
|
20 |
+
"sliding_window": 4096,
|
21 |
+
"tie_word_embeddings": false,
|
22 |
+
"torch_dtype": "float16",
|
23 |
+
"transformers_version": "4.52.4",
|
24 |
+
"use_cache": true,
|
25 |
+
"vocab_size": 32000
|
26 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 1,
|
4 |
+
"eos_token_id": 2,
|
5 |
+
"transformers_version": "4.52.4"
|
6 |
+
}
|
learned_lambdas.json
ADDED
@@ -0,0 +1,1759 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"lambdas": [
|
3 |
+
[
|
4 |
+
0.21359698474407196,
|
5 |
+
-0.2164446860551834,
|
6 |
+
0.4349040985107422
|
7 |
+
],
|
8 |
+
[
|
9 |
+
0.18373654782772064,
|
10 |
+
0.07137170433998108,
|
11 |
+
0.06354912370443344
|
12 |
+
],
|
13 |
+
[
|
14 |
+
0.24980150163173676,
|
15 |
+
-0.07857954502105713,
|
16 |
+
-0.3595312833786011
|
17 |
+
],
|
18 |
+
[
|
19 |
+
0.7251716256141663,
|
20 |
+
-0.016075219959020615,
|
21 |
+
0.30653372406959534
|
22 |
+
],
|
23 |
+
[
|
24 |
+
0.551445484161377,
|
25 |
+
-0.21878266334533691,
|
26 |
+
0.46370652318000793
|
27 |
+
],
|
28 |
+
[
|
29 |
+
-0.27936112880706787,
|
30 |
+
0.46840620040893555,
|
31 |
+
-0.1450582891702652
|
32 |
+
],
|
33 |
+
[
|
34 |
+
0.5147512555122375,
|
35 |
+
0.7473368048667908,
|
36 |
+
-0.570711612701416
|
37 |
+
],
|
38 |
+
[
|
39 |
+
0.4900670647621155,
|
40 |
+
0.8384904861450195,
|
41 |
+
0.5350456833839417
|
42 |
+
],
|
43 |
+
[
|
44 |
+
-0.3452461361885071,
|
45 |
+
-0.24068720638751984,
|
46 |
+
1.0286009311676025
|
47 |
+
],
|
48 |
+
[
|
49 |
+
0.7639378309249878,
|
50 |
+
-0.3156850337982178,
|
51 |
+
-0.23452775180339813
|
52 |
+
],
|
53 |
+
[
|
54 |
+
0.11127755045890808,
|
55 |
+
0.03986138477921486,
|
56 |
+
0.46316784620285034
|
57 |
+
],
|
58 |
+
[
|
59 |
+
0.45491963624954224,
|
60 |
+
0.6616725921630859,
|
61 |
+
0.45508068799972534
|
62 |
+
],
|
63 |
+
[
|
64 |
+
-0.2381044328212738,
|
65 |
+
-0.6323292255401611,
|
66 |
+
0.0649583488702774
|
67 |
+
],
|
68 |
+
[
|
69 |
+
-0.4048399031162262,
|
70 |
+
0.620869517326355,
|
71 |
+
0.41412895917892456
|
72 |
+
],
|
73 |
+
[
|
74 |
+
0.19767624139785767,
|
75 |
+
-0.3238150477409363,
|
76 |
+
-0.044296279549598694
|
77 |
+
],
|
78 |
+
[
|
79 |
+
-0.21615006029605865,
|
80 |
+
0.16054067015647888,
|
81 |
+
0.03723854944109917
|
82 |
+
],
|
83 |
+
[
|
84 |
+
0.6151573657989502,
|
85 |
+
0.5277937650680542,
|
86 |
+
0.7325867414474487
|
87 |
+
],
|
88 |
+
[
|
89 |
+
0.256672203540802,
|
90 |
+
0.9549311995506287,
|
91 |
+
0.33641910552978516
|
92 |
+
],
|
93 |
+
[
|
94 |
+
-0.07662014663219452,
|
95 |
+
-0.22492413222789764,
|
96 |
+
0.7069713473320007
|
97 |
+
],
|
98 |
+
[
|
99 |
+
0.40927863121032715,
|
100 |
+
0.005207874812185764,
|
101 |
+
0.1688462346792221
|
102 |
+
],
|
103 |
+
[
|
104 |
+
0.5177145004272461,
|
105 |
+
0.011327486485242844,
|
106 |
+
0.12756213545799255
|
107 |
+
],
|
108 |
+
[
|
109 |
+
-0.3924155533313751,
|
110 |
+
0.2530467212200165,
|
111 |
+
-0.09741459041833878
|
112 |
+
],
|
113 |
+
[
|
114 |
+
-0.3027581572532654,
|
115 |
+
0.3145124912261963,
|
116 |
+
0.4244309067726135
|
117 |
+
],
|
118 |
+
[
|
119 |
+
0.7682188153266907,
|
120 |
+
0.36635830998420715,
|
121 |
+
0.666470468044281
|
122 |
+
],
|
123 |
+
[
|
124 |
+
-0.09421560168266296,
|
125 |
+
0.5080885887145996,
|
126 |
+
-0.06889066100120544
|
127 |
+
],
|
128 |
+
[
|
129 |
+
0.557958722114563,
|
130 |
+
0.4884584844112396,
|
131 |
+
0.6631458401679993
|
132 |
+
],
|
133 |
+
[
|
134 |
+
0.017188655212521553,
|
135 |
+
0.5574567914009094,
|
136 |
+
-0.006177110597491264
|
137 |
+
],
|
138 |
+
[
|
139 |
+
0.8893246054649353,
|
140 |
+
1.0660768747329712,
|
141 |
+
0.5864647030830383
|
142 |
+
],
|
143 |
+
[
|
144 |
+
0.11193809658288956,
|
145 |
+
0.41452017426490784,
|
146 |
+
0.530289888381958
|
147 |
+
],
|
148 |
+
[
|
149 |
+
0.007093043997883797,
|
150 |
+
0.5380092263221741,
|
151 |
+
0.5444429516792297
|
152 |
+
],
|
153 |
+
[
|
154 |
+
0.8307387828826904,
|
155 |
+
0.12119932472705841,
|
156 |
+
0.5001442432403564
|
157 |
+
],
|
158 |
+
[
|
159 |
+
-0.2514621615409851,
|
160 |
+
0.4150887131690979,
|
161 |
+
0.5546015501022339
|
162 |
+
],
|
163 |
+
[
|
164 |
+
0.2250683754682541,
|
165 |
+
-0.3092842400074005,
|
166 |
+
0.4038548469543457
|
167 |
+
],
|
168 |
+
[
|
169 |
+
-0.15786027908325195,
|
170 |
+
-0.576519250869751,
|
171 |
+
-0.18042252957820892
|
172 |
+
],
|
173 |
+
[
|
174 |
+
-0.030206184834241867,
|
175 |
+
0.9736607670783997,
|
176 |
+
-0.0683356449007988
|
177 |
+
],
|
178 |
+
[
|
179 |
+
-0.20779341459274292,
|
180 |
+
0.5420925617218018,
|
181 |
+
0.47638383507728577
|
182 |
+
],
|
183 |
+
[
|
184 |
+
0.32098907232284546,
|
185 |
+
0.7035049796104431,
|
186 |
+
1.0407670736312866
|
187 |
+
],
|
188 |
+
[
|
189 |
+
0.24926768243312836,
|
190 |
+
-0.03809899836778641,
|
191 |
+
0.3589838445186615
|
192 |
+
],
|
193 |
+
[
|
194 |
+
0.2516117990016937,
|
195 |
+
0.0950184091925621,
|
196 |
+
0.12089581787586212
|
197 |
+
],
|
198 |
+
[
|
199 |
+
0.16146092116832733,
|
200 |
+
0.5226585268974304,
|
201 |
+
-0.16740091145038605
|
202 |
+
],
|
203 |
+
[
|
204 |
+
0.14300084114074707,
|
205 |
+
0.06114785745739937,
|
206 |
+
0.2410912662744522
|
207 |
+
],
|
208 |
+
[
|
209 |
+
0.30880165100097656,
|
210 |
+
0.7231574058532715,
|
211 |
+
0.6492418646812439
|
212 |
+
],
|
213 |
+
[
|
214 |
+
-0.39174404740333557,
|
215 |
+
0.391517698764801,
|
216 |
+
0.1175754964351654
|
217 |
+
],
|
218 |
+
[
|
219 |
+
1.1349018812179565,
|
220 |
+
0.8942872285842896,
|
221 |
+
0.8756872415542603
|
222 |
+
],
|
223 |
+
[
|
224 |
+
0.16054439544677734,
|
225 |
+
0.4537104666233063,
|
226 |
+
0.17235562205314636
|
227 |
+
],
|
228 |
+
[
|
229 |
+
0.9249570965766907,
|
230 |
+
1.2538586854934692,
|
231 |
+
0.14110293984413147
|
232 |
+
],
|
233 |
+
[
|
234 |
+
0.10978423058986664,
|
235 |
+
0.07031691074371338,
|
236 |
+
0.0028920783661305904
|
237 |
+
],
|
238 |
+
[
|
239 |
+
-0.14549046754837036,
|
240 |
+
-0.1875956952571869,
|
241 |
+
-0.057581380009651184
|
242 |
+
],
|
243 |
+
[
|
244 |
+
-0.13747359812259674,
|
245 |
+
0.45354631543159485,
|
246 |
+
0.69197016954422
|
247 |
+
],
|
248 |
+
[
|
249 |
+
0.7033130526542664,
|
250 |
+
0.2677704691886902,
|
251 |
+
0.6307313442230225
|
252 |
+
],
|
253 |
+
[
|
254 |
+
-0.026439161971211433,
|
255 |
+
0.5624685883522034,
|
256 |
+
0.5508381128311157
|
257 |
+
],
|
258 |
+
[
|
259 |
+
0.5997487902641296,
|
260 |
+
0.6207756996154785,
|
261 |
+
0.3884807229042053
|
262 |
+
],
|
263 |
+
[
|
264 |
+
0.9113128185272217,
|
265 |
+
0.5756756663322449,
|
266 |
+
0.5259497761726379
|
267 |
+
],
|
268 |
+
[
|
269 |
+
-0.0764508843421936,
|
270 |
+
0.48238518834114075,
|
271 |
+
0.533565878868103
|
272 |
+
],
|
273 |
+
[
|
274 |
+
0.3155931532382965,
|
275 |
+
0.44924691319465637,
|
276 |
+
-0.0018975046696141362
|
277 |
+
],
|
278 |
+
[
|
279 |
+
0.06382375210523605,
|
280 |
+
-0.14388808608055115,
|
281 |
+
-0.23163174092769623
|
282 |
+
],
|
283 |
+
[
|
284 |
+
0.5853031277656555,
|
285 |
+
0.32832714915275574,
|
286 |
+
0.054335832595825195
|
287 |
+
],
|
288 |
+
[
|
289 |
+
-0.25589367747306824,
|
290 |
+
0.4742071330547333,
|
291 |
+
0.21511781215667725
|
292 |
+
],
|
293 |
+
[
|
294 |
+
-0.752947986125946,
|
295 |
+
0.7910690903663635,
|
296 |
+
0.47580817341804504
|
297 |
+
],
|
298 |
+
[
|
299 |
+
0.19347093999385834,
|
300 |
+
-0.45822176337242126,
|
301 |
+
0.3438996970653534
|
302 |
+
],
|
303 |
+
[
|
304 |
+
0.4309948980808258,
|
305 |
+
0.3567085266113281,
|
306 |
+
0.6842737793922424
|
307 |
+
],
|
308 |
+
[
|
309 |
+
0.7723644971847534,
|
310 |
+
0.26576516032218933,
|
311 |
+
0.8875527381896973
|
312 |
+
],
|
313 |
+
[
|
314 |
+
0.1905166208744049,
|
315 |
+
-0.3240078389644623,
|
316 |
+
0.6336449980735779
|
317 |
+
],
|
318 |
+
[
|
319 |
+
0.38887909054756165,
|
320 |
+
0.7544465065002441,
|
321 |
+
0.2487660050392151
|
322 |
+
],
|
323 |
+
[
|
324 |
+
-0.08940726518630981,
|
325 |
+
-0.007276141084730625,
|
326 |
+
0.06268707662820816
|
327 |
+
],
|
328 |
+
[
|
329 |
+
0.7145946621894836,
|
330 |
+
0.47930267453193665,
|
331 |
+
0.10245968401432037
|
332 |
+
],
|
333 |
+
[
|
334 |
+
-0.36302587389945984,
|
335 |
+
-0.3691670596599579,
|
336 |
+
0.03408021479845047
|
337 |
+
],
|
338 |
+
[
|
339 |
+
0.3267446756362915,
|
340 |
+
0.13149414956569672,
|
341 |
+
0.49767404794692993
|
342 |
+
],
|
343 |
+
[
|
344 |
+
0.6062907576560974,
|
345 |
+
0.491150826215744,
|
346 |
+
0.7409757971763611
|
347 |
+
],
|
348 |
+
[
|
349 |
+
0.45287612080574036,
|
350 |
+
-0.47713926434516907,
|
351 |
+
0.4198429584503174
|
352 |
+
],
|
353 |
+
[
|
354 |
+
0.2924189567565918,
|
355 |
+
0.45667028427124023,
|
356 |
+
0.5962654948234558
|
357 |
+
],
|
358 |
+
[
|
359 |
+
0.04065968468785286,
|
360 |
+
0.2760885953903198,
|
361 |
+
0.5384055376052856
|
362 |
+
],
|
363 |
+
[
|
364 |
+
0.9806042909622192,
|
365 |
+
-0.018676593899726868,
|
366 |
+
-0.39374840259552
|
367 |
+
],
|
368 |
+
[
|
369 |
+
0.49048981070518494,
|
370 |
+
-0.5551500916481018,
|
371 |
+
0.4733657240867615
|
372 |
+
],
|
373 |
+
[
|
374 |
+
0.7472072243690491,
|
375 |
+
0.5198571681976318,
|
376 |
+
0.48487377166748047
|
377 |
+
],
|
378 |
+
[
|
379 |
+
-0.14948683977127075,
|
380 |
+
0.17321796715259552,
|
381 |
+
-0.08548928052186966
|
382 |
+
],
|
383 |
+
[
|
384 |
+
0.8185954093933105,
|
385 |
+
0.5525864362716675,
|
386 |
+
0.44340991973876953
|
387 |
+
],
|
388 |
+
[
|
389 |
+
0.9454837441444397,
|
390 |
+
-0.00021949218353256583,
|
391 |
+
0.53125
|
392 |
+
],
|
393 |
+
[
|
394 |
+
0.6961415410041809,
|
395 |
+
0.35851001739501953,
|
396 |
+
0.18167944252490997
|
397 |
+
],
|
398 |
+
[
|
399 |
+
1.2112905979156494,
|
400 |
+
0.48523274064064026,
|
401 |
+
-0.44952115416526794
|
402 |
+
],
|
403 |
+
[
|
404 |
+
0.6371596455574036,
|
405 |
+
0.2760885953903198,
|
406 |
+
-0.07913361489772797
|
407 |
+
],
|
408 |
+
[
|
409 |
+
0.38398104906082153,
|
410 |
+
0.5510115027427673,
|
411 |
+
0.8780030012130737
|
412 |
+
],
|
413 |
+
[
|
414 |
+
-0.4051967263221741,
|
415 |
+
-0.6793044805526733,
|
416 |
+
-0.4881371259689331
|
417 |
+
],
|
418 |
+
[
|
419 |
+
-0.5237668752670288,
|
420 |
+
-0.17254097759723663,
|
421 |
+
-0.2170979380607605
|
422 |
+
],
|
423 |
+
[
|
424 |
+
0.4532039761543274,
|
425 |
+
-0.8364969491958618,
|
426 |
+
0.9962347745895386
|
427 |
+
],
|
428 |
+
[
|
429 |
+
-0.41449347138404846,
|
430 |
+
-0.5075752139091492,
|
431 |
+
0.704350471496582
|
432 |
+
],
|
433 |
+
[
|
434 |
+
1.064165472984314,
|
435 |
+
0.19063466787338257,
|
436 |
+
0.5938963890075684
|
437 |
+
],
|
438 |
+
[
|
439 |
+
0.4706924259662628,
|
440 |
+
0.9520235657691956,
|
441 |
+
0.1698094606399536
|
442 |
+
],
|
443 |
+
[
|
444 |
+
0.5618039965629578,
|
445 |
+
0.05764932185411453,
|
446 |
+
0.2127338945865631
|
447 |
+
],
|
448 |
+
[
|
449 |
+
-0.06680785864591599,
|
450 |
+
-0.21486449241638184,
|
451 |
+
-0.02948073484003544
|
452 |
+
],
|
453 |
+
[
|
454 |
+
0.8544485569000244,
|
455 |
+
0.40998706221580505,
|
456 |
+
0.3041371703147888
|
457 |
+
],
|
458 |
+
[
|
459 |
+
0.2568047046661377,
|
460 |
+
-0.046769797801971436,
|
461 |
+
-0.5896286368370056
|
462 |
+
],
|
463 |
+
[
|
464 |
+
0.7117580771446228,
|
465 |
+
-0.6780204176902771,
|
466 |
+
-0.05612644925713539
|
467 |
+
],
|
468 |
+
[
|
469 |
+
0.5117921233177185,
|
470 |
+
0.594724178314209,
|
471 |
+
0.015837913379073143
|
472 |
+
],
|
473 |
+
[
|
474 |
+
0.11640041321516037,
|
475 |
+
0.3007548153400421,
|
476 |
+
-0.36630135774612427
|
477 |
+
],
|
478 |
+
[
|
479 |
+
-0.2639734148979187,
|
480 |
+
-0.22972415387630463,
|
481 |
+
0.31596460938453674
|
482 |
+
],
|
483 |
+
[
|
484 |
+
0.052716951817274094,
|
485 |
+
-0.5934274196624756,
|
486 |
+
0.6101188659667969
|
487 |
+
],
|
488 |
+
[
|
489 |
+
0.10834594815969467,
|
490 |
+
0.7756256461143494,
|
491 |
+
0.15687476098537445
|
492 |
+
],
|
493 |
+
[
|
494 |
+
-0.1295362114906311,
|
495 |
+
0.2760885953903198,
|
496 |
+
0.43015411496162415
|
497 |
+
],
|
498 |
+
[
|
499 |
+
0.12494787573814392,
|
500 |
+
0.48390090465545654,
|
501 |
+
-0.1764613389968872
|
502 |
+
],
|
503 |
+
[
|
504 |
+
-0.1907060146331787,
|
505 |
+
-0.2893322706222534,
|
506 |
+
-0.3830707371234894
|
507 |
+
],
|
508 |
+
[
|
509 |
+
0.005892400164157152,
|
510 |
+
-0.3453017771244049,
|
511 |
+
-0.5945209860801697
|
512 |
+
],
|
513 |
+
[
|
514 |
+
0.28648245334625244,
|
515 |
+
0.6291634440422058,
|
516 |
+
-0.03156203031539917
|
517 |
+
],
|
518 |
+
[
|
519 |
+
-0.3965371549129486,
|
520 |
+
0.3238464593887329,
|
521 |
+
0.6217119693756104
|
522 |
+
],
|
523 |
+
[
|
524 |
+
0.28561535477638245,
|
525 |
+
0.4140786826610565,
|
526 |
+
0.143829345703125
|
527 |
+
],
|
528 |
+
[
|
529 |
+
0.37624838948249817,
|
530 |
+
0.4192754328250885,
|
531 |
+
0.04449336603283882
|
532 |
+
],
|
533 |
+
[
|
534 |
+
0.9060468077659607,
|
535 |
+
0.8771811723709106,
|
536 |
+
0.2883681058883667
|
537 |
+
],
|
538 |
+
[
|
539 |
+
-0.16548031568527222,
|
540 |
+
-0.306856244802475,
|
541 |
+
0.5969915986061096
|
542 |
+
],
|
543 |
+
[
|
544 |
+
0.13628481328487396,
|
545 |
+
-0.373859703540802,
|
546 |
+
0.9392935633659363
|
547 |
+
],
|
548 |
+
[
|
549 |
+
-0.23142965137958527,
|
550 |
+
-0.5544381737709045,
|
551 |
+
-0.24528397619724274
|
552 |
+
],
|
553 |
+
[
|
554 |
+
0.7414894104003906,
|
555 |
+
-0.17250315845012665,
|
556 |
+
-0.0031167385168373585
|
557 |
+
],
|
558 |
+
[
|
559 |
+
0.37525615096092224,
|
560 |
+
1.2675185203552246,
|
561 |
+
1.1016807556152344
|
562 |
+
],
|
563 |
+
[
|
564 |
+
-0.729317307472229,
|
565 |
+
0.5185400247573853,
|
566 |
+
0.5889196395874023
|
567 |
+
],
|
568 |
+
[
|
569 |
+
0.006818769033998251,
|
570 |
+
0.5573992729187012,
|
571 |
+
0.08504647016525269
|
572 |
+
],
|
573 |
+
[
|
574 |
+
1.1147239208221436,
|
575 |
+
0.5571479201316833,
|
576 |
+
-0.035356659442186356
|
577 |
+
],
|
578 |
+
[
|
579 |
+
0.7418893575668335,
|
580 |
+
0.2531592547893524,
|
581 |
+
0.562224268913269
|
582 |
+
],
|
583 |
+
[
|
584 |
+
0.8112162351608276,
|
585 |
+
0.3641621768474579,
|
586 |
+
0.36308473348617554
|
587 |
+
],
|
588 |
+
[
|
589 |
+
0.048483435064554214,
|
590 |
+
0.6834896802902222,
|
591 |
+
-0.6634699106216431
|
592 |
+
],
|
593 |
+
[
|
594 |
+
0.22691766917705536,
|
595 |
+
-0.4956328272819519,
|
596 |
+
-1.0982667207717896
|
597 |
+
],
|
598 |
+
[
|
599 |
+
0.6410916447639465,
|
600 |
+
-0.06540890783071518,
|
601 |
+
0.17114508152008057
|
602 |
+
],
|
603 |
+
[
|
604 |
+
1.4179061651229858,
|
605 |
+
-0.4744257926940918,
|
606 |
+
0.6435526013374329
|
607 |
+
],
|
608 |
+
[
|
609 |
+
-0.694256603717804,
|
610 |
+
0.5681807398796082,
|
611 |
+
-0.09950689226388931
|
612 |
+
],
|
613 |
+
[
|
614 |
+
0.5402541756629944,
|
615 |
+
0.278556764125824,
|
616 |
+
0.43470650911331177
|
617 |
+
],
|
618 |
+
[
|
619 |
+
-0.1546173393726349,
|
620 |
+
1.0311001539230347,
|
621 |
+
0.43332475423812866
|
622 |
+
],
|
623 |
+
[
|
624 |
+
0.8175909519195557,
|
625 |
+
1.0657856464385986,
|
626 |
+
0.5252527594566345
|
627 |
+
],
|
628 |
+
[
|
629 |
+
0.6673902273178101,
|
630 |
+
0.2760885953903198,
|
631 |
+
-0.14615967869758606
|
632 |
+
],
|
633 |
+
[
|
634 |
+
0.6274813413619995,
|
635 |
+
-0.03086041286587715,
|
636 |
+
0.3763096332550049
|
637 |
+
],
|
638 |
+
[
|
639 |
+
0.8328699469566345,
|
640 |
+
-0.37110206484794617,
|
641 |
+
0.4917232096195221
|
642 |
+
],
|
643 |
+
[
|
644 |
+
0.7410853505134583,
|
645 |
+
1.0419585704803467,
|
646 |
+
1.1761726140975952
|
647 |
+
],
|
648 |
+
[
|
649 |
+
0.34083282947540283,
|
650 |
+
0.9037180542945862,
|
651 |
+
0.6210451126098633
|
652 |
+
],
|
653 |
+
[
|
654 |
+
-1.0043085813522339,
|
655 |
+
0.4448750615119934,
|
656 |
+
-0.23202694952487946
|
657 |
+
],
|
658 |
+
[
|
659 |
+
0.5952733159065247,
|
660 |
+
0.3448507785797119,
|
661 |
+
0.68792724609375
|
662 |
+
],
|
663 |
+
[
|
664 |
+
-0.14194385707378387,
|
665 |
+
0.1958417296409607,
|
666 |
+
0.07494542747735977
|
667 |
+
],
|
668 |
+
[
|
669 |
+
-0.4235289692878723,
|
670 |
+
1.8409199714660645,
|
671 |
+
-0.5328864455223083
|
672 |
+
],
|
673 |
+
[
|
674 |
+
0.6062782406806946,
|
675 |
+
0.3724144697189331,
|
676 |
+
-0.6195069551467896
|
677 |
+
],
|
678 |
+
[
|
679 |
+
0.9738200902938843,
|
680 |
+
-0.19491901993751526,
|
681 |
+
-0.6321206092834473
|
682 |
+
],
|
683 |
+
[
|
684 |
+
0.14497826993465424,
|
685 |
+
0.8698608875274658,
|
686 |
+
-0.19751141965389252
|
687 |
+
],
|
688 |
+
[
|
689 |
+
0.35451802611351013,
|
690 |
+
-0.09179341793060303,
|
691 |
+
-0.2862659692764282
|
692 |
+
],
|
693 |
+
[
|
694 |
+
0.20770026743412018,
|
695 |
+
0.4990694522857666,
|
696 |
+
0.597663402557373
|
697 |
+
],
|
698 |
+
[
|
699 |
+
0.07840877026319504,
|
700 |
+
0.7478991150856018,
|
701 |
+
-0.2143201231956482
|
702 |
+
],
|
703 |
+
[
|
704 |
+
-0.32848820090293884,
|
705 |
+
0.2380635142326355,
|
706 |
+
0.7736063003540039
|
707 |
+
],
|
708 |
+
[
|
709 |
+
-0.24926325678825378,
|
710 |
+
-0.3298020362854004,
|
711 |
+
-0.6317358613014221
|
712 |
+
],
|
713 |
+
[
|
714 |
+
-0.13794203102588654,
|
715 |
+
0.3890848755836487,
|
716 |
+
-0.09316663444042206
|
717 |
+
],
|
718 |
+
[
|
719 |
+
0.05574212968349457,
|
720 |
+
0.2760885953903198,
|
721 |
+
0.543753445148468
|
722 |
+
],
|
723 |
+
[
|
724 |
+
-0.1514638066291809,
|
725 |
+
0.23378300666809082,
|
726 |
+
0.6495851874351501
|
727 |
+
],
|
728 |
+
[
|
729 |
+
0.7095686793327332,
|
730 |
+
0.12177275121212006,
|
731 |
+
-0.5433270931243896
|
732 |
+
],
|
733 |
+
[
|
734 |
+
0.32450565695762634,
|
735 |
+
0.44656068086624146,
|
736 |
+
0.43729379773139954
|
737 |
+
],
|
738 |
+
[
|
739 |
+
-0.59732985496521,
|
740 |
+
-0.13850414752960205,
|
741 |
+
-0.2800966203212738
|
742 |
+
],
|
743 |
+
[
|
744 |
+
-0.14024443924427032,
|
745 |
+
1.3604012727737427,
|
746 |
+
-0.454708456993103
|
747 |
+
],
|
748 |
+
[
|
749 |
+
0.3004085123538971,
|
750 |
+
-0.07340076565742493,
|
751 |
+
0.0004387743247207254
|
752 |
+
],
|
753 |
+
[
|
754 |
+
0.15913432836532593,
|
755 |
+
0.6195625066757202,
|
756 |
+
-0.30247849225997925
|
757 |
+
],
|
758 |
+
[
|
759 |
+
0.18473072350025177,
|
760 |
+
0.07634653896093369,
|
761 |
+
0.5509761571884155
|
762 |
+
],
|
763 |
+
[
|
764 |
+
0.4589727818965912,
|
765 |
+
0.2760885953903198,
|
766 |
+
0.29281359910964966
|
767 |
+
],
|
768 |
+
[
|
769 |
+
-0.20752620697021484,
|
770 |
+
-0.20893408358097076,
|
771 |
+
0.883582592010498
|
772 |
+
],
|
773 |
+
[
|
774 |
+
0.3957076370716095,
|
775 |
+
0.4437480568885803,
|
776 |
+
1.0711257457733154
|
777 |
+
],
|
778 |
+
[
|
779 |
+
1.0205185413360596,
|
780 |
+
0.8279246091842651,
|
781 |
+
1.1254446506500244
|
782 |
+
],
|
783 |
+
[
|
784 |
+
0.488484263420105,
|
785 |
+
-0.6802319288253784,
|
786 |
+
0.064021535217762
|
787 |
+
],
|
788 |
+
[
|
789 |
+
-0.5841817259788513,
|
790 |
+
0.003159634070470929,
|
791 |
+
0.3550851345062256
|
792 |
+
],
|
793 |
+
[
|
794 |
+
-0.17998957633972168,
|
795 |
+
0.2949807941913605,
|
796 |
+
0.14250275492668152
|
797 |
+
],
|
798 |
+
[
|
799 |
+
-0.21448534727096558,
|
800 |
+
0.40725982189178467,
|
801 |
+
0.4643062353134155
|
802 |
+
],
|
803 |
+
[
|
804 |
+
0.5733755826950073,
|
805 |
+
0.7918974161148071,
|
806 |
+
0.8998477458953857
|
807 |
+
],
|
808 |
+
[
|
809 |
+
0.8696557283401489,
|
810 |
+
0.2760885953903198,
|
811 |
+
-0.3088013529777527
|
812 |
+
],
|
813 |
+
[
|
814 |
+
0.7659013271331787,
|
815 |
+
0.45173180103302,
|
816 |
+
0.08363968878984451
|
817 |
+
],
|
818 |
+
[
|
819 |
+
0.046301186084747314,
|
820 |
+
0.32174208760261536,
|
821 |
+
-0.02479768544435501
|
822 |
+
],
|
823 |
+
[
|
824 |
+
0.8852702379226685,
|
825 |
+
0.5638230443000793,
|
826 |
+
-0.30163514614105225
|
827 |
+
],
|
828 |
+
[
|
829 |
+
0.14396211504936218,
|
830 |
+
-0.5229862928390503,
|
831 |
+
0.7057915329933167
|
832 |
+
],
|
833 |
+
[
|
834 |
+
0.25057339668273926,
|
835 |
+
-0.48908960819244385,
|
836 |
+
1.2390971183776855
|
837 |
+
],
|
838 |
+
[
|
839 |
+
0.9305946826934814,
|
840 |
+
-0.06769276410341263,
|
841 |
+
0.32944589853286743
|
842 |
+
],
|
843 |
+
[
|
844 |
+
0.49603885412216187,
|
845 |
+
-0.30121496319770813,
|
846 |
+
0.11673831939697266
|
847 |
+
],
|
848 |
+
[
|
849 |
+
0.18805721402168274,
|
850 |
+
-0.6352501511573792,
|
851 |
+
1.029891014099121
|
852 |
+
],
|
853 |
+
[
|
854 |
+
0.4380909502506256,
|
855 |
+
0.2760885953903198,
|
856 |
+
-0.5105477571487427
|
857 |
+
],
|
858 |
+
[
|
859 |
+
0.7968423962593079,
|
860 |
+
0.6381044983863831,
|
861 |
+
0.9040250182151794
|
862 |
+
],
|
863 |
+
[
|
864 |
+
0.10855545848608017,
|
865 |
+
-0.07532769441604614,
|
866 |
+
0.5506806969642639
|
867 |
+
],
|
868 |
+
[
|
869 |
+
0.8776094317436218,
|
870 |
+
0.5949564576148987,
|
871 |
+
0.5921839475631714
|
872 |
+
],
|
873 |
+
[
|
874 |
+
0.8343055844306946,
|
875 |
+
-0.19943562150001526,
|
876 |
+
-0.45461326837539673
|
877 |
+
],
|
878 |
+
[
|
879 |
+
0.7808497548103333,
|
880 |
+
0.8757853507995605,
|
881 |
+
-0.8390427827835083
|
882 |
+
],
|
883 |
+
[
|
884 |
+
-0.13507428765296936,
|
885 |
+
-0.09689758718013763,
|
886 |
+
-0.30007806420326233
|
887 |
+
],
|
888 |
+
[
|
889 |
+
0.3614951968193054,
|
890 |
+
-0.09229496866464615,
|
891 |
+
-0.3163415491580963
|
892 |
+
],
|
893 |
+
[
|
894 |
+
0.4981468617916107,
|
895 |
+
-0.17805758118629456,
|
896 |
+
-0.4263595938682556
|
897 |
+
],
|
898 |
+
[
|
899 |
+
0.6340190768241882,
|
900 |
+
0.2760885953903198,
|
901 |
+
0.683612585067749
|
902 |
+
],
|
903 |
+
[
|
904 |
+
0.15833206474781036,
|
905 |
+
1.4134565591812134,
|
906 |
+
0.9688223004341125
|
907 |
+
],
|
908 |
+
[
|
909 |
+
-0.1588582545518875,
|
910 |
+
-0.22736139595508575,
|
911 |
+
0.3688794672489166
|
912 |
+
],
|
913 |
+
[
|
914 |
+
0.422553151845932,
|
915 |
+
0.07657118141651154,
|
916 |
+
0.1865272969007492
|
917 |
+
],
|
918 |
+
[
|
919 |
+
-1.1082457304000854,
|
920 |
+
-1.1055575609207153,
|
921 |
+
-0.31395450234413147
|
922 |
+
],
|
923 |
+
[
|
924 |
+
0.7734058499336243,
|
925 |
+
0.6510885953903198,
|
926 |
+
0.1986074447631836
|
927 |
+
],
|
928 |
+
[
|
929 |
+
0.30664172768592834,
|
930 |
+
0.9047883749008179,
|
931 |
+
1.6732347011566162
|
932 |
+
],
|
933 |
+
[
|
934 |
+
0.47173500061035156,
|
935 |
+
-0.404296338558197,
|
936 |
+
-0.05269849672913551
|
937 |
+
],
|
938 |
+
[
|
939 |
+
0.2254696786403656,
|
940 |
+
1.0311392545700073,
|
941 |
+
0.7544334530830383
|
942 |
+
],
|
943 |
+
[
|
944 |
+
0.28964507579803467,
|
945 |
+
0.2760885953903198,
|
946 |
+
0.004315612372010946
|
947 |
+
],
|
948 |
+
[
|
949 |
+
-0.09603432565927505,
|
950 |
+
-0.1975087821483612,
|
951 |
+
0.2750057280063629
|
952 |
+
],
|
953 |
+
[
|
954 |
+
0.6313948631286621,
|
955 |
+
-0.45082297921180725,
|
956 |
+
-1.0247089862823486
|
957 |
+
],
|
958 |
+
[
|
959 |
+
0.6436291933059692,
|
960 |
+
0.7655327320098877,
|
961 |
+
1.5612726211547852
|
962 |
+
],
|
963 |
+
[
|
964 |
+
1.6242343187332153,
|
965 |
+
0.5669596195220947,
|
966 |
+
1.3908542394638062
|
967 |
+
],
|
968 |
+
[
|
969 |
+
1.6540242433547974,
|
970 |
+
0.017672497779130936,
|
971 |
+
-0.09003063291311264
|
972 |
+
],
|
973 |
+
[
|
974 |
+
0.03177133947610855,
|
975 |
+
-0.0582880936563015,
|
976 |
+
0.30388104915618896
|
977 |
+
],
|
978 |
+
[
|
979 |
+
0.4340118169784546,
|
980 |
+
0.22408443689346313,
|
981 |
+
0.42536166310310364
|
982 |
+
],
|
983 |
+
[
|
984 |
+
-0.2615712881088257,
|
985 |
+
0.8843759894371033,
|
986 |
+
0.6420990824699402
|
987 |
+
],
|
988 |
+
[
|
989 |
+
-0.4267977476119995,
|
990 |
+
0.2760885953903198,
|
991 |
+
1.2808101177215576
|
992 |
+
],
|
993 |
+
[
|
994 |
+
0.25941160321235657,
|
995 |
+
-0.28659558296203613,
|
996 |
+
0.12422573566436768
|
997 |
+
],
|
998 |
+
[
|
999 |
+
-0.017921442165970802,
|
1000 |
+
0.5052063465118408,
|
1001 |
+
0.8327353596687317
|
1002 |
+
],
|
1003 |
+
[
|
1004 |
+
1.43748140335083,
|
1005 |
+
1.1108524799346924,
|
1006 |
+
1.1908003091812134
|
1007 |
+
],
|
1008 |
+
[
|
1009 |
+
-0.21034519374370575,
|
1010 |
+
-1.1540242433547974,
|
1011 |
+
-0.3552939295768738
|
1012 |
+
],
|
1013 |
+
[
|
1014 |
+
1.6364960670471191,
|
1015 |
+
-1.4828704595565796,
|
1016 |
+
0.5128681659698486
|
1017 |
+
],
|
1018 |
+
[
|
1019 |
+
1.1857939958572388,
|
1020 |
+
-0.2047322392463684,
|
1021 |
+
-0.11171846836805344
|
1022 |
+
],
|
1023 |
+
[
|
1024 |
+
0.532031774520874,
|
1025 |
+
0.47489693760871887,
|
1026 |
+
-0.6211866736412048
|
1027 |
+
],
|
1028 |
+
[
|
1029 |
+
0.6138414144515991,
|
1030 |
+
-0.12508337199687958,
|
1031 |
+
0.8251534104347229
|
1032 |
+
],
|
1033 |
+
[
|
1034 |
+
1.0432484149932861,
|
1035 |
+
-0.269777774810791,
|
1036 |
+
-0.841098427772522
|
1037 |
+
],
|
1038 |
+
[
|
1039 |
+
0.6324758529663086,
|
1040 |
+
-0.6827632188796997,
|
1041 |
+
0.6175608038902283
|
1042 |
+
],
|
1043 |
+
[
|
1044 |
+
0.837646484375,
|
1045 |
+
-0.4731529653072357,
|
1046 |
+
0.4919143319129944
|
1047 |
+
],
|
1048 |
+
[
|
1049 |
+
0.7589465379714966,
|
1050 |
+
-0.1913473904132843,
|
1051 |
+
-0.04492336884140968
|
1052 |
+
],
|
1053 |
+
[
|
1054 |
+
1.675577163696289,
|
1055 |
+
0.4276125431060791,
|
1056 |
+
-0.08663908392190933
|
1057 |
+
],
|
1058 |
+
[
|
1059 |
+
1.3731650114059448,
|
1060 |
+
0.31190672516822815,
|
1061 |
+
0.8848100900650024
|
1062 |
+
],
|
1063 |
+
[
|
1064 |
+
0.5252143740653992,
|
1065 |
+
0.33510568737983704,
|
1066 |
+
0.24635496735572815
|
1067 |
+
],
|
1068 |
+
[
|
1069 |
+
-0.7712590098381042,
|
1070 |
+
0.12278282642364502,
|
1071 |
+
-0.23622973263263702
|
1072 |
+
],
|
1073 |
+
[
|
1074 |
+
0.6214934587478638,
|
1075 |
+
-0.7585446834564209,
|
1076 |
+
-0.1378912478685379
|
1077 |
+
],
|
1078 |
+
[
|
1079 |
+
-0.6390859484672546,
|
1080 |
+
0.2760885953903198,
|
1081 |
+
1.2160769701004028
|
1082 |
+
],
|
1083 |
+
[
|
1084 |
+
-0.3560261130332947,
|
1085 |
+
0.827130913734436,
|
1086 |
+
-0.2514520585536957
|
1087 |
+
],
|
1088 |
+
[
|
1089 |
+
0.3730946481227875,
|
1090 |
+
-0.6099748015403748,
|
1091 |
+
1.659493088722229
|
1092 |
+
],
|
1093 |
+
[
|
1094 |
+
1.271887183189392,
|
1095 |
+
-0.7270786166191101,
|
1096 |
+
-0.32162564992904663
|
1097 |
+
],
|
1098 |
+
[
|
1099 |
+
1.1162410974502563,
|
1100 |
+
1.2644023895263672,
|
1101 |
+
-0.30154871940612793
|
1102 |
+
],
|
1103 |
+
[
|
1104 |
+
1.0326673984527588,
|
1105 |
+
-0.26783257722854614,
|
1106 |
+
0.12563005089759827
|
1107 |
+
],
|
1108 |
+
[
|
1109 |
+
0.5051689147949219,
|
1110 |
+
-0.4150272309780121,
|
1111 |
+
-0.30528852343559265
|
1112 |
+
],
|
1113 |
+
[
|
1114 |
+
0.7575520873069763,
|
1115 |
+
0.6434924006462097,
|
1116 |
+
0.8242253065109253
|
1117 |
+
],
|
1118 |
+
[
|
1119 |
+
0.8129346966743469,
|
1120 |
+
0.14466489851474762,
|
1121 |
+
-0.13357996940612793
|
1122 |
+
],
|
1123 |
+
[
|
1124 |
+
1.302604079246521,
|
1125 |
+
0.7171463966369629,
|
1126 |
+
0.4617089033126831
|
1127 |
+
],
|
1128 |
+
[
|
1129 |
+
0.742294192314148,
|
1130 |
+
-0.48782020807266235,
|
1131 |
+
1.065754771232605
|
1132 |
+
],
|
1133 |
+
[
|
1134 |
+
1.012603759765625,
|
1135 |
+
0.07203534245491028,
|
1136 |
+
0.1455085128545761
|
1137 |
+
],
|
1138 |
+
[
|
1139 |
+
0.6692830324172974,
|
1140 |
+
0.5570880770683289,
|
1141 |
+
0.567864716053009
|
1142 |
+
],
|
1143 |
+
[
|
1144 |
+
1.6776037216186523,
|
1145 |
+
-0.6200830340385437,
|
1146 |
+
0.19839094579219818
|
1147 |
+
],
|
1148 |
+
[
|
1149 |
+
0.019362779334187508,
|
1150 |
+
-0.5084202885627747,
|
1151 |
+
-0.3302956819534302
|
1152 |
+
],
|
1153 |
+
[
|
1154 |
+
0.6852827668190002,
|
1155 |
+
-0.2384236603975296,
|
1156 |
+
0.11471696197986603
|
1157 |
+
],
|
1158 |
+
[
|
1159 |
+
0.6395102739334106,
|
1160 |
+
0.6078513860702515,
|
1161 |
+
-0.026797940954566002
|
1162 |
+
],
|
1163 |
+
[
|
1164 |
+
0.10872703790664673,
|
1165 |
+
0.736443281173706,
|
1166 |
+
0.4654095470905304
|
1167 |
+
],
|
1168 |
+
[
|
1169 |
+
1.3255295753479004,
|
1170 |
+
1.2901142835617065,
|
1171 |
+
-0.8800119757652283
|
1172 |
+
],
|
1173 |
+
[
|
1174 |
+
0.10669956356287003,
|
1175 |
+
-0.4109380841255188,
|
1176 |
+
0.5462028980255127
|
1177 |
+
],
|
1178 |
+
[
|
1179 |
+
0.2491900771856308,
|
1180 |
+
-0.3824453353881836,
|
1181 |
+
0.5839877128601074
|
1182 |
+
],
|
1183 |
+
[
|
1184 |
+
0.9604686498641968,
|
1185 |
+
0.3857903480529785,
|
1186 |
+
0.11673714220523834
|
1187 |
+
],
|
1188 |
+
[
|
1189 |
+
0.975523054599762,
|
1190 |
+
-0.9491812586784363,
|
1191 |
+
0.3749466836452484
|
1192 |
+
],
|
1193 |
+
[
|
1194 |
+
0.9288044571876526,
|
1195 |
+
0.008424242027103901,
|
1196 |
+
0.23254306614398956
|
1197 |
+
],
|
1198 |
+
[
|
1199 |
+
-0.959233283996582,
|
1200 |
+
-0.3305145502090454,
|
1201 |
+
0.36644890904426575
|
1202 |
+
],
|
1203 |
+
[
|
1204 |
+
-0.6329862475395203,
|
1205 |
+
-1.0594964027404785,
|
1206 |
+
0.9346150755882263
|
1207 |
+
],
|
1208 |
+
[
|
1209 |
+
0.5258339643478394,
|
1210 |
+
1.431447982788086,
|
1211 |
+
0.1422715038061142
|
1212 |
+
],
|
1213 |
+
[
|
1214 |
+
1.3395456075668335,
|
1215 |
+
0.2760885953903198,
|
1216 |
+
0.42089125514030457
|
1217 |
+
],
|
1218 |
+
[
|
1219 |
+
0.8835410475730896,
|
1220 |
+
-0.1526731550693512,
|
1221 |
+
-0.3783515989780426
|
1222 |
+
],
|
1223 |
+
[
|
1224 |
+
0.06484033167362213,
|
1225 |
+
-0.5363202691078186,
|
1226 |
+
-0.8604055047035217
|
1227 |
+
],
|
1228 |
+
[
|
1229 |
+
0.04306585341691971,
|
1230 |
+
0.9516770839691162,
|
1231 |
+
0.5557815432548523
|
1232 |
+
],
|
1233 |
+
[
|
1234 |
+
1.327269196510315,
|
1235 |
+
-0.26236361265182495,
|
1236 |
+
0.31885039806365967
|
1237 |
+
],
|
1238 |
+
[
|
1239 |
+
0.5059521198272705,
|
1240 |
+
-1.0002529621124268,
|
1241 |
+
-0.5267103314399719
|
1242 |
+
],
|
1243 |
+
[
|
1244 |
+
0.029395291581749916,
|
1245 |
+
0.9818071126937866,
|
1246 |
+
0.14862196147441864
|
1247 |
+
],
|
1248 |
+
[
|
1249 |
+
0.11171174049377441,
|
1250 |
+
-0.13735109567642212,
|
1251 |
+
-0.0008401983650401235
|
1252 |
+
],
|
1253 |
+
[
|
1254 |
+
1.2116097211837769,
|
1255 |
+
0.8473241329193115,
|
1256 |
+
0.88216632604599
|
1257 |
+
],
|
1258 |
+
[
|
1259 |
+
-0.6192097663879395,
|
1260 |
+
0.2760885953903198,
|
1261 |
+
0.1587342619895935
|
1262 |
+
],
|
1263 |
+
[
|
1264 |
+
0.6281998753547668,
|
1265 |
+
0.5921935439109802,
|
1266 |
+
0.17157454788684845
|
1267 |
+
],
|
1268 |
+
[
|
1269 |
+
-0.3155535161495209,
|
1270 |
+
-0.5330051779747009,
|
1271 |
+
-0.059077147394418716
|
1272 |
+
],
|
1273 |
+
[
|
1274 |
+
0.20091448724269867,
|
1275 |
+
-0.5068090558052063,
|
1276 |
+
-0.18025846779346466
|
1277 |
+
],
|
1278 |
+
[
|
1279 |
+
2.7466068267822266,
|
1280 |
+
-0.8748731017112732,
|
1281 |
+
-0.04711220785975456
|
1282 |
+
],
|
1283 |
+
[
|
1284 |
+
1.447810411453247,
|
1285 |
+
-0.27255988121032715,
|
1286 |
+
-0.2962985336780548
|
1287 |
+
],
|
1288 |
+
[
|
1289 |
+
1.60551118850708,
|
1290 |
+
-0.11915700882673264,
|
1291 |
+
-0.5255311131477356
|
1292 |
+
],
|
1293 |
+
[
|
1294 |
+
-0.887458324432373,
|
1295 |
+
0.8258630633354187,
|
1296 |
+
0.30738890171051025
|
1297 |
+
],
|
1298 |
+
[
|
1299 |
+
2.456341028213501,
|
1300 |
+
1.016897439956665,
|
1301 |
+
0.7945164442062378
|
1302 |
+
],
|
1303 |
+
[
|
1304 |
+
-0.2242172211408615,
|
1305 |
+
0.8882625102996826,
|
1306 |
+
1.1776946783065796
|
1307 |
+
],
|
1308 |
+
[
|
1309 |
+
-0.39268550276756287,
|
1310 |
+
-0.4738922119140625,
|
1311 |
+
1.6032382249832153
|
1312 |
+
],
|
1313 |
+
[
|
1314 |
+
1.8086175918579102,
|
1315 |
+
-1.2800241708755493,
|
1316 |
+
-0.9058151245117188
|
1317 |
+
],
|
1318 |
+
[
|
1319 |
+
0.2887733578681946,
|
1320 |
+
-0.7111950516700745,
|
1321 |
+
0.6073051691055298
|
1322 |
+
],
|
1323 |
+
[
|
1324 |
+
-1.3280118703842163,
|
1325 |
+
-1.6134986877441406,
|
1326 |
+
1.5988401174545288
|
1327 |
+
],
|
1328 |
+
[
|
1329 |
+
2.2223989963531494,
|
1330 |
+
-1.8312017917633057,
|
1331 |
+
0.9205300211906433
|
1332 |
+
],
|
1333 |
+
[
|
1334 |
+
0.19130605459213257,
|
1335 |
+
-0.6441234946250916,
|
1336 |
+
-0.5636095404624939
|
1337 |
+
],
|
1338 |
+
[
|
1339 |
+
-0.2631304860115051,
|
1340 |
+
0.0504564493894577,
|
1341 |
+
-0.6263415813446045
|
1342 |
+
],
|
1343 |
+
[
|
1344 |
+
2.096590518951416,
|
1345 |
+
-0.8093783259391785,
|
1346 |
+
0.659914493560791
|
1347 |
+
],
|
1348 |
+
[
|
1349 |
+
-0.6602017879486084,
|
1350 |
+
0.2760885953903198,
|
1351 |
+
1.6043192148208618
|
1352 |
+
],
|
1353 |
+
[
|
1354 |
+
-1.4940307140350342,
|
1355 |
+
-1.2088669538497925,
|
1356 |
+
1.6487345695495605
|
1357 |
+
],
|
1358 |
+
[
|
1359 |
+
-0.09679925441741943,
|
1360 |
+
0.4763238728046417,
|
1361 |
+
-0.4205774664878845
|
1362 |
+
],
|
1363 |
+
[
|
1364 |
+
0.7659120559692383,
|
1365 |
+
0.9064326882362366,
|
1366 |
+
0.11784222722053528
|
1367 |
+
],
|
1368 |
+
[
|
1369 |
+
1.7383723258972168,
|
1370 |
+
-1.3881635665893555,
|
1371 |
+
0.7730268239974976
|
1372 |
+
],
|
1373 |
+
[
|
1374 |
+
1.1018028259277344,
|
1375 |
+
-0.5354564785957336,
|
1376 |
+
0.7790213823318481
|
1377 |
+
],
|
1378 |
+
[
|
1379 |
+
1.936551809310913,
|
1380 |
+
-0.9125238656997681,
|
1381 |
+
-0.49167728424072266
|
1382 |
+
],
|
1383 |
+
[
|
1384 |
+
-0.5996152758598328,
|
1385 |
+
-0.8539415597915649,
|
1386 |
+
0.33622652292251587
|
1387 |
+
],
|
1388 |
+
[
|
1389 |
+
0.6356623768806458,
|
1390 |
+
-1.479321002960205,
|
1391 |
+
1.1427593231201172
|
1392 |
+
],
|
1393 |
+
[
|
1394 |
+
-0.7094821929931641,
|
1395 |
+
1.060670256614685,
|
1396 |
+
1.5971366167068481
|
1397 |
+
],
|
1398 |
+
[
|
1399 |
+
-0.4047229588031769,
|
1400 |
+
-0.5818800926208496,
|
1401 |
+
1.0588374137878418
|
1402 |
+
],
|
1403 |
+
[
|
1404 |
+
0.21128810942173004,
|
1405 |
+
-0.625886857509613,
|
1406 |
+
0.23703314363956451
|
1407 |
+
],
|
1408 |
+
[
|
1409 |
+
0.15707284212112427,
|
1410 |
+
0.30370190739631653,
|
1411 |
+
0.8887234926223755
|
1412 |
+
],
|
1413 |
+
[
|
1414 |
+
-0.05224579945206642,
|
1415 |
+
-1.3394489288330078,
|
1416 |
+
-0.40957173705101013
|
1417 |
+
],
|
1418 |
+
[
|
1419 |
+
0.5565025210380554,
|
1420 |
+
0.34809643030166626,
|
1421 |
+
-0.311869740486145
|
1422 |
+
],
|
1423 |
+
[
|
1424 |
+
-2.1316611766815186,
|
1425 |
+
-0.11549966037273407,
|
1426 |
+
1.518341302871704
|
1427 |
+
],
|
1428 |
+
[
|
1429 |
+
-2.1973228454589844,
|
1430 |
+
-0.11372040212154388,
|
1431 |
+
0.30949142575263977
|
1432 |
+
],
|
1433 |
+
[
|
1434 |
+
-0.6867638826370239,
|
1435 |
+
0.735841691493988,
|
1436 |
+
0.4329794645309448
|
1437 |
+
],
|
1438 |
+
[
|
1439 |
+
-0.26326698064804077,
|
1440 |
+
0.2760885953903198,
|
1441 |
+
-0.5323948264122009
|
1442 |
+
],
|
1443 |
+
[
|
1444 |
+
1.0033975839614868,
|
1445 |
+
0.2760885953903198,
|
1446 |
+
-0.4779791235923767
|
1447 |
+
],
|
1448 |
+
[
|
1449 |
+
2.5320513248443604,
|
1450 |
+
-1.1507349014282227,
|
1451 |
+
-2.4573686122894287
|
1452 |
+
],
|
1453 |
+
[
|
1454 |
+
-1.9798444509506226,
|
1455 |
+
3.7906363010406494,
|
1456 |
+
1.0800453424453735
|
1457 |
+
]
|
1458 |
+
],
|
1459 |
+
"model_names": [
|
1460 |
+
"instruct",
|
1461 |
+
"math",
|
1462 |
+
"code"
|
1463 |
+
],
|
1464 |
+
"num_models": 3,
|
1465 |
+
"num_params": 291,
|
1466 |
+
"param_names": [
|
1467 |
+
"model.embed_tokens.weight",
|
1468 |
+
"model.layers.0.self_attn.q_proj.weight",
|
1469 |
+
"model.layers.0.self_attn.k_proj.weight",
|
1470 |
+
"model.layers.0.self_attn.v_proj.weight",
|
1471 |
+
"model.layers.0.self_attn.o_proj.weight",
|
1472 |
+
"model.layers.0.mlp.gate_proj.weight",
|
1473 |
+
"model.layers.0.mlp.up_proj.weight",
|
1474 |
+
"model.layers.0.mlp.down_proj.weight",
|
1475 |
+
"model.layers.0.input_layernorm.weight",
|
1476 |
+
"model.layers.0.post_attention_layernorm.weight",
|
1477 |
+
"model.layers.1.self_attn.q_proj.weight",
|
1478 |
+
"model.layers.1.self_attn.k_proj.weight",
|
1479 |
+
"model.layers.1.self_attn.v_proj.weight",
|
1480 |
+
"model.layers.1.self_attn.o_proj.weight",
|
1481 |
+
"model.layers.1.mlp.gate_proj.weight",
|
1482 |
+
"model.layers.1.mlp.up_proj.weight",
|
1483 |
+
"model.layers.1.mlp.down_proj.weight",
|
1484 |
+
"model.layers.1.input_layernorm.weight",
|
1485 |
+
"model.layers.1.post_attention_layernorm.weight",
|
1486 |
+
"model.layers.2.self_attn.q_proj.weight",
|
1487 |
+
"model.layers.2.self_attn.k_proj.weight",
|
1488 |
+
"model.layers.2.self_attn.v_proj.weight",
|
1489 |
+
"model.layers.2.self_attn.o_proj.weight",
|
1490 |
+
"model.layers.2.mlp.gate_proj.weight",
|
1491 |
+
"model.layers.2.mlp.up_proj.weight",
|
1492 |
+
"model.layers.2.mlp.down_proj.weight",
|
1493 |
+
"model.layers.2.input_layernorm.weight",
|
1494 |
+
"model.layers.2.post_attention_layernorm.weight",
|
1495 |
+
"model.layers.3.self_attn.q_proj.weight",
|
1496 |
+
"model.layers.3.self_attn.k_proj.weight",
|
1497 |
+
"model.layers.3.self_attn.v_proj.weight",
|
1498 |
+
"model.layers.3.self_attn.o_proj.weight",
|
1499 |
+
"model.layers.3.mlp.gate_proj.weight",
|
1500 |
+
"model.layers.3.mlp.up_proj.weight",
|
1501 |
+
"model.layers.3.mlp.down_proj.weight",
|
1502 |
+
"model.layers.3.input_layernorm.weight",
|
1503 |
+
"model.layers.3.post_attention_layernorm.weight",
|
1504 |
+
"model.layers.4.self_attn.q_proj.weight",
|
1505 |
+
"model.layers.4.self_attn.k_proj.weight",
|
1506 |
+
"model.layers.4.self_attn.v_proj.weight",
|
1507 |
+
"model.layers.4.self_attn.o_proj.weight",
|
1508 |
+
"model.layers.4.mlp.gate_proj.weight",
|
1509 |
+
"model.layers.4.mlp.up_proj.weight",
|
1510 |
+
"model.layers.4.mlp.down_proj.weight",
|
1511 |
+
"model.layers.4.input_layernorm.weight",
|
1512 |
+
"model.layers.4.post_attention_layernorm.weight",
|
1513 |
+
"model.layers.5.self_attn.q_proj.weight",
|
1514 |
+
"model.layers.5.self_attn.k_proj.weight",
|
1515 |
+
"model.layers.5.self_attn.v_proj.weight",
|
1516 |
+
"model.layers.5.self_attn.o_proj.weight",
|
1517 |
+
"model.layers.5.mlp.gate_proj.weight",
|
1518 |
+
"model.layers.5.mlp.up_proj.weight",
|
1519 |
+
"model.layers.5.mlp.down_proj.weight",
|
1520 |
+
"model.layers.5.input_layernorm.weight",
|
1521 |
+
"model.layers.5.post_attention_layernorm.weight",
|
1522 |
+
"model.layers.6.self_attn.q_proj.weight",
|
1523 |
+
"model.layers.6.self_attn.k_proj.weight",
|
1524 |
+
"model.layers.6.self_attn.v_proj.weight",
|
1525 |
+
"model.layers.6.self_attn.o_proj.weight",
|
1526 |
+
"model.layers.6.mlp.gate_proj.weight",
|
1527 |
+
"model.layers.6.mlp.up_proj.weight",
|
1528 |
+
"model.layers.6.mlp.down_proj.weight",
|
1529 |
+
"model.layers.6.input_layernorm.weight",
|
1530 |
+
"model.layers.6.post_attention_layernorm.weight",
|
1531 |
+
"model.layers.7.self_attn.q_proj.weight",
|
1532 |
+
"model.layers.7.self_attn.k_proj.weight",
|
1533 |
+
"model.layers.7.self_attn.v_proj.weight",
|
1534 |
+
"model.layers.7.self_attn.o_proj.weight",
|
1535 |
+
"model.layers.7.mlp.gate_proj.weight",
|
1536 |
+
"model.layers.7.mlp.up_proj.weight",
|
1537 |
+
"model.layers.7.mlp.down_proj.weight",
|
1538 |
+
"model.layers.7.input_layernorm.weight",
|
1539 |
+
"model.layers.7.post_attention_layernorm.weight",
|
1540 |
+
"model.layers.8.self_attn.q_proj.weight",
|
1541 |
+
"model.layers.8.self_attn.k_proj.weight",
|
1542 |
+
"model.layers.8.self_attn.v_proj.weight",
|
1543 |
+
"model.layers.8.self_attn.o_proj.weight",
|
1544 |
+
"model.layers.8.mlp.gate_proj.weight",
|
1545 |
+
"model.layers.8.mlp.up_proj.weight",
|
1546 |
+
"model.layers.8.mlp.down_proj.weight",
|
1547 |
+
"model.layers.8.input_layernorm.weight",
|
1548 |
+
"model.layers.8.post_attention_layernorm.weight",
|
1549 |
+
"model.layers.9.self_attn.q_proj.weight",
|
1550 |
+
"model.layers.9.self_attn.k_proj.weight",
|
1551 |
+
"model.layers.9.self_attn.v_proj.weight",
|
1552 |
+
"model.layers.9.self_attn.o_proj.weight",
|
1553 |
+
"model.layers.9.mlp.gate_proj.weight",
|
1554 |
+
"model.layers.9.mlp.up_proj.weight",
|
1555 |
+
"model.layers.9.mlp.down_proj.weight",
|
1556 |
+
"model.layers.9.input_layernorm.weight",
|
1557 |
+
"model.layers.9.post_attention_layernorm.weight",
|
1558 |
+
"model.layers.10.self_attn.q_proj.weight",
|
1559 |
+
"model.layers.10.self_attn.k_proj.weight",
|
1560 |
+
"model.layers.10.self_attn.v_proj.weight",
|
1561 |
+
"model.layers.10.self_attn.o_proj.weight",
|
1562 |
+
"model.layers.10.mlp.gate_proj.weight",
|
1563 |
+
"model.layers.10.mlp.up_proj.weight",
|
1564 |
+
"model.layers.10.mlp.down_proj.weight",
|
1565 |
+
"model.layers.10.input_layernorm.weight",
|
1566 |
+
"model.layers.10.post_attention_layernorm.weight",
|
1567 |
+
"model.layers.11.self_attn.q_proj.weight",
|
1568 |
+
"model.layers.11.self_attn.k_proj.weight",
|
1569 |
+
"model.layers.11.self_attn.v_proj.weight",
|
1570 |
+
"model.layers.11.self_attn.o_proj.weight",
|
1571 |
+
"model.layers.11.mlp.gate_proj.weight",
|
1572 |
+
"model.layers.11.mlp.up_proj.weight",
|
1573 |
+
"model.layers.11.mlp.down_proj.weight",
|
1574 |
+
"model.layers.11.input_layernorm.weight",
|
1575 |
+
"model.layers.11.post_attention_layernorm.weight",
|
1576 |
+
"model.layers.12.self_attn.q_proj.weight",
|
1577 |
+
"model.layers.12.self_attn.k_proj.weight",
|
1578 |
+
"model.layers.12.self_attn.v_proj.weight",
|
1579 |
+
"model.layers.12.self_attn.o_proj.weight",
|
1580 |
+
"model.layers.12.mlp.gate_proj.weight",
|
1581 |
+
"model.layers.12.mlp.up_proj.weight",
|
1582 |
+
"model.layers.12.mlp.down_proj.weight",
|
1583 |
+
"model.layers.12.input_layernorm.weight",
|
1584 |
+
"model.layers.12.post_attention_layernorm.weight",
|
1585 |
+
"model.layers.13.self_attn.q_proj.weight",
|
1586 |
+
"model.layers.13.self_attn.k_proj.weight",
|
1587 |
+
"model.layers.13.self_attn.v_proj.weight",
|
1588 |
+
"model.layers.13.self_attn.o_proj.weight",
|
1589 |
+
"model.layers.13.mlp.gate_proj.weight",
|
1590 |
+
"model.layers.13.mlp.up_proj.weight",
|
1591 |
+
"model.layers.13.mlp.down_proj.weight",
|
1592 |
+
"model.layers.13.input_layernorm.weight",
|
1593 |
+
"model.layers.13.post_attention_layernorm.weight",
|
1594 |
+
"model.layers.14.self_attn.q_proj.weight",
|
1595 |
+
"model.layers.14.self_attn.k_proj.weight",
|
1596 |
+
"model.layers.14.self_attn.v_proj.weight",
|
1597 |
+
"model.layers.14.self_attn.o_proj.weight",
|
1598 |
+
"model.layers.14.mlp.gate_proj.weight",
|
1599 |
+
"model.layers.14.mlp.up_proj.weight",
|
1600 |
+
"model.layers.14.mlp.down_proj.weight",
|
1601 |
+
"model.layers.14.input_layernorm.weight",
|
1602 |
+
"model.layers.14.post_attention_layernorm.weight",
|
1603 |
+
"model.layers.15.self_attn.q_proj.weight",
|
1604 |
+
"model.layers.15.self_attn.k_proj.weight",
|
1605 |
+
"model.layers.15.self_attn.v_proj.weight",
|
1606 |
+
"model.layers.15.self_attn.o_proj.weight",
|
1607 |
+
"model.layers.15.mlp.gate_proj.weight",
|
1608 |
+
"model.layers.15.mlp.up_proj.weight",
|
1609 |
+
"model.layers.15.mlp.down_proj.weight",
|
1610 |
+
"model.layers.15.input_layernorm.weight",
|
1611 |
+
"model.layers.15.post_attention_layernorm.weight",
|
1612 |
+
"model.layers.16.self_attn.q_proj.weight",
|
1613 |
+
"model.layers.16.self_attn.k_proj.weight",
|
1614 |
+
"model.layers.16.self_attn.v_proj.weight",
|
1615 |
+
"model.layers.16.self_attn.o_proj.weight",
|
1616 |
+
"model.layers.16.mlp.gate_proj.weight",
|
1617 |
+
"model.layers.16.mlp.up_proj.weight",
|
1618 |
+
"model.layers.16.mlp.down_proj.weight",
|
1619 |
+
"model.layers.16.input_layernorm.weight",
|
1620 |
+
"model.layers.16.post_attention_layernorm.weight",
|
1621 |
+
"model.layers.17.self_attn.q_proj.weight",
|
1622 |
+
"model.layers.17.self_attn.k_proj.weight",
|
1623 |
+
"model.layers.17.self_attn.v_proj.weight",
|
1624 |
+
"model.layers.17.self_attn.o_proj.weight",
|
1625 |
+
"model.layers.17.mlp.gate_proj.weight",
|
1626 |
+
"model.layers.17.mlp.up_proj.weight",
|
1627 |
+
"model.layers.17.mlp.down_proj.weight",
|
1628 |
+
"model.layers.17.input_layernorm.weight",
|
1629 |
+
"model.layers.17.post_attention_layernorm.weight",
|
1630 |
+
"model.layers.18.self_attn.q_proj.weight",
|
1631 |
+
"model.layers.18.self_attn.k_proj.weight",
|
1632 |
+
"model.layers.18.self_attn.v_proj.weight",
|
1633 |
+
"model.layers.18.self_attn.o_proj.weight",
|
1634 |
+
"model.layers.18.mlp.gate_proj.weight",
|
1635 |
+
"model.layers.18.mlp.up_proj.weight",
|
1636 |
+
"model.layers.18.mlp.down_proj.weight",
|
1637 |
+
"model.layers.18.input_layernorm.weight",
|
1638 |
+
"model.layers.18.post_attention_layernorm.weight",
|
1639 |
+
"model.layers.19.self_attn.q_proj.weight",
|
1640 |
+
"model.layers.19.self_attn.k_proj.weight",
|
1641 |
+
"model.layers.19.self_attn.v_proj.weight",
|
1642 |
+
"model.layers.19.self_attn.o_proj.weight",
|
1643 |
+
"model.layers.19.mlp.gate_proj.weight",
|
1644 |
+
"model.layers.19.mlp.up_proj.weight",
|
1645 |
+
"model.layers.19.mlp.down_proj.weight",
|
1646 |
+
"model.layers.19.input_layernorm.weight",
|
1647 |
+
"model.layers.19.post_attention_layernorm.weight",
|
1648 |
+
"model.layers.20.self_attn.q_proj.weight",
|
1649 |
+
"model.layers.20.self_attn.k_proj.weight",
|
1650 |
+
"model.layers.20.self_attn.v_proj.weight",
|
1651 |
+
"model.layers.20.self_attn.o_proj.weight",
|
1652 |
+
"model.layers.20.mlp.gate_proj.weight",
|
1653 |
+
"model.layers.20.mlp.up_proj.weight",
|
1654 |
+
"model.layers.20.mlp.down_proj.weight",
|
1655 |
+
"model.layers.20.input_layernorm.weight",
|
1656 |
+
"model.layers.20.post_attention_layernorm.weight",
|
1657 |
+
"model.layers.21.self_attn.q_proj.weight",
|
1658 |
+
"model.layers.21.self_attn.k_proj.weight",
|
1659 |
+
"model.layers.21.self_attn.v_proj.weight",
|
1660 |
+
"model.layers.21.self_attn.o_proj.weight",
|
1661 |
+
"model.layers.21.mlp.gate_proj.weight",
|
1662 |
+
"model.layers.21.mlp.up_proj.weight",
|
1663 |
+
"model.layers.21.mlp.down_proj.weight",
|
1664 |
+
"model.layers.21.input_layernorm.weight",
|
1665 |
+
"model.layers.21.post_attention_layernorm.weight",
|
1666 |
+
"model.layers.22.self_attn.q_proj.weight",
|
1667 |
+
"model.layers.22.self_attn.k_proj.weight",
|
1668 |
+
"model.layers.22.self_attn.v_proj.weight",
|
1669 |
+
"model.layers.22.self_attn.o_proj.weight",
|
1670 |
+
"model.layers.22.mlp.gate_proj.weight",
|
1671 |
+
"model.layers.22.mlp.up_proj.weight",
|
1672 |
+
"model.layers.22.mlp.down_proj.weight",
|
1673 |
+
"model.layers.22.input_layernorm.weight",
|
1674 |
+
"model.layers.22.post_attention_layernorm.weight",
|
1675 |
+
"model.layers.23.self_attn.q_proj.weight",
|
1676 |
+
"model.layers.23.self_attn.k_proj.weight",
|
1677 |
+
"model.layers.23.self_attn.v_proj.weight",
|
1678 |
+
"model.layers.23.self_attn.o_proj.weight",
|
1679 |
+
"model.layers.23.mlp.gate_proj.weight",
|
1680 |
+
"model.layers.23.mlp.up_proj.weight",
|
1681 |
+
"model.layers.23.mlp.down_proj.weight",
|
1682 |
+
"model.layers.23.input_layernorm.weight",
|
1683 |
+
"model.layers.23.post_attention_layernorm.weight",
|
1684 |
+
"model.layers.24.self_attn.q_proj.weight",
|
1685 |
+
"model.layers.24.self_attn.k_proj.weight",
|
1686 |
+
"model.layers.24.self_attn.v_proj.weight",
|
1687 |
+
"model.layers.24.self_attn.o_proj.weight",
|
1688 |
+
"model.layers.24.mlp.gate_proj.weight",
|
1689 |
+
"model.layers.24.mlp.up_proj.weight",
|
1690 |
+
"model.layers.24.mlp.down_proj.weight",
|
1691 |
+
"model.layers.24.input_layernorm.weight",
|
1692 |
+
"model.layers.24.post_attention_layernorm.weight",
|
1693 |
+
"model.layers.25.self_attn.q_proj.weight",
|
1694 |
+
"model.layers.25.self_attn.k_proj.weight",
|
1695 |
+
"model.layers.25.self_attn.v_proj.weight",
|
1696 |
+
"model.layers.25.self_attn.o_proj.weight",
|
1697 |
+
"model.layers.25.mlp.gate_proj.weight",
|
1698 |
+
"model.layers.25.mlp.up_proj.weight",
|
1699 |
+
"model.layers.25.mlp.down_proj.weight",
|
1700 |
+
"model.layers.25.input_layernorm.weight",
|
1701 |
+
"model.layers.25.post_attention_layernorm.weight",
|
1702 |
+
"model.layers.26.self_attn.q_proj.weight",
|
1703 |
+
"model.layers.26.self_attn.k_proj.weight",
|
1704 |
+
"model.layers.26.self_attn.v_proj.weight",
|
1705 |
+
"model.layers.26.self_attn.o_proj.weight",
|
1706 |
+
"model.layers.26.mlp.gate_proj.weight",
|
1707 |
+
"model.layers.26.mlp.up_proj.weight",
|
1708 |
+
"model.layers.26.mlp.down_proj.weight",
|
1709 |
+
"model.layers.26.input_layernorm.weight",
|
1710 |
+
"model.layers.26.post_attention_layernorm.weight",
|
1711 |
+
"model.layers.27.self_attn.q_proj.weight",
|
1712 |
+
"model.layers.27.self_attn.k_proj.weight",
|
1713 |
+
"model.layers.27.self_attn.v_proj.weight",
|
1714 |
+
"model.layers.27.self_attn.o_proj.weight",
|
1715 |
+
"model.layers.27.mlp.gate_proj.weight",
|
1716 |
+
"model.layers.27.mlp.up_proj.weight",
|
1717 |
+
"model.layers.27.mlp.down_proj.weight",
|
1718 |
+
"model.layers.27.input_layernorm.weight",
|
1719 |
+
"model.layers.27.post_attention_layernorm.weight",
|
1720 |
+
"model.layers.28.self_attn.q_proj.weight",
|
1721 |
+
"model.layers.28.self_attn.k_proj.weight",
|
1722 |
+
"model.layers.28.self_attn.v_proj.weight",
|
1723 |
+
"model.layers.28.self_attn.o_proj.weight",
|
1724 |
+
"model.layers.28.mlp.gate_proj.weight",
|
1725 |
+
"model.layers.28.mlp.up_proj.weight",
|
1726 |
+
"model.layers.28.mlp.down_proj.weight",
|
1727 |
+
"model.layers.28.input_layernorm.weight",
|
1728 |
+
"model.layers.28.post_attention_layernorm.weight",
|
1729 |
+
"model.layers.29.self_attn.q_proj.weight",
|
1730 |
+
"model.layers.29.self_attn.k_proj.weight",
|
1731 |
+
"model.layers.29.self_attn.v_proj.weight",
|
1732 |
+
"model.layers.29.self_attn.o_proj.weight",
|
1733 |
+
"model.layers.29.mlp.gate_proj.weight",
|
1734 |
+
"model.layers.29.mlp.up_proj.weight",
|
1735 |
+
"model.layers.29.mlp.down_proj.weight",
|
1736 |
+
"model.layers.29.input_layernorm.weight",
|
1737 |
+
"model.layers.29.post_attention_layernorm.weight",
|
1738 |
+
"model.layers.30.self_attn.q_proj.weight",
|
1739 |
+
"model.layers.30.self_attn.k_proj.weight",
|
1740 |
+
"model.layers.30.self_attn.v_proj.weight",
|
1741 |
+
"model.layers.30.self_attn.o_proj.weight",
|
1742 |
+
"model.layers.30.mlp.gate_proj.weight",
|
1743 |
+
"model.layers.30.mlp.up_proj.weight",
|
1744 |
+
"model.layers.30.mlp.down_proj.weight",
|
1745 |
+
"model.layers.30.input_layernorm.weight",
|
1746 |
+
"model.layers.30.post_attention_layernorm.weight",
|
1747 |
+
"model.layers.31.self_attn.q_proj.weight",
|
1748 |
+
"model.layers.31.self_attn.k_proj.weight",
|
1749 |
+
"model.layers.31.self_attn.v_proj.weight",
|
1750 |
+
"model.layers.31.self_attn.o_proj.weight",
|
1751 |
+
"model.layers.31.mlp.gate_proj.weight",
|
1752 |
+
"model.layers.31.mlp.up_proj.weight",
|
1753 |
+
"model.layers.31.mlp.down_proj.weight",
|
1754 |
+
"model.layers.31.input_layernorm.weight",
|
1755 |
+
"model.layers.31.post_attention_layernorm.weight",
|
1756 |
+
"model.norm.weight",
|
1757 |
+
"lm_head.weight"
|
1758 |
+
]
|
1759 |
+
}
|
logs/save_merged_model_20250703_172454.log
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - Starting merged model save process
|
2 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - Arguments: {'lambdas_path': '/work/gj26/b20042/LLM-AdaMerge/outputs/mistral-7b/parameter-wise/test-time-adaptation-large-lr/llm_adamerge_parameterwise_lambdas.json', 'model_config': '/work/gj26/b20042/LLM-AdaMerge/src/configs/model_config.yaml', 'output_dir': '/work/gj26/b20042/LLM-AdaMerge/mergekit/outputs/mistral-7b/llmadamerge/test-time-adaptation-large-lr', 'model_name': 'merged-model', 'push_to_hub': False, 'hub_repo_id': 'lejelly/test-time-adaptation-ep3-lr0.01-llm-adamerge-shannonentropy-mistral-7b-instrcut-math-code', 'private': False, 'device': 'cuda', 'debug': False}
|
3 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - Loading lambdas from /work/gj26/b20042/LLM-AdaMerge/outputs/mistral-7b/parameter-wise/test-time-adaptation-large-lr/llm_adamerge_parameterwise_lambdas.json
|
4 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - Auto-detected parameter-wise merge from JSON structure
|
5 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - Merge type: parameter_wise
|
6 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - [Initial] Memory Usage:
|
7 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - Process: 0.37 GB (0.2%)
|
8 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - System: 8.98 GB / 212.49 GB (8.9%)
|
9 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - Available: 193.65 GB
|
10 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
11 |
+
2025-07-03 17:24:54 - experiment_save_merged_model - INFO - Loading models
|
12 |
+
2025-07-03 17:25:13 - experiment_save_merged_model - INFO - [After loading models] Memory Usage:
|
13 |
+
2025-07-03 17:25:13 - experiment_save_merged_model - INFO - Process: 40.95 GB (19.3%)
|
14 |
+
2025-07-03 17:25:13 - experiment_save_merged_model - INFO - System: 48.99 GB / 212.49 GB (31.0%)
|
15 |
+
2025-07-03 17:25:13 - experiment_save_merged_model - INFO - Available: 146.62 GB
|
16 |
+
2025-07-03 17:25:13 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
17 |
+
2025-07-03 17:25:13 - experiment_save_merged_model - INFO - Initializing parameter_wise AdaMerge
|
18 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Loading learned lambdas
|
19 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Deleting original models to free memory (task vectors already computed)
|
20 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - [Before deleting models] Memory Usage:
|
21 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Process: 95.03 GB (44.7%)
|
22 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - System: 90.00 GB / 212.49 GB (50.3%)
|
23 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Available: 105.56 GB
|
24 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
25 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Clearing model_loader references
|
26 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Deleting model variables
|
27 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Running garbage collection
|
28 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - [After deleting models and GC] Memory Usage:
|
29 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Process: 55.70 GB (26.2%)
|
30 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - System: 64.02 GB / 212.49 GB (38.1%)
|
31 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Available: 131.53 GB
|
32 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
33 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - [After loading lambdas] Memory Usage:
|
34 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Process: 55.70 GB (26.2%)
|
35 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - System: 64.02 GB / 212.49 GB (38.1%)
|
36 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Available: 131.53 GB
|
37 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
38 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Creating merged model with learned lambdas
|
39 |
+
2025-07-03 17:26:28 - experiment_save_merged_model - INFO - Using merge_models_for_save()
|
40 |
+
2025-07-03 17:28:29 - experiment_save_merged_model - INFO - [After merging models] Memory Usage:
|
41 |
+
2025-07-03 17:28:29 - experiment_save_merged_model - INFO - Process: 57.68 GB (27.1%)
|
42 |
+
2025-07-03 17:28:29 - experiment_save_merged_model - INFO - System: 93.06 GB / 212.49 GB (48.6%)
|
43 |
+
2025-07-03 17:28:29 - experiment_save_merged_model - INFO - Available: 109.21 GB
|
44 |
+
2025-07-03 17:28:29 - experiment_save_merged_model - INFO - GPU 0: Allocated: 13.49 GB, Reserved: 27.23 GB, Total: 94.50 GB
|
45 |
+
2025-07-03 17:28:29 - experiment_save_merged_model - INFO - Freeing memory from AdaMerge object (task vectors and base params no longer needed)
|
46 |
+
2025-07-03 17:28:29 - experiment_save_merged_model - INFO - Deleting task vectors
|
47 |
+
2025-07-03 17:28:29 - experiment_save_merged_model - INFO - Deleting base params
|
48 |
+
2025-07-03 17:28:30 - experiment_save_merged_model - INFO - Deleting functional model
|
49 |
+
2025-07-03 17:28:30 - experiment_save_merged_model - INFO - [After freeing AdaMerge memory] Memory Usage:
|
50 |
+
2025-07-03 17:28:30 - experiment_save_merged_model - INFO - Process: 5.69 GB (2.7%)
|
51 |
+
2025-07-03 17:28:30 - experiment_save_merged_model - INFO - System: 27.34 GB / 212.49 GB (17.7%)
|
52 |
+
2025-07-03 17:28:30 - experiment_save_merged_model - INFO - Available: 174.93 GB
|
53 |
+
2025-07-03 17:28:30 - experiment_save_merged_model - INFO - GPU 0: Allocated: 13.49 GB, Reserved: 13.62 GB, Total: 94.50 GB
|
54 |
+
2025-07-03 17:28:30 - experiment_save_merged_model - INFO - Saving merged model to /work/gj26/b20042/LLM-AdaMerge/mergekit/outputs/mistral-7b/llmadamerge/test-time-adaptation-large-lr
|
55 |
+
2025-07-03 17:28:30 - experiment_save_merged_model - INFO - Moving merged model to CPU for saving
|
56 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - Successfully saved 3 safetensors files:
|
57 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - - model-00001-of-00003.safetensors (4714.17 MB)
|
58 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - - model-00003-of-00003.safetensors (4330.17 MB)
|
59 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - - model-00002-of-00003.safetensors (4768.20 MB)
|
60 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - [After saving model] Memory Usage:
|
61 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - Process: 15.34 GB (7.2%)
|
62 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - System: 23.64 GB / 212.49 GB (19.1%)
|
63 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - Available: 171.93 GB
|
64 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
65 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - Saving tokenizer
|
66 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - Copied lambdas file to /work/gj26/b20042/LLM-AdaMerge/mergekit/outputs/mistral-7b/llmadamerge/test-time-adaptation-large-lr/learned_lambdas.json
|
67 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - Creating model card
|
68 |
+
2025-07-03 17:29:09 - experiment_save_merged_model - INFO - Cleaning up models
|
69 |
+
2025-07-03 17:29:10 - experiment_save_merged_model - INFO - [After cleanup] Memory Usage:
|
70 |
+
2025-07-03 17:29:10 - experiment_save_merged_model - INFO - Process: 15.34 GB (7.2%)
|
71 |
+
2025-07-03 17:29:10 - experiment_save_merged_model - INFO - System: 23.64 GB / 212.49 GB (19.1%)
|
72 |
+
2025-07-03 17:29:10 - experiment_save_merged_model - INFO - Available: 171.92 GB
|
73 |
+
2025-07-03 17:29:10 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
74 |
+
2025-07-03 17:29:10 - experiment_save_merged_model - INFO - Model saved successfully to /work/gj26/b20042/LLM-AdaMerge/mergekit/outputs/mistral-7b/llmadamerge/test-time-adaptation-large-lr
|
model-00001-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e5409526e2583e5865b5224c0c3a9910979df310e0173a73fe7e6a1db724996
|
3 |
+
size 4943162240
|
model-00002-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c4f2864fec9281d27c761fa2458bf19e7d249979999a76814d69f0bdfa790e76
|
3 |
+
size 4999819232
|
model-00003-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:82b5a5daadc9879e06ac5114e7ac805597223ea6317db0006bdd2fc286639ad9
|
3 |
+
size 4540516256
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,298 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 14483464192
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"lm_head.weight": "model-00003-of-00003.safetensors",
|
7 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
15 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
16 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
17 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
18 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
19 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
20 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
21 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
22 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
23 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
24 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
25 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
26 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
27 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
28 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
29 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
30 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
31 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
32 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
33 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
34 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
35 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
36 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
37 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
38 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
39 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
40 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
41 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
42 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
43 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
44 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
45 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
46 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
47 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
48 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
49 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
50 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
51 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
52 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
53 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
54 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
55 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
56 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
57 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
58 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
59 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
60 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
61 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
62 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
63 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
64 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
65 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
66 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
67 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
68 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
69 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
70 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
71 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
72 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
73 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
74 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
75 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
76 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
77 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
78 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
79 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
80 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
81 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
82 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
83 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
84 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
85 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
86 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
87 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
88 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
89 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
90 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
91 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
92 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
93 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
94 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
95 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
96 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
97 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
98 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
99 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
100 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
101 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
102 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
103 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
104 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
105 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
106 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
107 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
108 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
109 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
110 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
111 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
112 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
113 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
114 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
115 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
116 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
117 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
118 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
119 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
120 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
121 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
122 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
123 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
124 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
125 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
126 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
127 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
128 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
129 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
130 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
131 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
132 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
133 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
134 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
135 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
136 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
137 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
138 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
139 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
140 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
141 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
142 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
143 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
144 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
145 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
146 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
147 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
148 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
149 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
150 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
151 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
152 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
153 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
154 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
155 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
156 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
157 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
158 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
159 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
160 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
161 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
162 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
163 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
164 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
165 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
166 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
167 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
168 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
169 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
170 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
171 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
172 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
173 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
174 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
175 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
176 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
177 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
178 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
179 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
180 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
181 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
182 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
183 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
184 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
185 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
186 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
187 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
188 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
189 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
190 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
191 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
192 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
193 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
194 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
195 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
196 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
197 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
198 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
199 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
200 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
201 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
202 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
203 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
204 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
205 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
206 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
207 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
208 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
209 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
210 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
211 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
212 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
213 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
214 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
215 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
216 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
217 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
218 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
219 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
220 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
221 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
222 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
223 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
224 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
225 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
226 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
227 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
228 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
229 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
230 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
231 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
232 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
233 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
234 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
235 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
236 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
237 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
238 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
239 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
240 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
241 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
242 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
243 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
244 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
245 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
246 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
247 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
248 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
249 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
250 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
251 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
252 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
253 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
254 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
255 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
256 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
257 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
258 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
259 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
260 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
261 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
262 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
263 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
264 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
265 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
266 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
267 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
268 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
269 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
270 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
271 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
272 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
273 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
274 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
275 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
276 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
277 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
278 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
279 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
280 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
281 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
282 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
283 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
284 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
285 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
286 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
287 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
288 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
289 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
290 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
291 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
292 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
293 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
294 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
295 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
296 |
+
"model.norm.weight": "model-00003-of-00003.safetensors"
|
297 |
+
}
|
298 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<s>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "</s>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": "</s>",
|
17 |
+
"unk_token": {
|
18 |
+
"content": "<unk>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
}
|
24 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"add_prefix_space": null,
|
5 |
+
"added_tokens_decoder": {
|
6 |
+
"0": {
|
7 |
+
"content": "<unk>",
|
8 |
+
"lstrip": false,
|
9 |
+
"normalized": false,
|
10 |
+
"rstrip": false,
|
11 |
+
"single_word": false,
|
12 |
+
"special": true
|
13 |
+
},
|
14 |
+
"1": {
|
15 |
+
"content": "<s>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": false,
|
18 |
+
"rstrip": false,
|
19 |
+
"single_word": false,
|
20 |
+
"special": true
|
21 |
+
},
|
22 |
+
"2": {
|
23 |
+
"content": "</s>",
|
24 |
+
"lstrip": false,
|
25 |
+
"normalized": false,
|
26 |
+
"rstrip": false,
|
27 |
+
"single_word": false,
|
28 |
+
"special": true
|
29 |
+
}
|
30 |
+
},
|
31 |
+
"additional_special_tokens": [],
|
32 |
+
"bos_token": "<s>",
|
33 |
+
"clean_up_tokenization_spaces": false,
|
34 |
+
"eos_token": "</s>",
|
35 |
+
"extra_special_tokens": {},
|
36 |
+
"legacy": false,
|
37 |
+
"model_max_length": 1000000000000000019884624838656,
|
38 |
+
"pad_token": "</s>",
|
39 |
+
"sp_model_kwargs": {},
|
40 |
+
"spaces_between_special_tokens": false,
|
41 |
+
"tokenizer_class": "LlamaTokenizerFast",
|
42 |
+
"unk_token": "<unk>",
|
43 |
+
"use_default_system_prompt": false
|
44 |
+
}
|