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_20250616_121108.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.2534952461719513,
|
5 |
+
0.30523034930229187,
|
6 |
+
0.3759872019290924
|
7 |
+
],
|
8 |
+
[
|
9 |
+
0.19381080567836761,
|
10 |
+
0.14330413937568665,
|
11 |
+
0.1505417376756668
|
12 |
+
],
|
13 |
+
[
|
14 |
+
0.15468859672546387,
|
15 |
+
0.11949324607849121,
|
16 |
+
0.11205987632274628
|
17 |
+
],
|
18 |
+
[
|
19 |
+
0.5130396485328674,
|
20 |
+
0.12730471789836884,
|
21 |
+
0.2577188014984131
|
22 |
+
],
|
23 |
+
[
|
24 |
+
0.3262805938720703,
|
25 |
+
0.12673349678516388,
|
26 |
+
0.43820610642433167
|
27 |
+
],
|
28 |
+
[
|
29 |
+
0.08854815363883972,
|
30 |
+
0.17906822264194489,
|
31 |
+
0.07189840078353882
|
32 |
+
],
|
33 |
+
[
|
34 |
+
0.4790966212749481,
|
35 |
+
0.4757692217826843,
|
36 |
+
0.2594115436077118
|
37 |
+
],
|
38 |
+
[
|
39 |
+
0.44506341218948364,
|
40 |
+
0.4810096323490143,
|
41 |
+
0.174846813082695
|
42 |
+
],
|
43 |
+
[
|
44 |
+
0.13854311406612396,
|
45 |
+
0.11476646363735199,
|
46 |
+
0.45711416006088257
|
47 |
+
],
|
48 |
+
[
|
49 |
+
0.3992047607898712,
|
50 |
+
0.21270178258419037,
|
51 |
+
0.19707091152668
|
52 |
+
],
|
53 |
+
[
|
54 |
+
0.2006145864725113,
|
55 |
+
0.136004239320755,
|
56 |
+
0.45083877444267273
|
57 |
+
],
|
58 |
+
[
|
59 |
+
0.42933884263038635,
|
60 |
+
0.48759180307388306,
|
61 |
+
0.4610913395881653
|
62 |
+
],
|
63 |
+
[
|
64 |
+
0.09757842123508453,
|
65 |
+
0.09553612023591995,
|
66 |
+
0.13694429397583008
|
67 |
+
],
|
68 |
+
[
|
69 |
+
0.09377998113632202,
|
70 |
+
0.4987637996673584,
|
71 |
+
0.47199103236198425
|
72 |
+
],
|
73 |
+
[
|
74 |
+
0.342789888381958,
|
75 |
+
0.13183650374412537,
|
76 |
+
0.11036911606788635
|
77 |
+
],
|
78 |
+
[
|
79 |
+
0.33038148283958435,
|
80 |
+
0.14878816902637482,
|
81 |
+
0.26642900705337524
|
82 |
+
],
|
83 |
+
[
|
84 |
+
0.5244519710540771,
|
85 |
+
0.5266465544700623,
|
86 |
+
0.5108031034469604
|
87 |
+
],
|
88 |
+
[
|
89 |
+
0.45286843180656433,
|
90 |
+
0.4926087558269501,
|
91 |
+
0.15870466828346252
|
92 |
+
],
|
93 |
+
[
|
94 |
+
0.11907289177179337,
|
95 |
+
0.12675036489963531,
|
96 |
+
0.47801220417022705
|
97 |
+
],
|
98 |
+
[
|
99 |
+
0.1762814223766327,
|
100 |
+
0.22741958498954773,
|
101 |
+
0.08227628469467163
|
102 |
+
],
|
103 |
+
[
|
104 |
+
0.35158514976501465,
|
105 |
+
0.2241077721118927,
|
106 |
+
0.12628868222236633
|
107 |
+
],
|
108 |
+
[
|
109 |
+
0.31179118156433105,
|
110 |
+
0.5237205028533936,
|
111 |
+
0.221613809466362
|
112 |
+
],
|
113 |
+
[
|
114 |
+
0.05017201974987984,
|
115 |
+
0.06903746724128723,
|
116 |
+
0.537602961063385
|
117 |
+
],
|
118 |
+
[
|
119 |
+
0.44471949338912964,
|
120 |
+
0.4415968954563141,
|
121 |
+
0.41711723804473877
|
122 |
+
],
|
123 |
+
[
|
124 |
+
0.2558377683162689,
|
125 |
+
0.39776676893234253,
|
126 |
+
0.12752346694469452
|
127 |
+
],
|
128 |
+
[
|
129 |
+
0.506903350353241,
|
130 |
+
0.08512687683105469,
|
131 |
+
0.5269022583961487
|
132 |
+
],
|
133 |
+
[
|
134 |
+
0.12547433376312256,
|
135 |
+
0.5467050075531006,
|
136 |
+
0.2142793983221054
|
137 |
+
],
|
138 |
+
[
|
139 |
+
0.49493587017059326,
|
140 |
+
0.5380048155784607,
|
141 |
+
0.3759128749370575
|
142 |
+
],
|
143 |
+
[
|
144 |
+
0.1444317102432251,
|
145 |
+
0.2716050446033478,
|
146 |
+
0.40274953842163086
|
147 |
+
],
|
148 |
+
[
|
149 |
+
0.12919534742832184,
|
150 |
+
0.3601296842098236,
|
151 |
+
0.4177890717983246
|
152 |
+
],
|
153 |
+
[
|
154 |
+
0.31740885972976685,
|
155 |
+
0.5108253955841064,
|
156 |
+
0.4309729039669037
|
157 |
+
],
|
158 |
+
[
|
159 |
+
0.23399466276168823,
|
160 |
+
0.3505608141422272,
|
161 |
+
0.5342388153076172
|
162 |
+
],
|
163 |
+
[
|
164 |
+
0.47912299633026123,
|
165 |
+
0.11666414141654968,
|
166 |
+
0.4114471971988678
|
167 |
+
],
|
168 |
+
[
|
169 |
+
0.33454301953315735,
|
170 |
+
0.07829625904560089,
|
171 |
+
0.08453896641731262
|
172 |
+
],
|
173 |
+
[
|
174 |
+
0.4557119607925415,
|
175 |
+
0.47959810495376587,
|
176 |
+
0.4164620339870453
|
177 |
+
],
|
178 |
+
[
|
179 |
+
0.14079050719738007,
|
180 |
+
0.44912412762641907,
|
181 |
+
0.4894633889198303
|
182 |
+
],
|
183 |
+
[
|
184 |
+
0.13113750517368317,
|
185 |
+
0.4795096218585968,
|
186 |
+
0.5065174102783203
|
187 |
+
],
|
188 |
+
[
|
189 |
+
0.41767609119415283,
|
190 |
+
0.12207511812448502,
|
191 |
+
0.28158777952194214
|
192 |
+
],
|
193 |
+
[
|
194 |
+
0.2823454439640045,
|
195 |
+
0.11494332551956177,
|
196 |
+
0.14318899810314178
|
197 |
+
],
|
198 |
+
[
|
199 |
+
0.1188262328505516,
|
200 |
+
0.49996885657310486,
|
201 |
+
0.3268076479434967
|
202 |
+
],
|
203 |
+
[
|
204 |
+
0.11482632905244827,
|
205 |
+
0.13078516721725464,
|
206 |
+
0.4283144474029541
|
207 |
+
],
|
208 |
+
[
|
209 |
+
0.2638767957687378,
|
210 |
+
0.47975513339042664,
|
211 |
+
0.5138802528381348
|
212 |
+
],
|
213 |
+
[
|
214 |
+
0.3112858831882477,
|
215 |
+
0.4337930679321289,
|
216 |
+
0.38627398014068604
|
217 |
+
],
|
218 |
+
[
|
219 |
+
0.4781522750854492,
|
220 |
+
0.45803841948509216,
|
221 |
+
0.4390278458595276
|
222 |
+
],
|
223 |
+
[
|
224 |
+
0.19160860776901245,
|
225 |
+
0.45856159925460815,
|
226 |
+
0.1799495369195938
|
227 |
+
],
|
228 |
+
[
|
229 |
+
0.5289384126663208,
|
230 |
+
0.5018876791000366,
|
231 |
+
0.08807901293039322
|
232 |
+
],
|
233 |
+
[
|
234 |
+
0.39029595255851746,
|
235 |
+
0.22166197001934052,
|
236 |
+
0.05597026273608208
|
237 |
+
],
|
238 |
+
[
|
239 |
+
0.14031341671943665,
|
240 |
+
0.0284577663987875,
|
241 |
+
0.039545465260744095
|
242 |
+
],
|
243 |
+
[
|
244 |
+
0.3012852966785431,
|
245 |
+
0.4547480642795563,
|
246 |
+
0.36205294728279114
|
247 |
+
],
|
248 |
+
[
|
249 |
+
0.4226453900337219,
|
250 |
+
0.2290882170200348,
|
251 |
+
0.5030483603477478
|
252 |
+
],
|
253 |
+
[
|
254 |
+
0.37617990374565125,
|
255 |
+
0.5257728695869446,
|
256 |
+
0.2895321547985077
|
257 |
+
],
|
258 |
+
[
|
259 |
+
0.3288835883140564,
|
260 |
+
0.5261308550834656,
|
261 |
+
0.40352365374565125
|
262 |
+
],
|
263 |
+
[
|
264 |
+
0.5320791602134705,
|
265 |
+
0.4879598617553711,
|
266 |
+
0.47232821583747864
|
267 |
+
],
|
268 |
+
[
|
269 |
+
0.02394048310816288,
|
270 |
+
0.5648339986801147,
|
271 |
+
0.5524075627326965
|
272 |
+
],
|
273 |
+
[
|
274 |
+
0.09589371085166931,
|
275 |
+
0.22865454852581024,
|
276 |
+
0.24091486632823944
|
277 |
+
],
|
278 |
+
[
|
279 |
+
0.37051576375961304,
|
280 |
+
0.09366679191589355,
|
281 |
+
0.2356727421283722
|
282 |
+
],
|
283 |
+
[
|
284 |
+
0.482128769159317,
|
285 |
+
0.3785671889781952,
|
286 |
+
0.29638534784317017
|
287 |
+
],
|
288 |
+
[
|
289 |
+
0.0703749731183052,
|
290 |
+
0.47385674715042114,
|
291 |
+
0.34347960352897644
|
292 |
+
],
|
293 |
+
[
|
294 |
+
0.34640681743621826,
|
295 |
+
0.20363754034042358,
|
296 |
+
0.4984317719936371
|
297 |
+
],
|
298 |
+
[
|
299 |
+
0.12805169820785522,
|
300 |
+
0.07272768765687943,
|
301 |
+
0.481533944606781
|
302 |
+
],
|
303 |
+
[
|
304 |
+
0.44757071137428284,
|
305 |
+
0.44445836544036865,
|
306 |
+
0.5367795825004578
|
307 |
+
],
|
308 |
+
[
|
309 |
+
0.4767749309539795,
|
310 |
+
0.2248300313949585,
|
311 |
+
0.5253691673278809
|
312 |
+
],
|
313 |
+
[
|
314 |
+
0.22370415925979614,
|
315 |
+
0.042401693761348724,
|
316 |
+
0.39869654178619385
|
317 |
+
],
|
318 |
+
[
|
319 |
+
0.4211507737636566,
|
320 |
+
0.26674604415893555,
|
321 |
+
0.29245680570602417
|
322 |
+
],
|
323 |
+
[
|
324 |
+
0.31515729427337646,
|
325 |
+
0.22131618857383728,
|
326 |
+
0.1825154423713684
|
327 |
+
],
|
328 |
+
[
|
329 |
+
0.5393283367156982,
|
330 |
+
0.43332377076148987,
|
331 |
+
0.29671788215637207
|
332 |
+
],
|
333 |
+
[
|
334 |
+
0.11622118204832077,
|
335 |
+
0.11878670006990433,
|
336 |
+
0.18064448237419128
|
337 |
+
],
|
338 |
+
[
|
339 |
+
0.5045350193977356,
|
340 |
+
0.47212979197502136,
|
341 |
+
0.17135772109031677
|
342 |
+
],
|
343 |
+
[
|
344 |
+
0.4371897280216217,
|
345 |
+
0.28812137246131897,
|
346 |
+
0.5101091861724854
|
347 |
+
],
|
348 |
+
[
|
349 |
+
0.3035878539085388,
|
350 |
+
0.10632573068141937,
|
351 |
+
0.3595532178878784
|
352 |
+
],
|
353 |
+
[
|
354 |
+
0.48716968297958374,
|
355 |
+
0.2961490750312805,
|
356 |
+
0.4975534975528717
|
357 |
+
],
|
358 |
+
[
|
359 |
+
0.30991655588150024,
|
360 |
+
0.29923370480537415,
|
361 |
+
0.4639711380004883
|
362 |
+
],
|
363 |
+
[
|
364 |
+
0.523935854434967,
|
365 |
+
0.3574671149253845,
|
366 |
+
0.04057236388325691
|
367 |
+
],
|
368 |
+
[
|
369 |
+
0.5104513168334961,
|
370 |
+
0.06938118487596512,
|
371 |
+
0.4495874047279358
|
372 |
+
],
|
373 |
+
[
|
374 |
+
0.3236958980560303,
|
375 |
+
0.2927325665950775,
|
376 |
+
0.3352988362312317
|
377 |
+
],
|
378 |
+
[
|
379 |
+
0.17906847596168518,
|
380 |
+
0.2763298451900482,
|
381 |
+
0.14234255254268646
|
382 |
+
],
|
383 |
+
[
|
384 |
+
0.5065359473228455,
|
385 |
+
0.5002820491790771,
|
386 |
+
0.4729934632778168
|
387 |
+
],
|
388 |
+
[
|
389 |
+
0.524003803730011,
|
390 |
+
0.1553145796060562,
|
391 |
+
0.4596402943134308
|
392 |
+
],
|
393 |
+
[
|
394 |
+
0.4732443690299988,
|
395 |
+
0.46863853931427,
|
396 |
+
0.46989449858665466
|
397 |
+
],
|
398 |
+
[
|
399 |
+
0.5130873918533325,
|
400 |
+
0.46314916014671326,
|
401 |
+
0.12571106851100922
|
402 |
+
],
|
403 |
+
[
|
404 |
+
0.29410871863365173,
|
405 |
+
0.29923370480537415,
|
406 |
+
0.15922415256500244
|
407 |
+
],
|
408 |
+
[
|
409 |
+
0.40763089060783386,
|
410 |
+
0.44121450185775757,
|
411 |
+
0.3422219157218933
|
412 |
+
],
|
413 |
+
[
|
414 |
+
0.19644838571548462,
|
415 |
+
0.3400014042854309,
|
416 |
+
0.10237600654363632
|
417 |
+
],
|
418 |
+
[
|
419 |
+
0.1363479644060135,
|
420 |
+
0.1328810602426529,
|
421 |
+
0.13454383611679077
|
422 |
+
],
|
423 |
+
[
|
424 |
+
0.470550000667572,
|
425 |
+
0.30152225494384766,
|
426 |
+
0.46644097566604614
|
427 |
+
],
|
428 |
+
[
|
429 |
+
0.16385038197040558,
|
430 |
+
0.1695399433374405,
|
431 |
+
0.4856874346733093
|
432 |
+
],
|
433 |
+
[
|
434 |
+
0.20677362382411957,
|
435 |
+
0.3881402313709259,
|
436 |
+
0.5318411588668823
|
437 |
+
],
|
438 |
+
[
|
439 |
+
0.10901015251874924,
|
440 |
+
0.2707475423812866,
|
441 |
+
0.3816758990287781
|
442 |
+
],
|
443 |
+
[
|
444 |
+
0.4847850203514099,
|
445 |
+
0.15239009261131287,
|
446 |
+
0.45163530111312866
|
447 |
+
],
|
448 |
+
[
|
449 |
+
0.09481005370616913,
|
450 |
+
0.15819105505943298,
|
451 |
+
0.12841404974460602
|
452 |
+
],
|
453 |
+
[
|
454 |
+
0.4983784854412079,
|
455 |
+
0.45718005299568176,
|
456 |
+
0.08424646407365799
|
457 |
+
],
|
458 |
+
[
|
459 |
+
0.2763046324253082,
|
460 |
+
0.2063058465719223,
|
461 |
+
0.3703247904777527
|
462 |
+
],
|
463 |
+
[
|
464 |
+
0.4036531150341034,
|
465 |
+
0.4484309256076813,
|
466 |
+
0.24457362294197083
|
467 |
+
],
|
468 |
+
[
|
469 |
+
0.5230464935302734,
|
470 |
+
0.4396556317806244,
|
471 |
+
0.3629106879234314
|
472 |
+
],
|
473 |
+
[
|
474 |
+
0.2946498990058899,
|
475 |
+
0.19224371016025543,
|
476 |
+
0.18639756739139557
|
477 |
+
],
|
478 |
+
[
|
479 |
+
0.33942845463752747,
|
480 |
+
0.1070963591337204,
|
481 |
+
0.49657177925109863
|
482 |
+
],
|
483 |
+
[
|
484 |
+
0.12787079811096191,
|
485 |
+
0.08263149112462997,
|
486 |
+
0.1840149164199829
|
487 |
+
],
|
488 |
+
[
|
489 |
+
0.35910454392433167,
|
490 |
+
0.31310170888900757,
|
491 |
+
0.11980897933244705
|
492 |
+
],
|
493 |
+
[
|
494 |
+
0.15722618997097015,
|
495 |
+
0.29923370480537415,
|
496 |
+
0.407820463180542
|
497 |
+
],
|
498 |
+
[
|
499 |
+
0.12364465743303299,
|
500 |
+
0.4659133553504944,
|
501 |
+
0.15633027255535126
|
502 |
+
],
|
503 |
+
[
|
504 |
+
0.28565514087677,
|
505 |
+
0.2897105813026428,
|
506 |
+
0.12392035126686096
|
507 |
+
],
|
508 |
+
[
|
509 |
+
0.19736559689044952,
|
510 |
+
0.1416158825159073,
|
511 |
+
0.1349979192018509
|
512 |
+
],
|
513 |
+
[
|
514 |
+
0.3496997356414795,
|
515 |
+
0.4211839437484741,
|
516 |
+
0.1715952455997467
|
517 |
+
],
|
518 |
+
[
|
519 |
+
0.475223183631897,
|
520 |
+
0.4130305349826813,
|
521 |
+
0.4653870165348053
|
522 |
+
],
|
523 |
+
[
|
524 |
+
0.28921404480934143,
|
525 |
+
0.34739425778388977,
|
526 |
+
0.11075332015752792
|
527 |
+
],
|
528 |
+
[
|
529 |
+
0.4047956168651581,
|
530 |
+
0.13861128687858582,
|
531 |
+
0.16961310803890228
|
532 |
+
],
|
533 |
+
[
|
534 |
+
0.5106709003448486,
|
535 |
+
0.5673624873161316,
|
536 |
+
0.0892450362443924
|
537 |
+
],
|
538 |
+
[
|
539 |
+
0.10365679115056992,
|
540 |
+
0.43958431482315063,
|
541 |
+
0.48060742020606995
|
542 |
+
],
|
543 |
+
[
|
544 |
+
0.2888166904449463,
|
545 |
+
0.07966294884681702,
|
546 |
+
0.36358967423439026
|
547 |
+
],
|
548 |
+
[
|
549 |
+
0.19292157888412476,
|
550 |
+
0.17309828102588654,
|
551 |
+
0.05589678883552551
|
552 |
+
],
|
553 |
+
[
|
554 |
+
0.5227929949760437,
|
555 |
+
0.1855587214231491,
|
556 |
+
0.11792507767677307
|
557 |
+
],
|
558 |
+
[
|
559 |
+
0.2660389244556427,
|
560 |
+
0.548773467540741,
|
561 |
+
0.5037134885787964
|
562 |
+
],
|
563 |
+
[
|
564 |
+
0.057378534227609634,
|
565 |
+
0.4946551024913788,
|
566 |
+
0.16494522988796234
|
567 |
+
],
|
568 |
+
[
|
569 |
+
0.48666009306907654,
|
570 |
+
0.4797813594341278,
|
571 |
+
0.07033804059028625
|
572 |
+
],
|
573 |
+
[
|
574 |
+
0.5187705159187317,
|
575 |
+
0.34227901697158813,
|
576 |
+
0.406067818403244
|
577 |
+
],
|
578 |
+
[
|
579 |
+
0.4448551535606384,
|
580 |
+
0.10400378704071045,
|
581 |
+
0.3110816180706024
|
582 |
+
],
|
583 |
+
[
|
584 |
+
0.4698975086212158,
|
585 |
+
0.2864452302455902,
|
586 |
+
0.30077314376831055
|
587 |
+
],
|
588 |
+
[
|
589 |
+
0.0703377053141594,
|
590 |
+
0.14353232085704803,
|
591 |
+
0.34064897894859314
|
592 |
+
],
|
593 |
+
[
|
594 |
+
0.4335997402667999,
|
595 |
+
0.38353508710861206,
|
596 |
+
0.20544759929180145
|
597 |
+
],
|
598 |
+
[
|
599 |
+
0.3803330063819885,
|
600 |
+
0.44886884093284607,
|
601 |
+
0.437945157289505
|
602 |
+
],
|
603 |
+
[
|
604 |
+
0.4261038303375244,
|
605 |
+
0.0924801379442215,
|
606 |
+
0.49706584215164185
|
607 |
+
],
|
608 |
+
[
|
609 |
+
0.22050204873085022,
|
610 |
+
0.4724709689617157,
|
611 |
+
0.18526726961135864
|
612 |
+
],
|
613 |
+
[
|
614 |
+
0.3928665518760681,
|
615 |
+
0.21280480921268463,
|
616 |
+
0.09385833889245987
|
617 |
+
],
|
618 |
+
[
|
619 |
+
0.2593844532966614,
|
620 |
+
0.5017476677894592,
|
621 |
+
0.4851435124874115
|
622 |
+
],
|
623 |
+
[
|
624 |
+
0.5046696066856384,
|
625 |
+
0.25496184825897217,
|
626 |
+
0.4357806444168091
|
627 |
+
],
|
628 |
+
[
|
629 |
+
0.5074482560157776,
|
630 |
+
0.29923370480537415,
|
631 |
+
0.06577571481466293
|
632 |
+
],
|
633 |
+
[
|
634 |
+
0.221904918551445,
|
635 |
+
0.42789438366889954,
|
636 |
+
0.21795718371868134
|
637 |
+
],
|
638 |
+
[
|
639 |
+
0.38635969161987305,
|
640 |
+
0.22646084427833557,
|
641 |
+
0.17344880104064941
|
642 |
+
],
|
643 |
+
[
|
644 |
+
0.5065464973449707,
|
645 |
+
0.41880306601524353,
|
646 |
+
0.1801910251379013
|
647 |
+
],
|
648 |
+
[
|
649 |
+
0.30564725399017334,
|
650 |
+
0.3196573853492737,
|
651 |
+
0.49566876888275146
|
652 |
+
],
|
653 |
+
[
|
654 |
+
0.09010817855596542,
|
655 |
+
0.40919071435928345,
|
656 |
+
0.37821680307388306
|
657 |
+
],
|
658 |
+
[
|
659 |
+
0.47009795904159546,
|
660 |
+
0.35186442732810974,
|
661 |
+
0.5456129908561707
|
662 |
+
],
|
663 |
+
[
|
664 |
+
0.162612184882164,
|
665 |
+
0.10159525275230408,
|
666 |
+
0.4674549400806427
|
667 |
+
],
|
668 |
+
[
|
669 |
+
0.09660515934228897,
|
670 |
+
0.12465592473745346,
|
671 |
+
0.06865537911653519
|
672 |
+
],
|
673 |
+
[
|
674 |
+
0.18723157048225403,
|
675 |
+
0.3670336604118347,
|
676 |
+
0.2650076448917389
|
677 |
+
],
|
678 |
+
[
|
679 |
+
0.49288445711135864,
|
680 |
+
0.09083911031484604,
|
681 |
+
0.09884956479072571
|
682 |
+
],
|
683 |
+
[
|
684 |
+
0.3524926006793976,
|
685 |
+
0.4623507559299469,
|
686 |
+
0.23764653503894806
|
687 |
+
],
|
688 |
+
[
|
689 |
+
0.41735246777534485,
|
690 |
+
0.2218008041381836,
|
691 |
+
0.17354455590248108
|
692 |
+
],
|
693 |
+
[
|
694 |
+
0.47854217886924744,
|
695 |
+
0.3222688138484955,
|
696 |
+
0.4959508180618286
|
697 |
+
],
|
698 |
+
[
|
699 |
+
0.10266521573066711,
|
700 |
+
0.30623453855514526,
|
701 |
+
0.09199462831020355
|
702 |
+
],
|
703 |
+
[
|
704 |
+
0.08731709420681,
|
705 |
+
0.4694647789001465,
|
706 |
+
0.5055084824562073
|
707 |
+
],
|
708 |
+
[
|
709 |
+
0.23517507314682007,
|
710 |
+
0.3065198063850403,
|
711 |
+
0.05544609948992729
|
712 |
+
],
|
713 |
+
[
|
714 |
+
0.09088436514139175,
|
715 |
+
0.19915884733200073,
|
716 |
+
0.07785775512456894
|
717 |
+
],
|
718 |
+
[
|
719 |
+
0.18251122534275055,
|
720 |
+
0.29923370480537415,
|
721 |
+
0.4866146147251129
|
722 |
+
],
|
723 |
+
[
|
724 |
+
0.10572174191474915,
|
725 |
+
0.47605466842651367,
|
726 |
+
0.5299978256225586
|
727 |
+
],
|
728 |
+
[
|
729 |
+
0.3730151653289795,
|
730 |
+
0.47881704568862915,
|
731 |
+
0.20123206079006195
|
732 |
+
],
|
733 |
+
[
|
734 |
+
0.4724118709564209,
|
735 |
+
0.49485599994659424,
|
736 |
+
0.49308905005455017
|
737 |
+
],
|
738 |
+
[
|
739 |
+
0.2028992474079132,
|
740 |
+
0.2132064700126648,
|
741 |
+
0.22739055752754211
|
742 |
+
],
|
743 |
+
[
|
744 |
+
0.3550381064414978,
|
745 |
+
0.2551001310348511,
|
746 |
+
0.3830864429473877
|
747 |
+
],
|
748 |
+
[
|
749 |
+
0.4802624583244324,
|
750 |
+
0.4192729890346527,
|
751 |
+
0.4569671154022217
|
752 |
+
],
|
753 |
+
[
|
754 |
+
0.39423421025276184,
|
755 |
+
0.46593964099884033,
|
756 |
+
0.1289444863796234
|
757 |
+
],
|
758 |
+
[
|
759 |
+
0.45385563373565674,
|
760 |
+
0.09339053183794022,
|
761 |
+
0.3881056606769562
|
762 |
+
],
|
763 |
+
[
|
764 |
+
0.5068311095237732,
|
765 |
+
0.29923370480537415,
|
766 |
+
0.10691635310649872
|
767 |
+
],
|
768 |
+
[
|
769 |
+
0.09883947670459747,
|
770 |
+
0.06944058835506439,
|
771 |
+
0.5056400895118713
|
772 |
+
],
|
773 |
+
[
|
774 |
+
0.352832168340683,
|
775 |
+
0.40964841842651367,
|
776 |
+
0.1477414220571518
|
777 |
+
],
|
778 |
+
[
|
779 |
+
0.5820969939231873,
|
780 |
+
0.46638599038124084,
|
781 |
+
0.4030589163303375
|
782 |
+
],
|
783 |
+
[
|
784 |
+
0.43042948842048645,
|
785 |
+
0.24972397089004517,
|
786 |
+
0.4475313425064087
|
787 |
+
],
|
788 |
+
[
|
789 |
+
0.1091168001294136,
|
790 |
+
0.28223493695259094,
|
791 |
+
0.17356599867343903
|
792 |
+
],
|
793 |
+
[
|
794 |
+
0.1386835128068924,
|
795 |
+
0.3159557282924652,
|
796 |
+
0.43098369240760803
|
797 |
+
],
|
798 |
+
[
|
799 |
+
0.5068760514259338,
|
800 |
+
0.537592887878418,
|
801 |
+
0.4652017652988434
|
802 |
+
],
|
803 |
+
[
|
804 |
+
0.5192381739616394,
|
805 |
+
0.09259963035583496,
|
806 |
+
0.5365279316902161
|
807 |
+
],
|
808 |
+
[
|
809 |
+
0.4348467290401459,
|
810 |
+
0.29923370480537415,
|
811 |
+
0.057594649493694305
|
812 |
+
],
|
813 |
+
[
|
814 |
+
0.5597925782203674,
|
815 |
+
0.35377395153045654,
|
816 |
+
0.3289499282836914
|
817 |
+
],
|
818 |
+
[
|
819 |
+
0.38250571489334106,
|
820 |
+
0.45372092723846436,
|
821 |
+
0.4277156889438629
|
822 |
+
],
|
823 |
+
[
|
824 |
+
0.5085664987564087,
|
825 |
+
0.5573768615722656,
|
826 |
+
0.39853039383888245
|
827 |
+
],
|
828 |
+
[
|
829 |
+
0.2629241347312927,
|
830 |
+
0.3252616822719574,
|
831 |
+
0.48582205176353455
|
832 |
+
],
|
833 |
+
[
|
834 |
+
0.10790055990219116,
|
835 |
+
0.023456986993551254,
|
836 |
+
0.5011544823646545
|
837 |
+
],
|
838 |
+
[
|
839 |
+
0.5336201786994934,
|
840 |
+
0.1303187757730484,
|
841 |
+
0.32369309663772583
|
842 |
+
],
|
843 |
+
[
|
844 |
+
0.518532395362854,
|
845 |
+
0.1121792271733284,
|
846 |
+
0.328836053609848
|
847 |
+
],
|
848 |
+
[
|
849 |
+
0.19930943846702576,
|
850 |
+
0.20736496150493622,
|
851 |
+
0.4669167995452881
|
852 |
+
],
|
853 |
+
[
|
854 |
+
0.5300899744033813,
|
855 |
+
0.29923370480537415,
|
856 |
+
0.05071401223540306
|
857 |
+
],
|
858 |
+
[
|
859 |
+
0.5105882287025452,
|
860 |
+
0.2925345301628113,
|
861 |
+
0.5228399038314819
|
862 |
+
],
|
863 |
+
[
|
864 |
+
0.3276820480823517,
|
865 |
+
0.24914789199829102,
|
866 |
+
0.35004571080207825
|
867 |
+
],
|
868 |
+
[
|
869 |
+
0.48565033078193665,
|
870 |
+
0.33661529421806335,
|
871 |
+
0.47143107652664185
|
872 |
+
],
|
873 |
+
[
|
874 |
+
0.37147772312164307,
|
875 |
+
0.5003097653388977,
|
876 |
+
0.13270977139472961
|
877 |
+
],
|
878 |
+
[
|
879 |
+
0.5216526389122009,
|
880 |
+
0.48277392983436584,
|
881 |
+
0.07973511517047882
|
882 |
+
],
|
883 |
+
[
|
884 |
+
0.21449095010757446,
|
885 |
+
0.12620313465595245,
|
886 |
+
0.2667386531829834
|
887 |
+
],
|
888 |
+
[
|
889 |
+
0.4579208791255951,
|
890 |
+
0.14321710169315338,
|
891 |
+
0.06148596107959747
|
892 |
+
],
|
893 |
+
[
|
894 |
+
0.4731524586677551,
|
895 |
+
0.17464078962802887,
|
896 |
+
0.06310705095529556
|
897 |
+
],
|
898 |
+
[
|
899 |
+
0.23052988946437836,
|
900 |
+
0.29923370480537415,
|
901 |
+
0.510108232498169
|
902 |
+
],
|
903 |
+
[
|
904 |
+
0.1353495568037033,
|
905 |
+
0.5124863386154175,
|
906 |
+
0.5183387994766235
|
907 |
+
],
|
908 |
+
[
|
909 |
+
0.2910447418689728,
|
910 |
+
0.08562562614679337,
|
911 |
+
0.08877898752689362
|
912 |
+
],
|
913 |
+
[
|
914 |
+
0.3357255160808563,
|
915 |
+
0.01985875889658928,
|
916 |
+
0.16783209145069122
|
917 |
+
],
|
918 |
+
[
|
919 |
+
0.18995055556297302,
|
920 |
+
0.46446508169174194,
|
921 |
+
0.3787825405597687
|
922 |
+
],
|
923 |
+
[
|
924 |
+
0.534010648727417,
|
925 |
+
0.4986063838005066,
|
926 |
+
0.24415051937103271
|
927 |
+
],
|
928 |
+
[
|
929 |
+
0.3214907646179199,
|
930 |
+
0.21466046571731567,
|
931 |
+
0.2880139648914337
|
932 |
+
],
|
933 |
+
[
|
934 |
+
0.3890703618526459,
|
935 |
+
0.05805783346295357,
|
936 |
+
0.09035345166921616
|
937 |
+
],
|
938 |
+
[
|
939 |
+
0.09757407009601593,
|
940 |
+
0.49493804574012756,
|
941 |
+
0.49909377098083496
|
942 |
+
],
|
943 |
+
[
|
944 |
+
0.19078117609024048,
|
945 |
+
0.29923370480537415,
|
946 |
+
0.14100411534309387
|
947 |
+
],
|
948 |
+
[
|
949 |
+
0.15969878435134888,
|
950 |
+
0.16440604627132416,
|
951 |
+
0.15606528520584106
|
952 |
+
],
|
953 |
+
[
|
954 |
+
0.1717253476381302,
|
955 |
+
0.512469470500946,
|
956 |
+
0.31309831142425537
|
957 |
+
],
|
958 |
+
[
|
959 |
+
0.33371666073799133,
|
960 |
+
0.17783179879188538,
|
961 |
+
0.46897128224372864
|
962 |
+
],
|
963 |
+
[
|
964 |
+
0.5191593170166016,
|
965 |
+
0.4730057120323181,
|
966 |
+
0.5315001606941223
|
967 |
+
],
|
968 |
+
[
|
969 |
+
0.45993658900260925,
|
970 |
+
0.13571709394454956,
|
971 |
+
0.3396763205528259
|
972 |
+
],
|
973 |
+
[
|
974 |
+
0.2905575633049011,
|
975 |
+
0.36112692952156067,
|
976 |
+
0.26040688157081604
|
977 |
+
],
|
978 |
+
[
|
979 |
+
0.1273851990699768,
|
980 |
+
0.228861004114151,
|
981 |
+
0.2306375652551651
|
982 |
+
],
|
983 |
+
[
|
984 |
+
0.3950050175189972,
|
985 |
+
0.4847060441970825,
|
986 |
+
0.49440380930900574
|
987 |
+
],
|
988 |
+
[
|
989 |
+
0.2743946611881256,
|
990 |
+
0.29923370480537415,
|
991 |
+
0.2916116416454315
|
992 |
+
],
|
993 |
+
[
|
994 |
+
0.33875811100006104,
|
995 |
+
0.12597376108169556,
|
996 |
+
0.28650468587875366
|
997 |
+
],
|
998 |
+
[
|
999 |
+
0.331350713968277,
|
1000 |
+
0.15663138031959534,
|
1001 |
+
0.31230947375297546
|
1002 |
+
],
|
1003 |
+
[
|
1004 |
+
0.47922152280807495,
|
1005 |
+
0.20223678648471832,
|
1006 |
+
0.4985326826572418
|
1007 |
+
],
|
1008 |
+
[
|
1009 |
+
0.09411115199327469,
|
1010 |
+
0.10990307480096817,
|
1011 |
+
0.10064181685447693
|
1012 |
+
],
|
1013 |
+
[
|
1014 |
+
0.4060930609703064,
|
1015 |
+
0.10882768779993057,
|
1016 |
+
0.46024370193481445
|
1017 |
+
],
|
1018 |
+
[
|
1019 |
+
0.09361258149147034,
|
1020 |
+
0.09751991927623749,
|
1021 |
+
0.1396244913339615
|
1022 |
+
],
|
1023 |
+
[
|
1024 |
+
0.1423683911561966,
|
1025 |
+
0.27079346776008606,
|
1026 |
+
0.03294278681278229
|
1027 |
+
],
|
1028 |
+
[
|
1029 |
+
0.4669570028781891,
|
1030 |
+
0.03322674334049225,
|
1031 |
+
0.1372508853673935
|
1032 |
+
],
|
1033 |
+
[
|
1034 |
+
0.3554062247276306,
|
1035 |
+
0.33211812376976013,
|
1036 |
+
0.1725987195968628
|
1037 |
+
],
|
1038 |
+
[
|
1039 |
+
0.3068210482597351,
|
1040 |
+
0.13354963064193726,
|
1041 |
+
0.5721191167831421
|
1042 |
+
],
|
1043 |
+
[
|
1044 |
+
0.3807375133037567,
|
1045 |
+
0.22847671806812286,
|
1046 |
+
0.33199241757392883
|
1047 |
+
],
|
1048 |
+
[
|
1049 |
+
0.26810795068740845,
|
1050 |
+
0.15397001802921295,
|
1051 |
+
0.28484871983528137
|
1052 |
+
],
|
1053 |
+
[
|
1054 |
+
0.3794940710067749,
|
1055 |
+
0.11301714926958084,
|
1056 |
+
0.2054196447134018
|
1057 |
+
],
|
1058 |
+
[
|
1059 |
+
0.44565343856811523,
|
1060 |
+
0.10809874534606934,
|
1061 |
+
0.5133920907974243
|
1062 |
+
],
|
1063 |
+
[
|
1064 |
+
0.4692825376987457,
|
1065 |
+
0.3971514403820038,
|
1066 |
+
0.4755999743938446
|
1067 |
+
],
|
1068 |
+
[
|
1069 |
+
0.39292535185813904,
|
1070 |
+
0.09397334605455399,
|
1071 |
+
0.06860191375017166
|
1072 |
+
],
|
1073 |
+
[
|
1074 |
+
0.4834848940372467,
|
1075 |
+
0.09435981512069702,
|
1076 |
+
0.17222602665424347
|
1077 |
+
],
|
1078 |
+
[
|
1079 |
+
0.09720193594694138,
|
1080 |
+
0.29923370480537415,
|
1081 |
+
0.510779082775116
|
1082 |
+
],
|
1083 |
+
[
|
1084 |
+
0.10717114061117172,
|
1085 |
+
0.4595472514629364,
|
1086 |
+
0.3745758533477783
|
1087 |
+
],
|
1088 |
+
[
|
1089 |
+
0.1838539093732834,
|
1090 |
+
0.21227142214775085,
|
1091 |
+
0.42954763770103455
|
1092 |
+
],
|
1093 |
+
[
|
1094 |
+
0.36779552698135376,
|
1095 |
+
0.21453768014907837,
|
1096 |
+
0.09934128820896149
|
1097 |
+
],
|
1098 |
+
[
|
1099 |
+
0.3316192030906677,
|
1100 |
+
0.3886072635650635,
|
1101 |
+
0.07977966219186783
|
1102 |
+
],
|
1103 |
+
[
|
1104 |
+
0.5129786729812622,
|
1105 |
+
0.4144686460494995,
|
1106 |
+
0.2253073751926422
|
1107 |
+
],
|
1108 |
+
[
|
1109 |
+
0.07541624456644058,
|
1110 |
+
0.06450625509023666,
|
1111 |
+
0.3642188012599945
|
1112 |
+
],
|
1113 |
+
[
|
1114 |
+
0.5166736841201782,
|
1115 |
+
0.24363957345485687,
|
1116 |
+
0.5150353908538818
|
1117 |
+
],
|
1118 |
+
[
|
1119 |
+
0.498140424489975,
|
1120 |
+
0.41894200444221497,
|
1121 |
+
0.3856343924999237
|
1122 |
+
],
|
1123 |
+
[
|
1124 |
+
0.24936480820178986,
|
1125 |
+
0.47356557846069336,
|
1126 |
+
0.5537445545196533
|
1127 |
+
],
|
1128 |
+
[
|
1129 |
+
0.4409908354282379,
|
1130 |
+
0.28117305040359497,
|
1131 |
+
0.39970213174819946
|
1132 |
+
],
|
1133 |
+
[
|
1134 |
+
0.5267730951309204,
|
1135 |
+
0.1018093004822731,
|
1136 |
+
0.03787040337920189
|
1137 |
+
],
|
1138 |
+
[
|
1139 |
+
0.3677961528301239,
|
1140 |
+
0.0394858680665493,
|
1141 |
+
0.0650714784860611
|
1142 |
+
],
|
1143 |
+
[
|
1144 |
+
0.5265408754348755,
|
1145 |
+
0.13327135145664215,
|
1146 |
+
0.2464272528886795
|
1147 |
+
],
|
1148 |
+
[
|
1149 |
+
0.28510764241218567,
|
1150 |
+
0.10290946811437607,
|
1151 |
+
0.20700719952583313
|
1152 |
+
],
|
1153 |
+
[
|
1154 |
+
0.12357800453901291,
|
1155 |
+
0.15474779903888702,
|
1156 |
+
0.28230687975883484
|
1157 |
+
],
|
1158 |
+
[
|
1159 |
+
0.5179312825202942,
|
1160 |
+
0.4698978364467621,
|
1161 |
+
0.06783566623926163
|
1162 |
+
],
|
1163 |
+
[
|
1164 |
+
0.5200085639953613,
|
1165 |
+
0.3792725205421448,
|
1166 |
+
0.3718236982822418
|
1167 |
+
],
|
1168 |
+
[
|
1169 |
+
0.3375779986381531,
|
1170 |
+
0.5374161005020142,
|
1171 |
+
0.21857187151908875
|
1172 |
+
],
|
1173 |
+
[
|
1174 |
+
0.09756416082382202,
|
1175 |
+
0.34533458948135376,
|
1176 |
+
0.5081673860549927
|
1177 |
+
],
|
1178 |
+
[
|
1179 |
+
0.28710633516311646,
|
1180 |
+
0.07219579070806503,
|
1181 |
+
0.12115068733692169
|
1182 |
+
],
|
1183 |
+
[
|
1184 |
+
0.2413293570280075,
|
1185 |
+
0.4114782512187958,
|
1186 |
+
0.3004918694496155
|
1187 |
+
],
|
1188 |
+
[
|
1189 |
+
0.5400509834289551,
|
1190 |
+
0.02599618397653103,
|
1191 |
+
0.22999224066734314
|
1192 |
+
],
|
1193 |
+
[
|
1194 |
+
0.4863761365413666,
|
1195 |
+
0.09944410622119904,
|
1196 |
+
0.4682898223400116
|
1197 |
+
],
|
1198 |
+
[
|
1199 |
+
0.04367741569876671,
|
1200 |
+
0.3792931139469147,
|
1201 |
+
0.4213159382343292
|
1202 |
+
],
|
1203 |
+
[
|
1204 |
+
0.34282636642456055,
|
1205 |
+
0.04855912923812866,
|
1206 |
+
0.34633585810661316
|
1207 |
+
],
|
1208 |
+
[
|
1209 |
+
0.5270025730133057,
|
1210 |
+
0.5420955419540405,
|
1211 |
+
0.13136616349220276
|
1212 |
+
],
|
1213 |
+
[
|
1214 |
+
0.19974078238010406,
|
1215 |
+
0.3719595968723297,
|
1216 |
+
0.5812338590621948
|
1217 |
+
],
|
1218 |
+
[
|
1219 |
+
0.3951050937175751,
|
1220 |
+
0.520481526851654,
|
1221 |
+
0.43944546580314636
|
1222 |
+
],
|
1223 |
+
[
|
1224 |
+
0.07492329180240631,
|
1225 |
+
0.00783818680793047,
|
1226 |
+
0.19456180930137634
|
1227 |
+
],
|
1228 |
+
[
|
1229 |
+
0.06577272713184357,
|
1230 |
+
0.04675120860338211,
|
1231 |
+
0.06137834116816521
|
1232 |
+
],
|
1233 |
+
[
|
1234 |
+
0.059974879026412964,
|
1235 |
+
0.04614439234137535,
|
1236 |
+
0.30091536045074463
|
1237 |
+
],
|
1238 |
+
[
|
1239 |
+
0.503949761390686,
|
1240 |
+
0.10325167328119278,
|
1241 |
+
0.5292012691497803
|
1242 |
+
],
|
1243 |
+
[
|
1244 |
+
0.3045593798160553,
|
1245 |
+
0.04624379798769951,
|
1246 |
+
0.5069072842597961
|
1247 |
+
],
|
1248 |
+
[
|
1249 |
+
0.4598368704319,
|
1250 |
+
0.10093829780817032,
|
1251 |
+
0.08005744218826294
|
1252 |
+
],
|
1253 |
+
[
|
1254 |
+
0.5855668187141418,
|
1255 |
+
0.5845062136650085,
|
1256 |
+
0.5233513712882996
|
1257 |
+
],
|
1258 |
+
[
|
1259 |
+
0.0390322208404541,
|
1260 |
+
0.29923370480537415,
|
1261 |
+
0.49177414178848267
|
1262 |
+
],
|
1263 |
+
[
|
1264 |
+
0.4870739281177521,
|
1265 |
+
0.4436861276626587,
|
1266 |
+
0.09054065495729446
|
1267 |
+
],
|
1268 |
+
[
|
1269 |
+
0.1031922772526741,
|
1270 |
+
0.08936416357755661,
|
1271 |
+
0.278532475233078
|
1272 |
+
],
|
1273 |
+
[
|
1274 |
+
0.09785640984773636,
|
1275 |
+
0.10036541521549225,
|
1276 |
+
0.07195070385932922
|
1277 |
+
],
|
1278 |
+
[
|
1279 |
+
0.19014137983322144,
|
1280 |
+
0.08649999648332596,
|
1281 |
+
0.184501051902771
|
1282 |
+
],
|
1283 |
+
[
|
1284 |
+
0.5291661620140076,
|
1285 |
+
0.3851234018802643,
|
1286 |
+
0.09130331128835678
|
1287 |
+
],
|
1288 |
+
[
|
1289 |
+
0.5385644435882568,
|
1290 |
+
0.1805342584848404,
|
1291 |
+
0.1751730889081955
|
1292 |
+
],
|
1293 |
+
[
|
1294 |
+
0.4074404835700989,
|
1295 |
+
0.5299202799797058,
|
1296 |
+
0.10594134032726288
|
1297 |
+
],
|
1298 |
+
[
|
1299 |
+
0.5955472588539124,
|
1300 |
+
0.3051132559776306,
|
1301 |
+
0.5478314161300659
|
1302 |
+
],
|
1303 |
+
[
|
1304 |
+
0.05961701646447182,
|
1305 |
+
0.4008893370628357,
|
1306 |
+
0.5330079793930054
|
1307 |
+
],
|
1308 |
+
[
|
1309 |
+
0.11700171232223511,
|
1310 |
+
0.145936518907547,
|
1311 |
+
0.3546701967716217
|
1312 |
+
],
|
1313 |
+
[
|
1314 |
+
0.5655185580253601,
|
1315 |
+
-0.016938162967562675,
|
1316 |
+
0.008070452138781548
|
1317 |
+
],
|
1318 |
+
[
|
1319 |
+
0.4683241844177246,
|
1320 |
+
0.03576419875025749,
|
1321 |
+
0.3765697777271271
|
1322 |
+
],
|
1323 |
+
[
|
1324 |
+
0.16034618020057678,
|
1325 |
+
0.04000109061598778,
|
1326 |
+
0.45461782813072205
|
1327 |
+
],
|
1328 |
+
[
|
1329 |
+
0.47220855951309204,
|
1330 |
+
0.08483608067035675,
|
1331 |
+
0.5206044316291809
|
1332 |
+
],
|
1333 |
+
[
|
1334 |
+
0.4109242856502533,
|
1335 |
+
0.17806819081306458,
|
1336 |
+
0.09369169175624847
|
1337 |
+
],
|
1338 |
+
[
|
1339 |
+
0.22748956084251404,
|
1340 |
+
0.05649997293949127,
|
1341 |
+
0.33820465207099915
|
1342 |
+
],
|
1343 |
+
[
|
1344 |
+
0.48838844895362854,
|
1345 |
+
0.42935165762901306,
|
1346 |
+
0.4283795952796936
|
1347 |
+
],
|
1348 |
+
[
|
1349 |
+
0.015660583972930908,
|
1350 |
+
0.29923370480537415,
|
1351 |
+
0.6172947287559509
|
1352 |
+
],
|
1353 |
+
[
|
1354 |
+
0.28337985277175903,
|
1355 |
+
0.039204973727464676,
|
1356 |
+
0.4324447512626648
|
1357 |
+
],
|
1358 |
+
[
|
1359 |
+
0.586188793182373,
|
1360 |
+
0.5959473252296448,
|
1361 |
+
0.09735152870416641
|
1362 |
+
],
|
1363 |
+
[
|
1364 |
+
0.14806878566741943,
|
1365 |
+
0.5574384331703186,
|
1366 |
+
0.09092339128255844
|
1367 |
+
],
|
1368 |
+
[
|
1369 |
+
0.5625902414321899,
|
1370 |
+
0.30627891421318054,
|
1371 |
+
0.4743388891220093
|
1372 |
+
],
|
1373 |
+
[
|
1374 |
+
0.5635393857955933,
|
1375 |
+
0.4067699909210205,
|
1376 |
+
0.417013019323349
|
1377 |
+
],
|
1378 |
+
[
|
1379 |
+
0.554167628288269,
|
1380 |
+
0.3569263517856598,
|
1381 |
+
0.3360467255115509
|
1382 |
+
],
|
1383 |
+
[
|
1384 |
+
0.056985314935445786,
|
1385 |
+
0.33760568499565125,
|
1386 |
+
0.11646073311567307
|
1387 |
+
],
|
1388 |
+
[
|
1389 |
+
0.5913213491439819,
|
1390 |
+
0.3084571361541748,
|
1391 |
+
0.3540549576282501
|
1392 |
+
],
|
1393 |
+
[
|
1394 |
+
0.07675735652446747,
|
1395 |
+
0.13443472981452942,
|
1396 |
+
0.548639178276062
|
1397 |
+
],
|
1398 |
+
[
|
1399 |
+
0.032978132367134094,
|
1400 |
+
0.14077959954738617,
|
1401 |
+
0.5724940896034241
|
1402 |
+
],
|
1403 |
+
[
|
1404 |
+
0.08972731232643127,
|
1405 |
+
0.12107591331005096,
|
1406 |
+
0.17119447886943817
|
1407 |
+
],
|
1408 |
+
[
|
1409 |
+
0.09382423758506775,
|
1410 |
+
0.24321328103542328,
|
1411 |
+
0.4423363506793976
|
1412 |
+
],
|
1413 |
+
[
|
1414 |
+
0.29118674993515015,
|
1415 |
+
0.16025410592556,
|
1416 |
+
0.41708433628082275
|
1417 |
+
],
|
1418 |
+
[
|
1419 |
+
0.5054580569267273,
|
1420 |
+
0.44674912095069885,
|
1421 |
+
0.43730923533439636
|
1422 |
+
],
|
1423 |
+
[
|
1424 |
+
0.14315062761306763,
|
1425 |
+
0.3252270221710205,
|
1426 |
+
0.5201801061630249
|
1427 |
+
],
|
1428 |
+
[
|
1429 |
+
0.33933597803115845,
|
1430 |
+
0.1201607808470726,
|
1431 |
+
0.340225487947464
|
1432 |
+
],
|
1433 |
+
[
|
1434 |
+
0.17847172915935516,
|
1435 |
+
0.4916016161441803,
|
1436 |
+
0.5548601746559143
|
1437 |
+
],
|
1438 |
+
[
|
1439 |
+
0.43462249636650085,
|
1440 |
+
0.29923370480537415,
|
1441 |
+
0.005099068395793438
|
1442 |
+
],
|
1443 |
+
[
|
1444 |
+
0.22771261632442474,
|
1445 |
+
0.29923370480537415,
|
1446 |
+
0.07144622504711151
|
1447 |
+
],
|
1448 |
+
[
|
1449 |
+
0.5556842088699341,
|
1450 |
+
0.5212759375572205,
|
1451 |
+
0.04692516848444939
|
1452 |
+
],
|
1453 |
+
[
|
1454 |
+
0.0067663975059986115,
|
1455 |
+
0.584466278553009,
|
1456 |
+
0.04930794984102249
|
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_20250616_121108.log
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
2025-06-16 12:11:08 - experiment_save_merged_model - INFO - Starting merged model save process
|
2 |
+
2025-06-16 12:11:08 - experiment_save_merged_model - INFO - Arguments: {'lambdas_path': '/work/gj26/b20042/LLM-AdaMerge/outputs/mistral-7b/parameter-wise/shannon-entropy-loss/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/parameter-wise-shannonentropy', 'model_name': 'merged-model', 'push_to_hub': False, 'hub_repo_id': 'lejelly/parameter-wise-llm-adamerge-shannonentropy-mistral-7b-instrcut-math-code', 'private': False, 'device': 'cuda', 'debug': False}
|
3 |
+
2025-06-16 12:11:08 - experiment_save_merged_model - INFO - Loading lambdas from /work/gj26/b20042/LLM-AdaMerge/outputs/mistral-7b/parameter-wise/shannon-entropy-loss/llm_adamerge_parameterwise_lambdas.json
|
4 |
+
2025-06-16 12:11:08 - experiment_save_merged_model - INFO - Auto-detected parameter-wise merge from JSON structure
|
5 |
+
2025-06-16 12:11:08 - experiment_save_merged_model - INFO - Merge type: parameter_wise
|
6 |
+
2025-06-16 12:11:09 - experiment_save_merged_model - INFO - [Initial] Memory Usage:
|
7 |
+
2025-06-16 12:11:09 - experiment_save_merged_model - INFO - Process: 0.37 GB (0.2%)
|
8 |
+
2025-06-16 12:11:09 - experiment_save_merged_model - INFO - System: 9.64 GB / 212.52 GB (9.2%)
|
9 |
+
2025-06-16 12:11:09 - experiment_save_merged_model - INFO - Available: 193.06 GB
|
10 |
+
2025-06-16 12:11:09 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
11 |
+
2025-06-16 12:11:09 - experiment_save_merged_model - INFO - Loading models
|
12 |
+
2025-06-16 12:11:27 - experiment_save_merged_model - INFO - [After loading models] Memory Usage:
|
13 |
+
2025-06-16 12:11:27 - experiment_save_merged_model - INFO - Process: 41.58 GB (19.6%)
|
14 |
+
2025-06-16 12:11:27 - experiment_save_merged_model - INFO - System: 49.90 GB / 212.52 GB (31.4%)
|
15 |
+
2025-06-16 12:11:27 - experiment_save_merged_model - INFO - Available: 145.79 GB
|
16 |
+
2025-06-16 12:11:27 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
17 |
+
2025-06-16 12:11:27 - experiment_save_merged_model - INFO - Initializing parameter_wise AdaMerge
|
18 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Loading learned lambdas
|
19 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Deleting original models to free memory (task vectors already computed)
|
20 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - [Before deleting models] Memory Usage:
|
21 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Process: 95.79 GB (45.1%)
|
22 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - System: 90.65 GB / 212.52 GB (50.6%)
|
23 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Available: 104.98 GB
|
24 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
25 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Clearing model_loader references
|
26 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Deleting model variables
|
27 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Running garbage collection
|
28 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - [After deleting models and GC] Memory Usage:
|
29 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Process: 56.44 GB (26.6%)
|
30 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - System: 65.00 GB / 212.52 GB (38.5%)
|
31 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Available: 130.63 GB
|
32 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
33 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - [After loading lambdas] Memory Usage:
|
34 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Process: 56.44 GB (26.6%)
|
35 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - System: 65.00 GB / 212.52 GB (38.5%)
|
36 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Available: 130.63 GB
|
37 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
38 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Creating merged model with learned lambdas
|
39 |
+
2025-06-16 12:12:42 - experiment_save_merged_model - INFO - Using merge_models_for_save() for parameter-wise merge
|
40 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - [After merging models] Memory Usage:
|
41 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - Process: 58.21 GB (27.4%)
|
42 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - System: 93.88 GB / 212.52 GB (48.9%)
|
43 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - Available: 108.62 GB
|
44 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - GPU 0: Allocated: 13.49 GB, Reserved: 27.23 GB, Total: 94.50 GB
|
45 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - Freeing memory from AdaMerge object (task vectors and base params no longer needed)
|
46 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - Deleting task vectors
|
47 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - Deleting base params
|
48 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - Deleting functional model
|
49 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - [After freeing AdaMerge memory] Memory Usage:
|
50 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - Process: 6.21 GB (2.9%)
|
51 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - System: 27.91 GB / 212.52 GB (17.8%)
|
52 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - Available: 174.60 GB
|
53 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - GPU 0: Allocated: 13.49 GB, Reserved: 13.62 GB, Total: 94.50 GB
|
54 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - Saving merged model to /work/gj26/b20042/LLM-AdaMerge/mergekit/outputs/mistral-7b/llmadamerge/parameter-wise-shannonentropy
|
55 |
+
2025-06-16 12:14:36 - experiment_save_merged_model - INFO - Moving parameter-wise merged model to CPU for saving
|
56 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - Successfully saved 3 safetensors files:
|
57 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - - model-00001-of-00003.safetensors (4714.17 MB)
|
58 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - - model-00003-of-00003.safetensors (4330.17 MB)
|
59 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - - model-00002-of-00003.safetensors (4768.20 MB)
|
60 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - [After saving model] Memory Usage:
|
61 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - Process: 15.27 GB (7.2%)
|
62 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - System: 23.62 GB / 212.52 GB (19.0%)
|
63 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - Available: 172.13 GB
|
64 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
65 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - Saving tokenizer
|
66 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - Copied lambdas file to /work/gj26/b20042/LLM-AdaMerge/mergekit/outputs/mistral-7b/llmadamerge/parameter-wise-shannonentropy/learned_lambdas.json
|
67 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - Creating model card
|
68 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - Cleaning up models
|
69 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - [After cleanup] Memory Usage:
|
70 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - Process: 6.43 GB (3.0%)
|
71 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - System: 14.80 GB / 212.52 GB (14.9%)
|
72 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - Available: 180.95 GB
|
73 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - GPU 0: Allocated: 0.00 GB, Reserved: 0.00 GB, Total: 94.50 GB
|
74 |
+
2025-06-16 12:15:09 - experiment_save_merged_model - INFO - Model saved successfully to /work/gj26/b20042/LLM-AdaMerge/mergekit/outputs/mistral-7b/llmadamerge/parameter-wise-shannonentropy
|
model-00001-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a7093ea5969e989f3d511d9eeeff29ae8a0453152f083ffa567f68fe4813faf7
|
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:c937be68341fbd5de920e5e8f72b352f50a3f24304fa776f6046f94bd86d8d3a
|
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:4bd501e120489123c4a6ed1ae1d67c951cd5f702e948f392dfe898bbaef9a43f
|
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 |
+
}
|