Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +83 -3
- all_results.json +8 -0
- chat_template.jinja +33 -0
- config.json +106 -0
- example_usage.py +102 -0
- generation_config.json +12 -0
- glm4v_tisr_full_inference.yaml +15 -0
- model-00001-of-00005.safetensors +3 -0
- model-00002-of-00005.safetensors +3 -0
- model-00003-of-00005.safetensors +3 -0
- model-00004-of-00005.safetensors +3 -0
- model-00005-of-00005.safetensors +3 -0
- model.safetensors.index.json +712 -0
- preprocessor_config.json +35 -0
- requirements.txt +9 -0
- special_tokens_map.json +41 -0
- tokenizer.json +3 -0
- tokenizer_config.json +222 -0
- train_results.json +8 -0
- trainer_state.json +2164 -0
- video_preprocessor_config.json +42 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,3 +1,83 @@
|
|
| 1 |
-
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# TIGeR: Fine-tuned Spatial Reasoning Model
|
| 2 |
+
|
| 3 |
+
## Usage
|
| 4 |
+
|
| 5 |
+
### Environment Requirements
|
| 6 |
+
|
| 7 |
+
```bash
|
| 8 |
+
pip install torch torchvision transformers
|
| 9 |
+
pip install pillow opencv-python
|
| 10 |
+
pip install llamafactory
|
| 11 |
+
```
|
| 12 |
+
|
| 13 |
+
### Configuration
|
| 14 |
+
|
| 15 |
+
Before using the model, you need to update the configuration file `glm4v_tisr_full_inference.yaml`:
|
| 16 |
+
|
| 17 |
+
1. Update `media_dir` to your image directory:
|
| 18 |
+
```yaml
|
| 19 |
+
media_dir: /path/to/your/images
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
2. Update the image path in `example_usage.py`:
|
| 23 |
+
```python
|
| 24 |
+
image_paths = ["/path/to/your/image.jpg"] # Replace with actual image path
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
### Basic Usage
|
| 28 |
+
|
| 29 |
+
```python
|
| 30 |
+
import sys
|
| 31 |
+
from llamafactory.chat.chat_model import ChatModel
|
| 32 |
+
|
| 33 |
+
# Load model using LLaMA-Factory ChatModel
|
| 34 |
+
config_file = "glm4v_tisr_full_inference.yaml"
|
| 35 |
+
|
| 36 |
+
# Simulate command line arguments
|
| 37 |
+
original_argv = sys.argv.copy()
|
| 38 |
+
sys.argv = [sys.argv[0], config_file]
|
| 39 |
+
|
| 40 |
+
try:
|
| 41 |
+
chat_model = ChatModel()
|
| 42 |
+
finally:
|
| 43 |
+
# Restore original command line arguments
|
| 44 |
+
sys.argv = original_argv
|
| 45 |
+
|
| 46 |
+
# Prepare input
|
| 47 |
+
image_paths = ["/path/to/your/image.jpg"] # Replace with actual image path
|
| 48 |
+
question = "Two points are circled on the image, labeled by A and B beside each circle. Which point is closer to the camera? Select from the following choices.\n(A) A is closer\n(B) B is closer"
|
| 49 |
+
|
| 50 |
+
# Prepare messages
|
| 51 |
+
messages = [
|
| 52 |
+
{
|
| 53 |
+
"role": "user",
|
| 54 |
+
"content": question
|
| 55 |
+
}
|
| 56 |
+
]
|
| 57 |
+
|
| 58 |
+
# Get model response
|
| 59 |
+
response = chat_model.chat(messages, images=image_paths)
|
| 60 |
+
assistant_texts = []
|
| 61 |
+
|
| 62 |
+
for resp in response:
|
| 63 |
+
try:
|
| 64 |
+
assistant_texts.append(resp.response_text)
|
| 65 |
+
except Exception:
|
| 66 |
+
assistant_texts.append(str(resp))
|
| 67 |
+
|
| 68 |
+
response_text = "\n".join(assistant_texts)
|
| 69 |
+
print(response_text)
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
## Citation
|
| 73 |
+
|
| 74 |
+
If you use this model, please cite:
|
| 75 |
+
|
| 76 |
+
```bibtex
|
| 77 |
+
@misc{2510.07181,
|
| 78 |
+
Author = {Yi Han and Cheng Chi and Enshen Zhou and Shanyu Rong and Jingkun An and Pengwei Wang and Zhongyuan Wang and Lu Sheng and Shanghang Zhang},
|
| 79 |
+
Title = {TIGeR: Tool-Integrated Geometric Reasoning in Vision-Language Models for Robotics},
|
| 80 |
+
Year = {2025},
|
| 81 |
+
Eprint = {arXiv:2510.07181},
|
| 82 |
+
}
|
| 83 |
+
```
|
all_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 2.0,
|
| 3 |
+
"total_flos": 3771710697373696.0,
|
| 4 |
+
"train_loss": 0.06704422599041909,
|
| 5 |
+
"train_runtime": 34253.9666,
|
| 6 |
+
"train_samples_per_second": 17.026,
|
| 7 |
+
"train_steps_per_second": 0.089
|
| 8 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[gMASK]<sop>
|
| 2 |
+
{%- for msg in messages %}
|
| 3 |
+
{%- if msg.role == 'system' %}
|
| 4 |
+
<|system|>
|
| 5 |
+
{{ msg.content }}
|
| 6 |
+
{%- elif msg.role == 'user' %}
|
| 7 |
+
<|user|>{{ '\n' }}
|
| 8 |
+
|
| 9 |
+
{%- if msg.content is string %}
|
| 10 |
+
{{ msg.content }}
|
| 11 |
+
{%- else %}
|
| 12 |
+
{%- for item in msg.content %}
|
| 13 |
+
{%- if item.type == 'video' or 'video' in item %}
|
| 14 |
+
<|begin_of_video|><|video|><|end_of_video|>
|
| 15 |
+
{%- elif item.type == 'image' or 'image' in item %}
|
| 16 |
+
<|begin_of_image|><|image|><|end_of_image|>
|
| 17 |
+
{%- elif item.type == 'text' %}
|
| 18 |
+
{{ item.text }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endfor %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
{%- elif msg.role == 'assistant' %}
|
| 23 |
+
{%- if msg.metadata %}
|
| 24 |
+
<|assistant|>{{ msg.metadata }}
|
| 25 |
+
{{ msg.content }}
|
| 26 |
+
{%- else %}
|
| 27 |
+
<|assistant|>
|
| 28 |
+
{{ msg.content }}
|
| 29 |
+
{%- endif %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- endfor %}
|
| 32 |
+
{% if add_generation_prompt %}<|assistant|>
|
| 33 |
+
{% endif %}
|
config.json
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Glm4vForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": true,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"eos_token_id": [
|
| 8 |
+
151329,
|
| 9 |
+
151336,
|
| 10 |
+
151338,
|
| 11 |
+
151348
|
| 12 |
+
],
|
| 13 |
+
"hidden_act": "silu",
|
| 14 |
+
"hidden_size": 4096,
|
| 15 |
+
"image_end_token_id": 151340,
|
| 16 |
+
"image_start_token_id": 151339,
|
| 17 |
+
"image_token_id": 151343,
|
| 18 |
+
"initializer_range": 0.02,
|
| 19 |
+
"intermediate_size": 13696,
|
| 20 |
+
"max_position_embeddings": 65536,
|
| 21 |
+
"model_type": "glm4v",
|
| 22 |
+
"num_attention_heads": 32,
|
| 23 |
+
"num_hidden_layers": 40,
|
| 24 |
+
"num_key_value_heads": 2,
|
| 25 |
+
"pad_token_id": 151329,
|
| 26 |
+
"partial_rotary_factor": 0.5,
|
| 27 |
+
"rms_norm_eps": 1e-05,
|
| 28 |
+
"rope_scaling": {
|
| 29 |
+
"mrope_section": [
|
| 30 |
+
8,
|
| 31 |
+
12,
|
| 32 |
+
12
|
| 33 |
+
],
|
| 34 |
+
"rope_type": "default",
|
| 35 |
+
"type": "default"
|
| 36 |
+
},
|
| 37 |
+
"rope_theta": 10000.0,
|
| 38 |
+
"text_config": {
|
| 39 |
+
"architectures": [
|
| 40 |
+
"Glm4vForConditionalGeneration"
|
| 41 |
+
],
|
| 42 |
+
"attention_bias": true,
|
| 43 |
+
"attention_dropout": 0.0,
|
| 44 |
+
"eos_token_id": [
|
| 45 |
+
151329,
|
| 46 |
+
151336,
|
| 47 |
+
151338,
|
| 48 |
+
151348
|
| 49 |
+
],
|
| 50 |
+
"hidden_act": "silu",
|
| 51 |
+
"hidden_size": 4096,
|
| 52 |
+
"image_token_id": null,
|
| 53 |
+
"initializer_range": 0.02,
|
| 54 |
+
"intermediate_size": 13696,
|
| 55 |
+
"max_position_embeddings": 65536,
|
| 56 |
+
"model_type": "glm4v_text",
|
| 57 |
+
"num_attention_heads": 32,
|
| 58 |
+
"num_hidden_layers": 40,
|
| 59 |
+
"num_key_value_heads": 2,
|
| 60 |
+
"pad_token_id": 151329,
|
| 61 |
+
"partial_rotary_factor": 0.5,
|
| 62 |
+
"rms_norm_eps": 1e-05,
|
| 63 |
+
"rope_scaling": {
|
| 64 |
+
"mrope_section": [
|
| 65 |
+
8,
|
| 66 |
+
12,
|
| 67 |
+
12
|
| 68 |
+
],
|
| 69 |
+
"rope_type": "default",
|
| 70 |
+
"type": "default"
|
| 71 |
+
},
|
| 72 |
+
"rope_theta": 10000.0,
|
| 73 |
+
"torch_dtype": "float32",
|
| 74 |
+
"use_cache": false,
|
| 75 |
+
"video_token_id": null,
|
| 76 |
+
"vocab_size": 151552
|
| 77 |
+
},
|
| 78 |
+
"tie_word_embeddings": false,
|
| 79 |
+
"torch_dtype": "bfloat16",
|
| 80 |
+
"transformers_version": "4.55.4",
|
| 81 |
+
"use_cache": false,
|
| 82 |
+
"video_end_token_id": 151342,
|
| 83 |
+
"video_start_token_id": 151341,
|
| 84 |
+
"video_token_id": 151344,
|
| 85 |
+
"vision_config": {
|
| 86 |
+
"attention_bias": false,
|
| 87 |
+
"attention_dropout": 0.0,
|
| 88 |
+
"depth": 24,
|
| 89 |
+
"hidden_act": "silu",
|
| 90 |
+
"hidden_dropout_prob": 0.0,
|
| 91 |
+
"hidden_size": 1536,
|
| 92 |
+
"image_size": 336,
|
| 93 |
+
"in_channels": 3,
|
| 94 |
+
"initializer_range": 0.02,
|
| 95 |
+
"intermediate_size": 13696,
|
| 96 |
+
"model_type": "glm4v",
|
| 97 |
+
"num_heads": 12,
|
| 98 |
+
"out_hidden_size": 4096,
|
| 99 |
+
"patch_size": 14,
|
| 100 |
+
"rms_norm_eps": 1e-05,
|
| 101 |
+
"spatial_merge_size": 2,
|
| 102 |
+
"temporal_patch_size": 2,
|
| 103 |
+
"torch_dtype": "float32"
|
| 104 |
+
},
|
| 105 |
+
"vocab_size": 151552
|
| 106 |
+
}
|
example_usage.py
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
# -*- coding: utf-8 -*-
|
| 3 |
+
"""
|
| 4 |
+
TIGeR Model Usage Examples
|
| 5 |
+
Demonstrates how to use the fine-tuned spatial reasoning model
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
import os
|
| 9 |
+
import sys
|
| 10 |
+
import json
|
| 11 |
+
import re
|
| 12 |
+
from typing import List, Dict, Any, Optional
|
| 13 |
+
from llamafactory.chat.chat_model import ChatModel
|
| 14 |
+
|
| 15 |
+
def load_model(config_file: str):
|
| 16 |
+
"""Load model using LLaMA-Factory ChatModel"""
|
| 17 |
+
print(f"Loading model with config: {config_file}")
|
| 18 |
+
|
| 19 |
+
try:
|
| 20 |
+
# Simulate command line arguments
|
| 21 |
+
original_argv = sys.argv.copy()
|
| 22 |
+
sys.argv = [sys.argv[0], config_file]
|
| 23 |
+
|
| 24 |
+
try:
|
| 25 |
+
chat_model = ChatModel()
|
| 26 |
+
print("✅ Model loaded successfully!")
|
| 27 |
+
return chat_model
|
| 28 |
+
finally:
|
| 29 |
+
# Restore original command line arguments
|
| 30 |
+
sys.argv = original_argv
|
| 31 |
+
|
| 32 |
+
except Exception as e:
|
| 33 |
+
print(f"❌ Model loading failed: {e}")
|
| 34 |
+
return None
|
| 35 |
+
|
| 36 |
+
def single_inference_demo(chat_model):
|
| 37 |
+
"""Single image inference demonstration"""
|
| 38 |
+
print("\n" + "="*50)
|
| 39 |
+
print("Single Image Inference Demo")
|
| 40 |
+
print("="*50)
|
| 41 |
+
|
| 42 |
+
# Image path - replace with your actual image path
|
| 43 |
+
image_paths = [
|
| 44 |
+
"/path/to/your/image.jpg" # Replace with actual image path
|
| 45 |
+
]
|
| 46 |
+
|
| 47 |
+
# Question - using the same format as TIGeR
|
| 48 |
+
question = "Two points are circled on the image, labeled by A and B beside each circle. Which point is closer to the camera? Select from the following choices.\n(A) A is closer\n(B) B is closer"
|
| 49 |
+
|
| 50 |
+
try:
|
| 51 |
+
print(f"📷 Loading image: {image_paths[0]}")
|
| 52 |
+
print(f"🔍 Question: {question}")
|
| 53 |
+
|
| 54 |
+
# Prepare messages in the format expected by ChatModel
|
| 55 |
+
messages = [
|
| 56 |
+
{
|
| 57 |
+
"role": "user",
|
| 58 |
+
"content": question
|
| 59 |
+
}
|
| 60 |
+
]
|
| 61 |
+
|
| 62 |
+
# Get model response
|
| 63 |
+
response = chat_model.chat(messages, images=image_paths)
|
| 64 |
+
assistant_texts = []
|
| 65 |
+
|
| 66 |
+
for resp in response:
|
| 67 |
+
try:
|
| 68 |
+
assistant_texts.append(resp.response_text)
|
| 69 |
+
except Exception:
|
| 70 |
+
assistant_texts.append(str(resp))
|
| 71 |
+
|
| 72 |
+
response_text = "\n".join(assistant_texts)
|
| 73 |
+
print(f"💡 Answer: {response_text}")
|
| 74 |
+
|
| 75 |
+
except FileNotFoundError:
|
| 76 |
+
print("❌ Image file not found, please provide correct image path")
|
| 77 |
+
except Exception as e:
|
| 78 |
+
print(f"❌ Error occurred during processing: {e}")
|
| 79 |
+
|
| 80 |
+
def main():
|
| 81 |
+
"""Main function"""
|
| 82 |
+
print("🚀 TIGeR Model Usage Examples")
|
| 83 |
+
print("="*60)
|
| 84 |
+
|
| 85 |
+
# Configuration file path - using the config file in the same directory
|
| 86 |
+
config_file = "glm4v_tisr_full_inference.yaml"
|
| 87 |
+
|
| 88 |
+
# Load model
|
| 89 |
+
chat_model = load_model(config_file)
|
| 90 |
+
if chat_model is None:
|
| 91 |
+
print("❌ Failed to load model. Please check the config file path.")
|
| 92 |
+
return
|
| 93 |
+
|
| 94 |
+
# Run single inference demo
|
| 95 |
+
single_inference_demo(chat_model)
|
| 96 |
+
|
| 97 |
+
print("\n" + "="*60)
|
| 98 |
+
print("✅ Demo completed!")
|
| 99 |
+
print("="*60)
|
| 100 |
+
|
| 101 |
+
if __name__ == "__main__":
|
| 102 |
+
main()
|
generation_config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"eos_token_id": [
|
| 4 |
+
151329,
|
| 5 |
+
151336,
|
| 6 |
+
151338,
|
| 7 |
+
151348
|
| 8 |
+
],
|
| 9 |
+
"pad_token_id": 151329,
|
| 10 |
+
"transformers_version": "4.55.4",
|
| 11 |
+
"use_cache": false
|
| 12 |
+
}
|
glm4v_tisr_full_inference.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### model
|
| 2 |
+
model_name_or_path: hany01rye/TIGeR
|
| 3 |
+
template: glm4v
|
| 4 |
+
trust_remote_code: true
|
| 5 |
+
|
| 6 |
+
### data
|
| 7 |
+
media_dir: /path/to/your/images
|
| 8 |
+
dataset_dir: data
|
| 9 |
+
|
| 10 |
+
### generation
|
| 11 |
+
do_sample: true
|
| 12 |
+
temperature: 0.7
|
| 13 |
+
top_p: 0.9
|
| 14 |
+
max_new_tokens: 1024
|
| 15 |
+
repetition_penalty: 1.1
|
model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f33a80d611623b7124fb92de75b00dbed7c64b1360572b5a3fa983b80b946323
|
| 3 |
+
size 4953999648
|
model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:604d2764dcd0f9ce61958c68a04e7b88293d8048c828125121a605349c558e3f
|
| 3 |
+
size 4895276872
|
model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfa6d853f8218628d79f63e032c24110a42b2b51b966d9703a2372ae905d8e46
|
| 3 |
+
size 4895276936
|
model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d47f859fd6cae1e81052772bd242b7d8b671478eebdd2731a9d0096466fce6cf
|
| 3 |
+
size 4599576544
|
model-00005-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8784f47db352c694d4322928c6fb92db74002a27a0d5534c9a5c7117360e2af
|
| 3 |
+
size 1241514112
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,712 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 934400,
|
| 4 |
+
"total_size": 20585554944
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"lm_head.weight": "model-00005-of-00005.safetensors",
|
| 8 |
+
"model.language_model.embed_tokens.weight": "model-00001-of-00005.safetensors",
|
| 9 |
+
"model.language_model.layers.0.input_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 10 |
+
"model.language_model.layers.0.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 11 |
+
"model.language_model.layers.0.mlp.gate_up_proj.weight": "model-00001-of-00005.safetensors",
|
| 12 |
+
"model.language_model.layers.0.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 13 |
+
"model.language_model.layers.0.post_mlp_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 14 |
+
"model.language_model.layers.0.post_self_attn_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 15 |
+
"model.language_model.layers.0.self_attn.k_proj.bias": "model-00001-of-00005.safetensors",
|
| 16 |
+
"model.language_model.layers.0.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 17 |
+
"model.language_model.layers.0.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 18 |
+
"model.language_model.layers.0.self_attn.q_proj.bias": "model-00001-of-00005.safetensors",
|
| 19 |
+
"model.language_model.layers.0.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 20 |
+
"model.language_model.layers.0.self_attn.v_proj.bias": "model-00001-of-00005.safetensors",
|
| 21 |
+
"model.language_model.layers.0.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 22 |
+
"model.language_model.layers.1.input_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 23 |
+
"model.language_model.layers.1.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 24 |
+
"model.language_model.layers.1.mlp.gate_up_proj.weight": "model-00001-of-00005.safetensors",
|
| 25 |
+
"model.language_model.layers.1.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 26 |
+
"model.language_model.layers.1.post_mlp_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 27 |
+
"model.language_model.layers.1.post_self_attn_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 28 |
+
"model.language_model.layers.1.self_attn.k_proj.bias": "model-00001-of-00005.safetensors",
|
| 29 |
+
"model.language_model.layers.1.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 30 |
+
"model.language_model.layers.1.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 31 |
+
"model.language_model.layers.1.self_attn.q_proj.bias": "model-00001-of-00005.safetensors",
|
| 32 |
+
"model.language_model.layers.1.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 33 |
+
"model.language_model.layers.1.self_attn.v_proj.bias": "model-00001-of-00005.safetensors",
|
| 34 |
+
"model.language_model.layers.1.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 35 |
+
"model.language_model.layers.10.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 36 |
+
"model.language_model.layers.10.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 37 |
+
"model.language_model.layers.10.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 38 |
+
"model.language_model.layers.10.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 39 |
+
"model.language_model.layers.10.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 40 |
+
"model.language_model.layers.10.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 41 |
+
"model.language_model.layers.10.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 42 |
+
"model.language_model.layers.10.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 43 |
+
"model.language_model.layers.10.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 44 |
+
"model.language_model.layers.10.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 45 |
+
"model.language_model.layers.10.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 46 |
+
"model.language_model.layers.10.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 47 |
+
"model.language_model.layers.10.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 48 |
+
"model.language_model.layers.11.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 49 |
+
"model.language_model.layers.11.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 50 |
+
"model.language_model.layers.11.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 51 |
+
"model.language_model.layers.11.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 52 |
+
"model.language_model.layers.11.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 53 |
+
"model.language_model.layers.11.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 54 |
+
"model.language_model.layers.11.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 55 |
+
"model.language_model.layers.11.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 56 |
+
"model.language_model.layers.11.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 57 |
+
"model.language_model.layers.11.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 58 |
+
"model.language_model.layers.11.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 59 |
+
"model.language_model.layers.11.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 60 |
+
"model.language_model.layers.11.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 61 |
+
"model.language_model.layers.12.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 62 |
+
"model.language_model.layers.12.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 63 |
+
"model.language_model.layers.12.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 64 |
+
"model.language_model.layers.12.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 65 |
+
"model.language_model.layers.12.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 66 |
+
"model.language_model.layers.12.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 67 |
+
"model.language_model.layers.12.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 68 |
+
"model.language_model.layers.12.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 69 |
+
"model.language_model.layers.12.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 70 |
+
"model.language_model.layers.12.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 71 |
+
"model.language_model.layers.12.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 72 |
+
"model.language_model.layers.12.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 73 |
+
"model.language_model.layers.12.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 74 |
+
"model.language_model.layers.13.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 75 |
+
"model.language_model.layers.13.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 76 |
+
"model.language_model.layers.13.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 77 |
+
"model.language_model.layers.13.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 78 |
+
"model.language_model.layers.13.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 79 |
+
"model.language_model.layers.13.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 80 |
+
"model.language_model.layers.13.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 81 |
+
"model.language_model.layers.13.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 82 |
+
"model.language_model.layers.13.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 83 |
+
"model.language_model.layers.13.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 84 |
+
"model.language_model.layers.13.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 85 |
+
"model.language_model.layers.13.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 86 |
+
"model.language_model.layers.13.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 87 |
+
"model.language_model.layers.14.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 88 |
+
"model.language_model.layers.14.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 89 |
+
"model.language_model.layers.14.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 90 |
+
"model.language_model.layers.14.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 91 |
+
"model.language_model.layers.14.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 92 |
+
"model.language_model.layers.14.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 93 |
+
"model.language_model.layers.14.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 94 |
+
"model.language_model.layers.14.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 95 |
+
"model.language_model.layers.14.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 96 |
+
"model.language_model.layers.14.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 97 |
+
"model.language_model.layers.14.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 98 |
+
"model.language_model.layers.14.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 99 |
+
"model.language_model.layers.14.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 100 |
+
"model.language_model.layers.15.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 101 |
+
"model.language_model.layers.15.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 102 |
+
"model.language_model.layers.15.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 103 |
+
"model.language_model.layers.15.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 104 |
+
"model.language_model.layers.15.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 105 |
+
"model.language_model.layers.15.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 106 |
+
"model.language_model.layers.15.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 107 |
+
"model.language_model.layers.15.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 108 |
+
"model.language_model.layers.15.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 109 |
+
"model.language_model.layers.15.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 110 |
+
"model.language_model.layers.15.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 111 |
+
"model.language_model.layers.15.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 112 |
+
"model.language_model.layers.15.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 113 |
+
"model.language_model.layers.16.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 114 |
+
"model.language_model.layers.16.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 115 |
+
"model.language_model.layers.16.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 116 |
+
"model.language_model.layers.16.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 117 |
+
"model.language_model.layers.16.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 118 |
+
"model.language_model.layers.16.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 119 |
+
"model.language_model.layers.16.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 120 |
+
"model.language_model.layers.16.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 121 |
+
"model.language_model.layers.16.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 122 |
+
"model.language_model.layers.16.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 123 |
+
"model.language_model.layers.16.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 124 |
+
"model.language_model.layers.16.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 125 |
+
"model.language_model.layers.16.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 126 |
+
"model.language_model.layers.17.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 127 |
+
"model.language_model.layers.17.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 128 |
+
"model.language_model.layers.17.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 129 |
+
"model.language_model.layers.17.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 130 |
+
"model.language_model.layers.17.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 131 |
+
"model.language_model.layers.17.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 132 |
+
"model.language_model.layers.17.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 133 |
+
"model.language_model.layers.17.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 134 |
+
"model.language_model.layers.17.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 135 |
+
"model.language_model.layers.17.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 136 |
+
"model.language_model.layers.17.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 137 |
+
"model.language_model.layers.17.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 138 |
+
"model.language_model.layers.17.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 139 |
+
"model.language_model.layers.18.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 140 |
+
"model.language_model.layers.18.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 141 |
+
"model.language_model.layers.18.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 142 |
+
"model.language_model.layers.18.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 143 |
+
"model.language_model.layers.18.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 144 |
+
"model.language_model.layers.18.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 145 |
+
"model.language_model.layers.18.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 146 |
+
"model.language_model.layers.18.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 147 |
+
"model.language_model.layers.18.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 148 |
+
"model.language_model.layers.18.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 149 |
+
"model.language_model.layers.18.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 150 |
+
"model.language_model.layers.18.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 151 |
+
"model.language_model.layers.18.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 152 |
+
"model.language_model.layers.19.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 153 |
+
"model.language_model.layers.19.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 154 |
+
"model.language_model.layers.19.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 155 |
+
"model.language_model.layers.19.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 156 |
+
"model.language_model.layers.19.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 157 |
+
"model.language_model.layers.19.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 158 |
+
"model.language_model.layers.19.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 159 |
+
"model.language_model.layers.19.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 160 |
+
"model.language_model.layers.19.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 161 |
+
"model.language_model.layers.19.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 162 |
+
"model.language_model.layers.19.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 163 |
+
"model.language_model.layers.19.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 164 |
+
"model.language_model.layers.19.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 165 |
+
"model.language_model.layers.2.input_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 166 |
+
"model.language_model.layers.2.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 167 |
+
"model.language_model.layers.2.mlp.gate_up_proj.weight": "model-00001-of-00005.safetensors",
|
| 168 |
+
"model.language_model.layers.2.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 169 |
+
"model.language_model.layers.2.post_mlp_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 170 |
+
"model.language_model.layers.2.post_self_attn_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 171 |
+
"model.language_model.layers.2.self_attn.k_proj.bias": "model-00001-of-00005.safetensors",
|
| 172 |
+
"model.language_model.layers.2.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 173 |
+
"model.language_model.layers.2.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 174 |
+
"model.language_model.layers.2.self_attn.q_proj.bias": "model-00001-of-00005.safetensors",
|
| 175 |
+
"model.language_model.layers.2.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 176 |
+
"model.language_model.layers.2.self_attn.v_proj.bias": "model-00001-of-00005.safetensors",
|
| 177 |
+
"model.language_model.layers.2.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 178 |
+
"model.language_model.layers.20.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 179 |
+
"model.language_model.layers.20.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 180 |
+
"model.language_model.layers.20.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 181 |
+
"model.language_model.layers.20.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 182 |
+
"model.language_model.layers.20.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 183 |
+
"model.language_model.layers.20.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 184 |
+
"model.language_model.layers.20.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 185 |
+
"model.language_model.layers.20.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 186 |
+
"model.language_model.layers.20.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 187 |
+
"model.language_model.layers.20.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 188 |
+
"model.language_model.layers.20.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 189 |
+
"model.language_model.layers.20.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 190 |
+
"model.language_model.layers.20.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 191 |
+
"model.language_model.layers.21.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 192 |
+
"model.language_model.layers.21.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 193 |
+
"model.language_model.layers.21.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 194 |
+
"model.language_model.layers.21.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 195 |
+
"model.language_model.layers.21.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 196 |
+
"model.language_model.layers.21.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 197 |
+
"model.language_model.layers.21.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 198 |
+
"model.language_model.layers.21.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 199 |
+
"model.language_model.layers.21.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 200 |
+
"model.language_model.layers.21.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 201 |
+
"model.language_model.layers.21.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 202 |
+
"model.language_model.layers.21.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 203 |
+
"model.language_model.layers.21.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 204 |
+
"model.language_model.layers.22.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 205 |
+
"model.language_model.layers.22.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 206 |
+
"model.language_model.layers.22.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 207 |
+
"model.language_model.layers.22.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 208 |
+
"model.language_model.layers.22.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 209 |
+
"model.language_model.layers.22.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 210 |
+
"model.language_model.layers.22.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 211 |
+
"model.language_model.layers.22.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 212 |
+
"model.language_model.layers.22.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 213 |
+
"model.language_model.layers.22.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 214 |
+
"model.language_model.layers.22.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 215 |
+
"model.language_model.layers.22.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 216 |
+
"model.language_model.layers.22.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 217 |
+
"model.language_model.layers.23.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 218 |
+
"model.language_model.layers.23.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 219 |
+
"model.language_model.layers.23.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 220 |
+
"model.language_model.layers.23.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 221 |
+
"model.language_model.layers.23.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 222 |
+
"model.language_model.layers.23.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 223 |
+
"model.language_model.layers.23.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 224 |
+
"model.language_model.layers.23.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 225 |
+
"model.language_model.layers.23.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 226 |
+
"model.language_model.layers.23.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 227 |
+
"model.language_model.layers.23.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 228 |
+
"model.language_model.layers.23.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 229 |
+
"model.language_model.layers.23.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 230 |
+
"model.language_model.layers.24.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 231 |
+
"model.language_model.layers.24.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 232 |
+
"model.language_model.layers.24.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 233 |
+
"model.language_model.layers.24.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 234 |
+
"model.language_model.layers.24.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 235 |
+
"model.language_model.layers.24.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 236 |
+
"model.language_model.layers.24.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 237 |
+
"model.language_model.layers.24.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 238 |
+
"model.language_model.layers.24.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 239 |
+
"model.language_model.layers.24.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 240 |
+
"model.language_model.layers.24.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 241 |
+
"model.language_model.layers.24.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 242 |
+
"model.language_model.layers.24.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 243 |
+
"model.language_model.layers.25.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 244 |
+
"model.language_model.layers.25.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 245 |
+
"model.language_model.layers.25.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 246 |
+
"model.language_model.layers.25.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 247 |
+
"model.language_model.layers.25.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 248 |
+
"model.language_model.layers.25.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 249 |
+
"model.language_model.layers.25.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 250 |
+
"model.language_model.layers.25.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 251 |
+
"model.language_model.layers.25.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 252 |
+
"model.language_model.layers.25.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 253 |
+
"model.language_model.layers.25.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 254 |
+
"model.language_model.layers.25.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 255 |
+
"model.language_model.layers.25.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 256 |
+
"model.language_model.layers.26.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 257 |
+
"model.language_model.layers.26.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 258 |
+
"model.language_model.layers.26.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 259 |
+
"model.language_model.layers.26.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 260 |
+
"model.language_model.layers.26.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 261 |
+
"model.language_model.layers.26.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 262 |
+
"model.language_model.layers.26.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 263 |
+
"model.language_model.layers.26.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 264 |
+
"model.language_model.layers.26.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 265 |
+
"model.language_model.layers.26.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 266 |
+
"model.language_model.layers.26.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 267 |
+
"model.language_model.layers.26.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 268 |
+
"model.language_model.layers.26.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 269 |
+
"model.language_model.layers.27.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 270 |
+
"model.language_model.layers.27.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 271 |
+
"model.language_model.layers.27.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 272 |
+
"model.language_model.layers.27.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 273 |
+
"model.language_model.layers.27.post_mlp_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 274 |
+
"model.language_model.layers.27.post_self_attn_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 275 |
+
"model.language_model.layers.27.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 276 |
+
"model.language_model.layers.27.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 277 |
+
"model.language_model.layers.27.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 278 |
+
"model.language_model.layers.27.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 279 |
+
"model.language_model.layers.27.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 280 |
+
"model.language_model.layers.27.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 281 |
+
"model.language_model.layers.27.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 282 |
+
"model.language_model.layers.28.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 283 |
+
"model.language_model.layers.28.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 284 |
+
"model.language_model.layers.28.mlp.gate_up_proj.weight": "model-00003-of-00005.safetensors",
|
| 285 |
+
"model.language_model.layers.28.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 286 |
+
"model.language_model.layers.28.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 287 |
+
"model.language_model.layers.28.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 288 |
+
"model.language_model.layers.28.self_attn.k_proj.bias": "model-00003-of-00005.safetensors",
|
| 289 |
+
"model.language_model.layers.28.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 290 |
+
"model.language_model.layers.28.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 291 |
+
"model.language_model.layers.28.self_attn.q_proj.bias": "model-00003-of-00005.safetensors",
|
| 292 |
+
"model.language_model.layers.28.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 293 |
+
"model.language_model.layers.28.self_attn.v_proj.bias": "model-00003-of-00005.safetensors",
|
| 294 |
+
"model.language_model.layers.28.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 295 |
+
"model.language_model.layers.29.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 296 |
+
"model.language_model.layers.29.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 297 |
+
"model.language_model.layers.29.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 298 |
+
"model.language_model.layers.29.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 299 |
+
"model.language_model.layers.29.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 300 |
+
"model.language_model.layers.29.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 301 |
+
"model.language_model.layers.29.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 302 |
+
"model.language_model.layers.29.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 303 |
+
"model.language_model.layers.29.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 304 |
+
"model.language_model.layers.29.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 305 |
+
"model.language_model.layers.29.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 306 |
+
"model.language_model.layers.29.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 307 |
+
"model.language_model.layers.29.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 308 |
+
"model.language_model.layers.3.input_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 309 |
+
"model.language_model.layers.3.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 310 |
+
"model.language_model.layers.3.mlp.gate_up_proj.weight": "model-00001-of-00005.safetensors",
|
| 311 |
+
"model.language_model.layers.3.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 312 |
+
"model.language_model.layers.3.post_mlp_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 313 |
+
"model.language_model.layers.3.post_self_attn_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 314 |
+
"model.language_model.layers.3.self_attn.k_proj.bias": "model-00001-of-00005.safetensors",
|
| 315 |
+
"model.language_model.layers.3.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 316 |
+
"model.language_model.layers.3.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 317 |
+
"model.language_model.layers.3.self_attn.q_proj.bias": "model-00001-of-00005.safetensors",
|
| 318 |
+
"model.language_model.layers.3.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 319 |
+
"model.language_model.layers.3.self_attn.v_proj.bias": "model-00001-of-00005.safetensors",
|
| 320 |
+
"model.language_model.layers.3.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 321 |
+
"model.language_model.layers.30.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 322 |
+
"model.language_model.layers.30.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 323 |
+
"model.language_model.layers.30.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 324 |
+
"model.language_model.layers.30.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 325 |
+
"model.language_model.layers.30.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 326 |
+
"model.language_model.layers.30.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 327 |
+
"model.language_model.layers.30.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 328 |
+
"model.language_model.layers.30.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 329 |
+
"model.language_model.layers.30.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 330 |
+
"model.language_model.layers.30.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 331 |
+
"model.language_model.layers.30.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 332 |
+
"model.language_model.layers.30.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 333 |
+
"model.language_model.layers.30.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 334 |
+
"model.language_model.layers.31.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 335 |
+
"model.language_model.layers.31.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 336 |
+
"model.language_model.layers.31.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 337 |
+
"model.language_model.layers.31.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 338 |
+
"model.language_model.layers.31.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 339 |
+
"model.language_model.layers.31.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 340 |
+
"model.language_model.layers.31.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 341 |
+
"model.language_model.layers.31.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 342 |
+
"model.language_model.layers.31.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 343 |
+
"model.language_model.layers.31.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 344 |
+
"model.language_model.layers.31.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 345 |
+
"model.language_model.layers.31.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 346 |
+
"model.language_model.layers.31.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 347 |
+
"model.language_model.layers.32.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 348 |
+
"model.language_model.layers.32.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 349 |
+
"model.language_model.layers.32.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 350 |
+
"model.language_model.layers.32.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 351 |
+
"model.language_model.layers.32.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 352 |
+
"model.language_model.layers.32.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 353 |
+
"model.language_model.layers.32.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 354 |
+
"model.language_model.layers.32.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 355 |
+
"model.language_model.layers.32.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 356 |
+
"model.language_model.layers.32.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 357 |
+
"model.language_model.layers.32.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 358 |
+
"model.language_model.layers.32.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 359 |
+
"model.language_model.layers.32.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 360 |
+
"model.language_model.layers.33.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 361 |
+
"model.language_model.layers.33.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 362 |
+
"model.language_model.layers.33.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 363 |
+
"model.language_model.layers.33.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 364 |
+
"model.language_model.layers.33.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 365 |
+
"model.language_model.layers.33.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 366 |
+
"model.language_model.layers.33.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 367 |
+
"model.language_model.layers.33.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 368 |
+
"model.language_model.layers.33.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 369 |
+
"model.language_model.layers.33.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 370 |
+
"model.language_model.layers.33.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 371 |
+
"model.language_model.layers.33.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 372 |
+
"model.language_model.layers.33.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 373 |
+
"model.language_model.layers.34.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 374 |
+
"model.language_model.layers.34.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 375 |
+
"model.language_model.layers.34.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 376 |
+
"model.language_model.layers.34.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 377 |
+
"model.language_model.layers.34.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 378 |
+
"model.language_model.layers.34.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 379 |
+
"model.language_model.layers.34.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 380 |
+
"model.language_model.layers.34.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 381 |
+
"model.language_model.layers.34.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 382 |
+
"model.language_model.layers.34.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 383 |
+
"model.language_model.layers.34.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 384 |
+
"model.language_model.layers.34.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 385 |
+
"model.language_model.layers.34.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 386 |
+
"model.language_model.layers.35.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 387 |
+
"model.language_model.layers.35.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 388 |
+
"model.language_model.layers.35.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 389 |
+
"model.language_model.layers.35.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 390 |
+
"model.language_model.layers.35.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 391 |
+
"model.language_model.layers.35.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 392 |
+
"model.language_model.layers.35.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 393 |
+
"model.language_model.layers.35.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 394 |
+
"model.language_model.layers.35.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 395 |
+
"model.language_model.layers.35.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 396 |
+
"model.language_model.layers.35.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 397 |
+
"model.language_model.layers.35.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 398 |
+
"model.language_model.layers.35.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 399 |
+
"model.language_model.layers.36.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 400 |
+
"model.language_model.layers.36.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 401 |
+
"model.language_model.layers.36.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 402 |
+
"model.language_model.layers.36.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 403 |
+
"model.language_model.layers.36.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 404 |
+
"model.language_model.layers.36.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 405 |
+
"model.language_model.layers.36.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 406 |
+
"model.language_model.layers.36.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 407 |
+
"model.language_model.layers.36.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 408 |
+
"model.language_model.layers.36.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 409 |
+
"model.language_model.layers.36.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 410 |
+
"model.language_model.layers.36.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 411 |
+
"model.language_model.layers.36.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 412 |
+
"model.language_model.layers.37.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 413 |
+
"model.language_model.layers.37.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 414 |
+
"model.language_model.layers.37.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 415 |
+
"model.language_model.layers.37.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 416 |
+
"model.language_model.layers.37.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 417 |
+
"model.language_model.layers.37.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 418 |
+
"model.language_model.layers.37.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 419 |
+
"model.language_model.layers.37.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 420 |
+
"model.language_model.layers.37.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 421 |
+
"model.language_model.layers.37.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 422 |
+
"model.language_model.layers.37.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 423 |
+
"model.language_model.layers.37.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 424 |
+
"model.language_model.layers.37.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 425 |
+
"model.language_model.layers.38.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 426 |
+
"model.language_model.layers.38.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 427 |
+
"model.language_model.layers.38.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 428 |
+
"model.language_model.layers.38.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 429 |
+
"model.language_model.layers.38.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 430 |
+
"model.language_model.layers.38.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 431 |
+
"model.language_model.layers.38.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 432 |
+
"model.language_model.layers.38.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 433 |
+
"model.language_model.layers.38.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 434 |
+
"model.language_model.layers.38.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 435 |
+
"model.language_model.layers.38.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 436 |
+
"model.language_model.layers.38.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 437 |
+
"model.language_model.layers.38.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 438 |
+
"model.language_model.layers.39.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 439 |
+
"model.language_model.layers.39.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 440 |
+
"model.language_model.layers.39.mlp.gate_up_proj.weight": "model-00004-of-00005.safetensors",
|
| 441 |
+
"model.language_model.layers.39.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 442 |
+
"model.language_model.layers.39.post_mlp_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 443 |
+
"model.language_model.layers.39.post_self_attn_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 444 |
+
"model.language_model.layers.39.self_attn.k_proj.bias": "model-00004-of-00005.safetensors",
|
| 445 |
+
"model.language_model.layers.39.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 446 |
+
"model.language_model.layers.39.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 447 |
+
"model.language_model.layers.39.self_attn.q_proj.bias": "model-00004-of-00005.safetensors",
|
| 448 |
+
"model.language_model.layers.39.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 449 |
+
"model.language_model.layers.39.self_attn.v_proj.bias": "model-00004-of-00005.safetensors",
|
| 450 |
+
"model.language_model.layers.39.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 451 |
+
"model.language_model.layers.4.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 452 |
+
"model.language_model.layers.4.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 453 |
+
"model.language_model.layers.4.mlp.gate_up_proj.weight": "model-00001-of-00005.safetensors",
|
| 454 |
+
"model.language_model.layers.4.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 455 |
+
"model.language_model.layers.4.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 456 |
+
"model.language_model.layers.4.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 457 |
+
"model.language_model.layers.4.self_attn.k_proj.bias": "model-00001-of-00005.safetensors",
|
| 458 |
+
"model.language_model.layers.4.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 459 |
+
"model.language_model.layers.4.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 460 |
+
"model.language_model.layers.4.self_attn.q_proj.bias": "model-00001-of-00005.safetensors",
|
| 461 |
+
"model.language_model.layers.4.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 462 |
+
"model.language_model.layers.4.self_attn.v_proj.bias": "model-00001-of-00005.safetensors",
|
| 463 |
+
"model.language_model.layers.4.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 464 |
+
"model.language_model.layers.5.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 465 |
+
"model.language_model.layers.5.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 466 |
+
"model.language_model.layers.5.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 467 |
+
"model.language_model.layers.5.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 468 |
+
"model.language_model.layers.5.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 469 |
+
"model.language_model.layers.5.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 470 |
+
"model.language_model.layers.5.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 471 |
+
"model.language_model.layers.5.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 472 |
+
"model.language_model.layers.5.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 473 |
+
"model.language_model.layers.5.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 474 |
+
"model.language_model.layers.5.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 475 |
+
"model.language_model.layers.5.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 476 |
+
"model.language_model.layers.5.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 477 |
+
"model.language_model.layers.6.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 478 |
+
"model.language_model.layers.6.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 479 |
+
"model.language_model.layers.6.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 480 |
+
"model.language_model.layers.6.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 481 |
+
"model.language_model.layers.6.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 482 |
+
"model.language_model.layers.6.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 483 |
+
"model.language_model.layers.6.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 484 |
+
"model.language_model.layers.6.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 485 |
+
"model.language_model.layers.6.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 486 |
+
"model.language_model.layers.6.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 487 |
+
"model.language_model.layers.6.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 488 |
+
"model.language_model.layers.6.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 489 |
+
"model.language_model.layers.6.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 490 |
+
"model.language_model.layers.7.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 491 |
+
"model.language_model.layers.7.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 492 |
+
"model.language_model.layers.7.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 493 |
+
"model.language_model.layers.7.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 494 |
+
"model.language_model.layers.7.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 495 |
+
"model.language_model.layers.7.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 496 |
+
"model.language_model.layers.7.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 497 |
+
"model.language_model.layers.7.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 498 |
+
"model.language_model.layers.7.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 499 |
+
"model.language_model.layers.7.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 500 |
+
"model.language_model.layers.7.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 501 |
+
"model.language_model.layers.7.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 502 |
+
"model.language_model.layers.7.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 503 |
+
"model.language_model.layers.8.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 504 |
+
"model.language_model.layers.8.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 505 |
+
"model.language_model.layers.8.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 506 |
+
"model.language_model.layers.8.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 507 |
+
"model.language_model.layers.8.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 508 |
+
"model.language_model.layers.8.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 509 |
+
"model.language_model.layers.8.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 510 |
+
"model.language_model.layers.8.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 511 |
+
"model.language_model.layers.8.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 512 |
+
"model.language_model.layers.8.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 513 |
+
"model.language_model.layers.8.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 514 |
+
"model.language_model.layers.8.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 515 |
+
"model.language_model.layers.8.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 516 |
+
"model.language_model.layers.9.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 517 |
+
"model.language_model.layers.9.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 518 |
+
"model.language_model.layers.9.mlp.gate_up_proj.weight": "model-00002-of-00005.safetensors",
|
| 519 |
+
"model.language_model.layers.9.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 520 |
+
"model.language_model.layers.9.post_mlp_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 521 |
+
"model.language_model.layers.9.post_self_attn_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 522 |
+
"model.language_model.layers.9.self_attn.k_proj.bias": "model-00002-of-00005.safetensors",
|
| 523 |
+
"model.language_model.layers.9.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 524 |
+
"model.language_model.layers.9.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 525 |
+
"model.language_model.layers.9.self_attn.q_proj.bias": "model-00002-of-00005.safetensors",
|
| 526 |
+
"model.language_model.layers.9.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 527 |
+
"model.language_model.layers.9.self_attn.v_proj.bias": "model-00002-of-00005.safetensors",
|
| 528 |
+
"model.language_model.layers.9.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 529 |
+
"model.language_model.norm.weight": "model-00004-of-00005.safetensors",
|
| 530 |
+
"model.visual.blocks.0.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 531 |
+
"model.visual.blocks.0.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 532 |
+
"model.visual.blocks.0.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 533 |
+
"model.visual.blocks.0.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 534 |
+
"model.visual.blocks.0.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 535 |
+
"model.visual.blocks.0.norm1.weight": "model-00001-of-00005.safetensors",
|
| 536 |
+
"model.visual.blocks.0.norm2.weight": "model-00001-of-00005.safetensors",
|
| 537 |
+
"model.visual.blocks.1.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 538 |
+
"model.visual.blocks.1.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 539 |
+
"model.visual.blocks.1.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 540 |
+
"model.visual.blocks.1.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 541 |
+
"model.visual.blocks.1.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 542 |
+
"model.visual.blocks.1.norm1.weight": "model-00001-of-00005.safetensors",
|
| 543 |
+
"model.visual.blocks.1.norm2.weight": "model-00001-of-00005.safetensors",
|
| 544 |
+
"model.visual.blocks.10.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 545 |
+
"model.visual.blocks.10.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 546 |
+
"model.visual.blocks.10.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 547 |
+
"model.visual.blocks.10.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 548 |
+
"model.visual.blocks.10.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 549 |
+
"model.visual.blocks.10.norm1.weight": "model-00001-of-00005.safetensors",
|
| 550 |
+
"model.visual.blocks.10.norm2.weight": "model-00001-of-00005.safetensors",
|
| 551 |
+
"model.visual.blocks.11.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 552 |
+
"model.visual.blocks.11.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 553 |
+
"model.visual.blocks.11.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 554 |
+
"model.visual.blocks.11.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 555 |
+
"model.visual.blocks.11.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 556 |
+
"model.visual.blocks.11.norm1.weight": "model-00001-of-00005.safetensors",
|
| 557 |
+
"model.visual.blocks.11.norm2.weight": "model-00001-of-00005.safetensors",
|
| 558 |
+
"model.visual.blocks.12.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 559 |
+
"model.visual.blocks.12.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 560 |
+
"model.visual.blocks.12.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 561 |
+
"model.visual.blocks.12.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 562 |
+
"model.visual.blocks.12.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 563 |
+
"model.visual.blocks.12.norm1.weight": "model-00001-of-00005.safetensors",
|
| 564 |
+
"model.visual.blocks.12.norm2.weight": "model-00001-of-00005.safetensors",
|
| 565 |
+
"model.visual.blocks.13.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 566 |
+
"model.visual.blocks.13.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 567 |
+
"model.visual.blocks.13.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 568 |
+
"model.visual.blocks.13.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 569 |
+
"model.visual.blocks.13.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 570 |
+
"model.visual.blocks.13.norm1.weight": "model-00001-of-00005.safetensors",
|
| 571 |
+
"model.visual.blocks.13.norm2.weight": "model-00001-of-00005.safetensors",
|
| 572 |
+
"model.visual.blocks.14.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 573 |
+
"model.visual.blocks.14.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 574 |
+
"model.visual.blocks.14.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 575 |
+
"model.visual.blocks.14.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 576 |
+
"model.visual.blocks.14.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 577 |
+
"model.visual.blocks.14.norm1.weight": "model-00001-of-00005.safetensors",
|
| 578 |
+
"model.visual.blocks.14.norm2.weight": "model-00001-of-00005.safetensors",
|
| 579 |
+
"model.visual.blocks.15.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 580 |
+
"model.visual.blocks.15.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 581 |
+
"model.visual.blocks.15.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 582 |
+
"model.visual.blocks.15.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 583 |
+
"model.visual.blocks.15.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 584 |
+
"model.visual.blocks.15.norm1.weight": "model-00001-of-00005.safetensors",
|
| 585 |
+
"model.visual.blocks.15.norm2.weight": "model-00001-of-00005.safetensors",
|
| 586 |
+
"model.visual.blocks.16.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 587 |
+
"model.visual.blocks.16.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 588 |
+
"model.visual.blocks.16.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 589 |
+
"model.visual.blocks.16.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 590 |
+
"model.visual.blocks.16.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 591 |
+
"model.visual.blocks.16.norm1.weight": "model-00001-of-00005.safetensors",
|
| 592 |
+
"model.visual.blocks.16.norm2.weight": "model-00001-of-00005.safetensors",
|
| 593 |
+
"model.visual.blocks.17.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 594 |
+
"model.visual.blocks.17.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 595 |
+
"model.visual.blocks.17.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 596 |
+
"model.visual.blocks.17.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 597 |
+
"model.visual.blocks.17.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 598 |
+
"model.visual.blocks.17.norm1.weight": "model-00001-of-00005.safetensors",
|
| 599 |
+
"model.visual.blocks.17.norm2.weight": "model-00001-of-00005.safetensors",
|
| 600 |
+
"model.visual.blocks.18.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 601 |
+
"model.visual.blocks.18.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 602 |
+
"model.visual.blocks.18.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 603 |
+
"model.visual.blocks.18.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 604 |
+
"model.visual.blocks.18.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 605 |
+
"model.visual.blocks.18.norm1.weight": "model-00001-of-00005.safetensors",
|
| 606 |
+
"model.visual.blocks.18.norm2.weight": "model-00001-of-00005.safetensors",
|
| 607 |
+
"model.visual.blocks.19.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 608 |
+
"model.visual.blocks.19.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 609 |
+
"model.visual.blocks.19.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 610 |
+
"model.visual.blocks.19.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 611 |
+
"model.visual.blocks.19.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 612 |
+
"model.visual.blocks.19.norm1.weight": "model-00001-of-00005.safetensors",
|
| 613 |
+
"model.visual.blocks.19.norm2.weight": "model-00001-of-00005.safetensors",
|
| 614 |
+
"model.visual.blocks.2.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 615 |
+
"model.visual.blocks.2.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 616 |
+
"model.visual.blocks.2.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 617 |
+
"model.visual.blocks.2.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 618 |
+
"model.visual.blocks.2.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 619 |
+
"model.visual.blocks.2.norm1.weight": "model-00001-of-00005.safetensors",
|
| 620 |
+
"model.visual.blocks.2.norm2.weight": "model-00001-of-00005.safetensors",
|
| 621 |
+
"model.visual.blocks.20.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 622 |
+
"model.visual.blocks.20.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 623 |
+
"model.visual.blocks.20.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 624 |
+
"model.visual.blocks.20.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 625 |
+
"model.visual.blocks.20.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 626 |
+
"model.visual.blocks.20.norm1.weight": "model-00001-of-00005.safetensors",
|
| 627 |
+
"model.visual.blocks.20.norm2.weight": "model-00001-of-00005.safetensors",
|
| 628 |
+
"model.visual.blocks.21.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 629 |
+
"model.visual.blocks.21.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 630 |
+
"model.visual.blocks.21.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 631 |
+
"model.visual.blocks.21.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 632 |
+
"model.visual.blocks.21.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 633 |
+
"model.visual.blocks.21.norm1.weight": "model-00001-of-00005.safetensors",
|
| 634 |
+
"model.visual.blocks.21.norm2.weight": "model-00001-of-00005.safetensors",
|
| 635 |
+
"model.visual.blocks.22.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 636 |
+
"model.visual.blocks.22.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 637 |
+
"model.visual.blocks.22.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 638 |
+
"model.visual.blocks.22.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 639 |
+
"model.visual.blocks.22.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 640 |
+
"model.visual.blocks.22.norm1.weight": "model-00001-of-00005.safetensors",
|
| 641 |
+
"model.visual.blocks.22.norm2.weight": "model-00001-of-00005.safetensors",
|
| 642 |
+
"model.visual.blocks.23.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 643 |
+
"model.visual.blocks.23.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 644 |
+
"model.visual.blocks.23.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 645 |
+
"model.visual.blocks.23.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 646 |
+
"model.visual.blocks.23.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 647 |
+
"model.visual.blocks.23.norm1.weight": "model-00001-of-00005.safetensors",
|
| 648 |
+
"model.visual.blocks.23.norm2.weight": "model-00001-of-00005.safetensors",
|
| 649 |
+
"model.visual.blocks.3.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 650 |
+
"model.visual.blocks.3.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 651 |
+
"model.visual.blocks.3.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 652 |
+
"model.visual.blocks.3.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 653 |
+
"model.visual.blocks.3.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 654 |
+
"model.visual.blocks.3.norm1.weight": "model-00001-of-00005.safetensors",
|
| 655 |
+
"model.visual.blocks.3.norm2.weight": "model-00001-of-00005.safetensors",
|
| 656 |
+
"model.visual.blocks.4.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 657 |
+
"model.visual.blocks.4.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 658 |
+
"model.visual.blocks.4.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 659 |
+
"model.visual.blocks.4.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 660 |
+
"model.visual.blocks.4.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 661 |
+
"model.visual.blocks.4.norm1.weight": "model-00001-of-00005.safetensors",
|
| 662 |
+
"model.visual.blocks.4.norm2.weight": "model-00001-of-00005.safetensors",
|
| 663 |
+
"model.visual.blocks.5.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 664 |
+
"model.visual.blocks.5.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 665 |
+
"model.visual.blocks.5.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 666 |
+
"model.visual.blocks.5.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 667 |
+
"model.visual.blocks.5.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 668 |
+
"model.visual.blocks.5.norm1.weight": "model-00001-of-00005.safetensors",
|
| 669 |
+
"model.visual.blocks.5.norm2.weight": "model-00001-of-00005.safetensors",
|
| 670 |
+
"model.visual.blocks.6.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 671 |
+
"model.visual.blocks.6.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 672 |
+
"model.visual.blocks.6.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 673 |
+
"model.visual.blocks.6.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 674 |
+
"model.visual.blocks.6.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 675 |
+
"model.visual.blocks.6.norm1.weight": "model-00001-of-00005.safetensors",
|
| 676 |
+
"model.visual.blocks.6.norm2.weight": "model-00001-of-00005.safetensors",
|
| 677 |
+
"model.visual.blocks.7.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 678 |
+
"model.visual.blocks.7.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 679 |
+
"model.visual.blocks.7.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 680 |
+
"model.visual.blocks.7.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 681 |
+
"model.visual.blocks.7.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 682 |
+
"model.visual.blocks.7.norm1.weight": "model-00001-of-00005.safetensors",
|
| 683 |
+
"model.visual.blocks.7.norm2.weight": "model-00001-of-00005.safetensors",
|
| 684 |
+
"model.visual.blocks.8.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 685 |
+
"model.visual.blocks.8.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 686 |
+
"model.visual.blocks.8.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 687 |
+
"model.visual.blocks.8.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 688 |
+
"model.visual.blocks.8.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 689 |
+
"model.visual.blocks.8.norm1.weight": "model-00001-of-00005.safetensors",
|
| 690 |
+
"model.visual.blocks.8.norm2.weight": "model-00001-of-00005.safetensors",
|
| 691 |
+
"model.visual.blocks.9.attn.proj.weight": "model-00001-of-00005.safetensors",
|
| 692 |
+
"model.visual.blocks.9.attn.qkv.weight": "model-00001-of-00005.safetensors",
|
| 693 |
+
"model.visual.blocks.9.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 694 |
+
"model.visual.blocks.9.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 695 |
+
"model.visual.blocks.9.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 696 |
+
"model.visual.blocks.9.norm1.weight": "model-00001-of-00005.safetensors",
|
| 697 |
+
"model.visual.blocks.9.norm2.weight": "model-00001-of-00005.safetensors",
|
| 698 |
+
"model.visual.downsample.bias": "model-00001-of-00005.safetensors",
|
| 699 |
+
"model.visual.downsample.weight": "model-00001-of-00005.safetensors",
|
| 700 |
+
"model.visual.embeddings.position_embedding.weight": "model-00001-of-00005.safetensors",
|
| 701 |
+
"model.visual.merger.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 702 |
+
"model.visual.merger.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 703 |
+
"model.visual.merger.post_projection_norm.bias": "model-00001-of-00005.safetensors",
|
| 704 |
+
"model.visual.merger.post_projection_norm.weight": "model-00001-of-00005.safetensors",
|
| 705 |
+
"model.visual.merger.proj.weight": "model-00001-of-00005.safetensors",
|
| 706 |
+
"model.visual.merger.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 707 |
+
"model.visual.patch_embed.proj.bias": "model-00001-of-00005.safetensors",
|
| 708 |
+
"model.visual.patch_embed.proj.weight": "model-00001-of-00005.safetensors",
|
| 709 |
+
"model.visual.post_conv_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 710 |
+
"model.visual.post_layernorm.weight": "model-00001-of-00005.safetensors"
|
| 711 |
+
}
|
| 712 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"crop_size": null,
|
| 3 |
+
"data_format": "channels_first",
|
| 4 |
+
"default_to_square": true,
|
| 5 |
+
"device": null,
|
| 6 |
+
"disable_grouping": null,
|
| 7 |
+
"do_center_crop": null,
|
| 8 |
+
"do_convert_rgb": true,
|
| 9 |
+
"do_normalize": true,
|
| 10 |
+
"do_rescale": true,
|
| 11 |
+
"do_resize": true,
|
| 12 |
+
"image_mean": [
|
| 13 |
+
0.48145466,
|
| 14 |
+
0.4578275,
|
| 15 |
+
0.40821073
|
| 16 |
+
],
|
| 17 |
+
"image_processor_type": "Glm4vImageProcessorFast",
|
| 18 |
+
"image_std": [
|
| 19 |
+
0.26862954,
|
| 20 |
+
0.26130258,
|
| 21 |
+
0.27577711
|
| 22 |
+
],
|
| 23 |
+
"input_data_format": null,
|
| 24 |
+
"merge_size": 2,
|
| 25 |
+
"patch_size": 14,
|
| 26 |
+
"processor_class": "Glm4vProcessor",
|
| 27 |
+
"resample": 3,
|
| 28 |
+
"rescale_factor": 0.00392156862745098,
|
| 29 |
+
"return_tensors": null,
|
| 30 |
+
"size": {
|
| 31 |
+
"longest_edge": 9633792,
|
| 32 |
+
"shortest_edge": 12544
|
| 33 |
+
},
|
| 34 |
+
"temporal_patch_size": 2
|
| 35 |
+
}
|
requirements.txt
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
torch>=2.0.0
|
| 2 |
+
transformers>=4.55.0
|
| 3 |
+
pillow>=9.0.0
|
| 4 |
+
opencv-python>=4.5.0
|
| 5 |
+
numpy>=1.21.0
|
| 6 |
+
huggingface_hub>=0.20.0
|
| 7 |
+
accelerate>=0.25.0
|
| 8 |
+
safetensors>=0.4.0
|
| 9 |
+
llamafactory>=0.8.0
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|endoftext|>",
|
| 4 |
+
"[MASK]",
|
| 5 |
+
"[gMASK]",
|
| 6 |
+
"[sMASK]",
|
| 7 |
+
"<sop>",
|
| 8 |
+
"<eop>",
|
| 9 |
+
"<|system|>",
|
| 10 |
+
"<|user|>",
|
| 11 |
+
"<|assistant|>",
|
| 12 |
+
"<|observation|>",
|
| 13 |
+
"<|begin_of_image|>",
|
| 14 |
+
"<|end_of_image|>",
|
| 15 |
+
"<|begin_of_video|>",
|
| 16 |
+
"<|end_of_video|>",
|
| 17 |
+
"<|image|>",
|
| 18 |
+
"<|video|>",
|
| 19 |
+
{
|
| 20 |
+
"content": "</answer>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false
|
| 25 |
+
}
|
| 26 |
+
],
|
| 27 |
+
"eos_token": {
|
| 28 |
+
"content": "<|endoftext|>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false
|
| 33 |
+
},
|
| 34 |
+
"pad_token": {
|
| 35 |
+
"content": "<|endoftext|>",
|
| 36 |
+
"lstrip": false,
|
| 37 |
+
"normalized": false,
|
| 38 |
+
"rstrip": false,
|
| 39 |
+
"single_word": false
|
| 40 |
+
}
|
| 41 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:101316610e090352dfb245a9ad884f7ef1c98d218e0084b01df053f5de10a742
|
| 3 |
+
size 19968182
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,222 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"151329": {
|
| 4 |
+
"content": "<|endoftext|>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"151330": {
|
| 12 |
+
"content": "[MASK]",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"151331": {
|
| 20 |
+
"content": "[gMASK]",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"151332": {
|
| 28 |
+
"content": "[sMASK]",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"151333": {
|
| 36 |
+
"content": "<sop>",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
},
|
| 43 |
+
"151334": {
|
| 44 |
+
"content": "<eop>",
|
| 45 |
+
"lstrip": false,
|
| 46 |
+
"normalized": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"single_word": false,
|
| 49 |
+
"special": true
|
| 50 |
+
},
|
| 51 |
+
"151335": {
|
| 52 |
+
"content": "<|system|>",
|
| 53 |
+
"lstrip": false,
|
| 54 |
+
"normalized": false,
|
| 55 |
+
"rstrip": false,
|
| 56 |
+
"single_word": false,
|
| 57 |
+
"special": true
|
| 58 |
+
},
|
| 59 |
+
"151336": {
|
| 60 |
+
"content": "<|user|>",
|
| 61 |
+
"lstrip": false,
|
| 62 |
+
"normalized": false,
|
| 63 |
+
"rstrip": false,
|
| 64 |
+
"single_word": false,
|
| 65 |
+
"special": true
|
| 66 |
+
},
|
| 67 |
+
"151337": {
|
| 68 |
+
"content": "<|assistant|>",
|
| 69 |
+
"lstrip": false,
|
| 70 |
+
"normalized": false,
|
| 71 |
+
"rstrip": false,
|
| 72 |
+
"single_word": false,
|
| 73 |
+
"special": true
|
| 74 |
+
},
|
| 75 |
+
"151338": {
|
| 76 |
+
"content": "<|observation|>",
|
| 77 |
+
"lstrip": false,
|
| 78 |
+
"normalized": false,
|
| 79 |
+
"rstrip": false,
|
| 80 |
+
"single_word": false,
|
| 81 |
+
"special": true
|
| 82 |
+
},
|
| 83 |
+
"151339": {
|
| 84 |
+
"content": "<|begin_of_image|>",
|
| 85 |
+
"lstrip": false,
|
| 86 |
+
"normalized": false,
|
| 87 |
+
"rstrip": false,
|
| 88 |
+
"single_word": false,
|
| 89 |
+
"special": true
|
| 90 |
+
},
|
| 91 |
+
"151340": {
|
| 92 |
+
"content": "<|end_of_image|>",
|
| 93 |
+
"lstrip": false,
|
| 94 |
+
"normalized": false,
|
| 95 |
+
"rstrip": false,
|
| 96 |
+
"single_word": false,
|
| 97 |
+
"special": true
|
| 98 |
+
},
|
| 99 |
+
"151341": {
|
| 100 |
+
"content": "<|begin_of_video|>",
|
| 101 |
+
"lstrip": false,
|
| 102 |
+
"normalized": false,
|
| 103 |
+
"rstrip": false,
|
| 104 |
+
"single_word": false,
|
| 105 |
+
"special": true
|
| 106 |
+
},
|
| 107 |
+
"151342": {
|
| 108 |
+
"content": "<|end_of_video|>",
|
| 109 |
+
"lstrip": false,
|
| 110 |
+
"normalized": false,
|
| 111 |
+
"rstrip": false,
|
| 112 |
+
"single_word": false,
|
| 113 |
+
"special": true
|
| 114 |
+
},
|
| 115 |
+
"151343": {
|
| 116 |
+
"content": "<|image|>",
|
| 117 |
+
"lstrip": false,
|
| 118 |
+
"normalized": false,
|
| 119 |
+
"rstrip": false,
|
| 120 |
+
"single_word": false,
|
| 121 |
+
"special": true
|
| 122 |
+
},
|
| 123 |
+
"151344": {
|
| 124 |
+
"content": "<|video|>",
|
| 125 |
+
"lstrip": false,
|
| 126 |
+
"normalized": false,
|
| 127 |
+
"rstrip": false,
|
| 128 |
+
"single_word": false,
|
| 129 |
+
"special": true
|
| 130 |
+
},
|
| 131 |
+
"151345": {
|
| 132 |
+
"content": "<think>",
|
| 133 |
+
"lstrip": false,
|
| 134 |
+
"normalized": false,
|
| 135 |
+
"rstrip": false,
|
| 136 |
+
"single_word": false,
|
| 137 |
+
"special": false
|
| 138 |
+
},
|
| 139 |
+
"151346": {
|
| 140 |
+
"content": "</think>",
|
| 141 |
+
"lstrip": false,
|
| 142 |
+
"normalized": false,
|
| 143 |
+
"rstrip": false,
|
| 144 |
+
"single_word": false,
|
| 145 |
+
"special": false
|
| 146 |
+
},
|
| 147 |
+
"151347": {
|
| 148 |
+
"content": "<answer>",
|
| 149 |
+
"lstrip": false,
|
| 150 |
+
"normalized": false,
|
| 151 |
+
"rstrip": false,
|
| 152 |
+
"single_word": false,
|
| 153 |
+
"special": false
|
| 154 |
+
},
|
| 155 |
+
"151348": {
|
| 156 |
+
"content": "</answer>",
|
| 157 |
+
"lstrip": false,
|
| 158 |
+
"normalized": false,
|
| 159 |
+
"rstrip": false,
|
| 160 |
+
"single_word": false,
|
| 161 |
+
"special": true
|
| 162 |
+
},
|
| 163 |
+
"151349": {
|
| 164 |
+
"content": "<|begin_of_box|>",
|
| 165 |
+
"lstrip": false,
|
| 166 |
+
"normalized": false,
|
| 167 |
+
"rstrip": false,
|
| 168 |
+
"single_word": false,
|
| 169 |
+
"special": false
|
| 170 |
+
},
|
| 171 |
+
"151350": {
|
| 172 |
+
"content": "<|end_of_box|>",
|
| 173 |
+
"lstrip": false,
|
| 174 |
+
"normalized": false,
|
| 175 |
+
"rstrip": false,
|
| 176 |
+
"single_word": false,
|
| 177 |
+
"special": false
|
| 178 |
+
},
|
| 179 |
+
"151351": {
|
| 180 |
+
"content": "<|sep|>",
|
| 181 |
+
"lstrip": false,
|
| 182 |
+
"normalized": false,
|
| 183 |
+
"rstrip": false,
|
| 184 |
+
"single_word": false,
|
| 185 |
+
"special": false
|
| 186 |
+
}
|
| 187 |
+
},
|
| 188 |
+
"additional_special_tokens": [
|
| 189 |
+
"<|endoftext|>",
|
| 190 |
+
"[MASK]",
|
| 191 |
+
"[gMASK]",
|
| 192 |
+
"[sMASK]",
|
| 193 |
+
"<sop>",
|
| 194 |
+
"<eop>",
|
| 195 |
+
"<|system|>",
|
| 196 |
+
"<|user|>",
|
| 197 |
+
"<|assistant|>",
|
| 198 |
+
"<|observation|>",
|
| 199 |
+
"<|begin_of_image|>",
|
| 200 |
+
"<|end_of_image|>",
|
| 201 |
+
"<|begin_of_video|>",
|
| 202 |
+
"<|end_of_video|>",
|
| 203 |
+
"<|image|>",
|
| 204 |
+
"<|video|>",
|
| 205 |
+
"</answer>"
|
| 206 |
+
],
|
| 207 |
+
"clean_up_tokenization_spaces": false,
|
| 208 |
+
"do_lower_case": false,
|
| 209 |
+
"eos_token": "<|endoftext|>",
|
| 210 |
+
"extra_special_tokens": {},
|
| 211 |
+
"model_input_names": [
|
| 212 |
+
"input_ids",
|
| 213 |
+
"attention_mask"
|
| 214 |
+
],
|
| 215 |
+
"model_max_length": 65536,
|
| 216 |
+
"pad_token": "<|endoftext|>",
|
| 217 |
+
"padding_side": "right",
|
| 218 |
+
"processor_class": "Glm4vProcessor",
|
| 219 |
+
"remove_space": false,
|
| 220 |
+
"split_special_tokens": false,
|
| 221 |
+
"tokenizer_class": "PreTrainedTokenizerFast"
|
| 222 |
+
}
|
train_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 2.0,
|
| 3 |
+
"total_flos": 3771710697373696.0,
|
| 4 |
+
"train_loss": 0.06704422599041909,
|
| 5 |
+
"train_runtime": 34253.9666,
|
| 6 |
+
"train_samples_per_second": 17.026,
|
| 7 |
+
"train_steps_per_second": 0.089
|
| 8 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,2164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 3038,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.006584362139917695,
|
| 14 |
+
"grad_norm": 16.94489117069711,
|
| 15 |
+
"learning_rate": 5.921052631578947e-07,
|
| 16 |
+
"loss": 1.7535,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.01316872427983539,
|
| 21 |
+
"grad_norm": 8.859991586767253,
|
| 22 |
+
"learning_rate": 1.25e-06,
|
| 23 |
+
"loss": 1.2539,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.019753086419753086,
|
| 28 |
+
"grad_norm": 2.075143960034565,
|
| 29 |
+
"learning_rate": 1.9078947368421057e-06,
|
| 30 |
+
"loss": 0.467,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.02633744855967078,
|
| 35 |
+
"grad_norm": 0.5442095529063627,
|
| 36 |
+
"learning_rate": 2.565789473684211e-06,
|
| 37 |
+
"loss": 0.1226,
|
| 38 |
+
"step": 40
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.03292181069958848,
|
| 42 |
+
"grad_norm": 0.5355230081219307,
|
| 43 |
+
"learning_rate": 3.223684210526316e-06,
|
| 44 |
+
"loss": 0.0881,
|
| 45 |
+
"step": 50
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.03950617283950617,
|
| 49 |
+
"grad_norm": 0.53778689592408,
|
| 50 |
+
"learning_rate": 3.8815789473684214e-06,
|
| 51 |
+
"loss": 0.0814,
|
| 52 |
+
"step": 60
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.04609053497942387,
|
| 56 |
+
"grad_norm": 0.4850174158865047,
|
| 57 |
+
"learning_rate": 4.539473684210527e-06,
|
| 58 |
+
"loss": 0.0757,
|
| 59 |
+
"step": 70
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.05267489711934156,
|
| 63 |
+
"grad_norm": 0.5101825080408668,
|
| 64 |
+
"learning_rate": 5.197368421052632e-06,
|
| 65 |
+
"loss": 0.0706,
|
| 66 |
+
"step": 80
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.05925925925925926,
|
| 70 |
+
"grad_norm": 0.46233757532872244,
|
| 71 |
+
"learning_rate": 5.855263157894738e-06,
|
| 72 |
+
"loss": 0.0724,
|
| 73 |
+
"step": 90
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.06584362139917696,
|
| 77 |
+
"grad_norm": 0.6266803776619211,
|
| 78 |
+
"learning_rate": 6.513157894736842e-06,
|
| 79 |
+
"loss": 0.071,
|
| 80 |
+
"step": 100
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.07242798353909465,
|
| 84 |
+
"grad_norm": 0.5540120954026315,
|
| 85 |
+
"learning_rate": 7.1710526315789475e-06,
|
| 86 |
+
"loss": 0.0702,
|
| 87 |
+
"step": 110
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.07901234567901234,
|
| 91 |
+
"grad_norm": 0.5523585586762507,
|
| 92 |
+
"learning_rate": 7.828947368421054e-06,
|
| 93 |
+
"loss": 0.0699,
|
| 94 |
+
"step": 120
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.08559670781893004,
|
| 98 |
+
"grad_norm": 0.5531513796186659,
|
| 99 |
+
"learning_rate": 8.486842105263159e-06,
|
| 100 |
+
"loss": 0.074,
|
| 101 |
+
"step": 130
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.09218106995884774,
|
| 105 |
+
"grad_norm": 0.5714508163654194,
|
| 106 |
+
"learning_rate": 9.144736842105264e-06,
|
| 107 |
+
"loss": 0.0723,
|
| 108 |
+
"step": 140
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.09876543209876543,
|
| 112 |
+
"grad_norm": 0.6508444768762316,
|
| 113 |
+
"learning_rate": 9.80263157894737e-06,
|
| 114 |
+
"loss": 0.0696,
|
| 115 |
+
"step": 150
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.10534979423868313,
|
| 119 |
+
"grad_norm": 0.6373731668098953,
|
| 120 |
+
"learning_rate": 1.0460526315789474e-05,
|
| 121 |
+
"loss": 0.0737,
|
| 122 |
+
"step": 160
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.11193415637860082,
|
| 126 |
+
"grad_norm": 0.5215944852997055,
|
| 127 |
+
"learning_rate": 1.111842105263158e-05,
|
| 128 |
+
"loss": 0.0757,
|
| 129 |
+
"step": 170
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.11851851851851852,
|
| 133 |
+
"grad_norm": 0.3748452120567205,
|
| 134 |
+
"learning_rate": 1.1776315789473684e-05,
|
| 135 |
+
"loss": 0.0725,
|
| 136 |
+
"step": 180
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.12510288065843622,
|
| 140 |
+
"grad_norm": 0.46949418079968014,
|
| 141 |
+
"learning_rate": 1.2434210526315791e-05,
|
| 142 |
+
"loss": 0.0729,
|
| 143 |
+
"step": 190
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.13168724279835392,
|
| 147 |
+
"grad_norm": 0.4669252672418189,
|
| 148 |
+
"learning_rate": 1.3092105263157895e-05,
|
| 149 |
+
"loss": 0.0701,
|
| 150 |
+
"step": 200
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.1382716049382716,
|
| 154 |
+
"grad_norm": 0.40651078047311257,
|
| 155 |
+
"learning_rate": 1.375e-05,
|
| 156 |
+
"loss": 0.07,
|
| 157 |
+
"step": 210
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.1448559670781893,
|
| 161 |
+
"grad_norm": 0.3734487172816472,
|
| 162 |
+
"learning_rate": 1.4407894736842108e-05,
|
| 163 |
+
"loss": 0.0717,
|
| 164 |
+
"step": 220
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.151440329218107,
|
| 168 |
+
"grad_norm": 0.35984990509833603,
|
| 169 |
+
"learning_rate": 1.5065789473684211e-05,
|
| 170 |
+
"loss": 0.0742,
|
| 171 |
+
"step": 230
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.1580246913580247,
|
| 175 |
+
"grad_norm": 0.5316375595082459,
|
| 176 |
+
"learning_rate": 1.572368421052632e-05,
|
| 177 |
+
"loss": 0.0792,
|
| 178 |
+
"step": 240
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.1646090534979424,
|
| 182 |
+
"grad_norm": 0.2582761022122272,
|
| 183 |
+
"learning_rate": 1.638157894736842e-05,
|
| 184 |
+
"loss": 0.073,
|
| 185 |
+
"step": 250
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.17119341563786009,
|
| 189 |
+
"grad_norm": 0.4363297164897905,
|
| 190 |
+
"learning_rate": 1.703947368421053e-05,
|
| 191 |
+
"loss": 0.0727,
|
| 192 |
+
"step": 260
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.17777777777777778,
|
| 196 |
+
"grad_norm": 0.4197644322559592,
|
| 197 |
+
"learning_rate": 1.769736842105263e-05,
|
| 198 |
+
"loss": 0.0736,
|
| 199 |
+
"step": 270
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.18436213991769548,
|
| 203 |
+
"grad_norm": 0.38889634627156217,
|
| 204 |
+
"learning_rate": 1.835526315789474e-05,
|
| 205 |
+
"loss": 0.0749,
|
| 206 |
+
"step": 280
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.19094650205761318,
|
| 210 |
+
"grad_norm": 0.39586272636605613,
|
| 211 |
+
"learning_rate": 1.9013157894736845e-05,
|
| 212 |
+
"loss": 0.0754,
|
| 213 |
+
"step": 290
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.19753086419753085,
|
| 217 |
+
"grad_norm": 0.3761946661545154,
|
| 218 |
+
"learning_rate": 1.9671052631578947e-05,
|
| 219 |
+
"loss": 0.0796,
|
| 220 |
+
"step": 300
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.20411522633744855,
|
| 224 |
+
"grad_norm": 0.4250884695412882,
|
| 225 |
+
"learning_rate": 1.999983495151461e-05,
|
| 226 |
+
"loss": 0.0805,
|
| 227 |
+
"step": 310
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.21069958847736625,
|
| 231 |
+
"grad_norm": 0.42967475726945525,
|
| 232 |
+
"learning_rate": 1.999851459632052e-05,
|
| 233 |
+
"loss": 0.0819,
|
| 234 |
+
"step": 320
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.21728395061728395,
|
| 238 |
+
"grad_norm": 0.3743577309340014,
|
| 239 |
+
"learning_rate": 1.999587406026899e-05,
|
| 240 |
+
"loss": 0.0759,
|
| 241 |
+
"step": 330
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.22386831275720165,
|
| 245 |
+
"grad_norm": 0.34570674035828175,
|
| 246 |
+
"learning_rate": 1.9991913692010336e-05,
|
| 247 |
+
"loss": 0.0772,
|
| 248 |
+
"step": 340
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.23045267489711935,
|
| 252 |
+
"grad_norm": 0.33260134395908936,
|
| 253 |
+
"learning_rate": 1.9986634014462463e-05,
|
| 254 |
+
"loss": 0.075,
|
| 255 |
+
"step": 350
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.23703703703703705,
|
| 259 |
+
"grad_norm": 0.2901700303682964,
|
| 260 |
+
"learning_rate": 1.998003572474184e-05,
|
| 261 |
+
"loss": 0.0732,
|
| 262 |
+
"step": 360
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.24362139917695474,
|
| 266 |
+
"grad_norm": 0.3420514339891425,
|
| 267 |
+
"learning_rate": 1.997211969407147e-05,
|
| 268 |
+
"loss": 0.0757,
|
| 269 |
+
"step": 370
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 0.25020576131687244,
|
| 273 |
+
"grad_norm": 0.3395419325716837,
|
| 274 |
+
"learning_rate": 1.9962886967665807e-05,
|
| 275 |
+
"loss": 0.0783,
|
| 276 |
+
"step": 380
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.25679012345679014,
|
| 280 |
+
"grad_norm": 0.3880605655914281,
|
| 281 |
+
"learning_rate": 1.9952338764592815e-05,
|
| 282 |
+
"loss": 0.0759,
|
| 283 |
+
"step": 390
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 0.26337448559670784,
|
| 287 |
+
"grad_norm": 0.2883781783386072,
|
| 288 |
+
"learning_rate": 1.9940476477612945e-05,
|
| 289 |
+
"loss": 0.0757,
|
| 290 |
+
"step": 400
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.26995884773662554,
|
| 294 |
+
"grad_norm": 0.3338258849572171,
|
| 295 |
+
"learning_rate": 1.992730167299527e-05,
|
| 296 |
+
"loss": 0.0747,
|
| 297 |
+
"step": 410
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 0.2765432098765432,
|
| 301 |
+
"grad_norm": 0.39547557944899164,
|
| 302 |
+
"learning_rate": 1.9912816090310677e-05,
|
| 303 |
+
"loss": 0.0744,
|
| 304 |
+
"step": 420
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.2831275720164609,
|
| 308 |
+
"grad_norm": 0.35844083352453676,
|
| 309 |
+
"learning_rate": 1.9897021642202163e-05,
|
| 310 |
+
"loss": 0.0782,
|
| 311 |
+
"step": 430
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 0.2897119341563786,
|
| 315 |
+
"grad_norm": 0.4272864277469304,
|
| 316 |
+
"learning_rate": 1.9879920414132305e-05,
|
| 317 |
+
"loss": 0.075,
|
| 318 |
+
"step": 440
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.2962962962962963,
|
| 322 |
+
"grad_norm": 0.3767414865383142,
|
| 323 |
+
"learning_rate": 1.986151466410791e-05,
|
| 324 |
+
"loss": 0.0744,
|
| 325 |
+
"step": 450
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.302880658436214,
|
| 329 |
+
"grad_norm": 0.294650325367507,
|
| 330 |
+
"learning_rate": 1.984180682238185e-05,
|
| 331 |
+
"loss": 0.0739,
|
| 332 |
+
"step": 460
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.3094650205761317,
|
| 336 |
+
"grad_norm": 0.34413977912636246,
|
| 337 |
+
"learning_rate": 1.9820799491132196e-05,
|
| 338 |
+
"loss": 0.073,
|
| 339 |
+
"step": 470
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 0.3160493827160494,
|
| 343 |
+
"grad_norm": 0.3027743204483976,
|
| 344 |
+
"learning_rate": 1.9798495444118612e-05,
|
| 345 |
+
"loss": 0.072,
|
| 346 |
+
"step": 480
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.3226337448559671,
|
| 350 |
+
"grad_norm": 0.33099543278662436,
|
| 351 |
+
"learning_rate": 1.9774897626316142e-05,
|
| 352 |
+
"loss": 0.074,
|
| 353 |
+
"step": 490
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 0.3292181069958848,
|
| 357 |
+
"grad_norm": 2.8286706623610964,
|
| 358 |
+
"learning_rate": 1.9750009153526345e-05,
|
| 359 |
+
"loss": 0.072,
|
| 360 |
+
"step": 500
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.3358024691358025,
|
| 364 |
+
"grad_norm": 1.168919329951862,
|
| 365 |
+
"learning_rate": 1.972383331196589e-05,
|
| 366 |
+
"loss": 0.121,
|
| 367 |
+
"step": 510
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 0.34238683127572017,
|
| 371 |
+
"grad_norm": 1.417074927074083,
|
| 372 |
+
"learning_rate": 1.9696373557832656e-05,
|
| 373 |
+
"loss": 0.1133,
|
| 374 |
+
"step": 520
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.34897119341563787,
|
| 378 |
+
"grad_norm": 0.38096667028056896,
|
| 379 |
+
"learning_rate": 1.9667633516849386e-05,
|
| 380 |
+
"loss": 0.0737,
|
| 381 |
+
"step": 530
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 0.35555555555555557,
|
| 385 |
+
"grad_norm": 0.29346575341126296,
|
| 386 |
+
"learning_rate": 1.963761698378495e-05,
|
| 387 |
+
"loss": 0.0732,
|
| 388 |
+
"step": 540
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.36213991769547327,
|
| 392 |
+
"grad_norm": 0.3123097226662431,
|
| 393 |
+
"learning_rate": 1.9606327921953296e-05,
|
| 394 |
+
"loss": 0.0699,
|
| 395 |
+
"step": 550
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 0.36872427983539097,
|
| 399 |
+
"grad_norm": 0.29306500953532727,
|
| 400 |
+
"learning_rate": 1.957377046269014e-05,
|
| 401 |
+
"loss": 0.0715,
|
| 402 |
+
"step": 560
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.37530864197530867,
|
| 406 |
+
"grad_norm": 0.30032528958941135,
|
| 407 |
+
"learning_rate": 1.9539948904807486e-05,
|
| 408 |
+
"loss": 0.0658,
|
| 409 |
+
"step": 570
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.38189300411522636,
|
| 413 |
+
"grad_norm": 0.3927708921682921,
|
| 414 |
+
"learning_rate": 1.9504867714025993e-05,
|
| 415 |
+
"loss": 0.0705,
|
| 416 |
+
"step": 580
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.388477366255144,
|
| 420 |
+
"grad_norm": 0.4267148067486437,
|
| 421 |
+
"learning_rate": 1.946853152238536e-05,
|
| 422 |
+
"loss": 0.0728,
|
| 423 |
+
"step": 590
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 0.3950617283950617,
|
| 427 |
+
"grad_norm": 0.28126136574538696,
|
| 428 |
+
"learning_rate": 1.9430945127632714e-05,
|
| 429 |
+
"loss": 0.0687,
|
| 430 |
+
"step": 600
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.4016460905349794,
|
| 434 |
+
"grad_norm": 0.2602257658508144,
|
| 435 |
+
"learning_rate": 1.939211349258912e-05,
|
| 436 |
+
"loss": 0.0721,
|
| 437 |
+
"step": 610
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 0.4082304526748971,
|
| 441 |
+
"grad_norm": 0.2815558626070043,
|
| 442 |
+
"learning_rate": 1.93520417444943e-05,
|
| 443 |
+
"loss": 0.0742,
|
| 444 |
+
"step": 620
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.4148148148148148,
|
| 448 |
+
"grad_norm": 0.31858259712820597,
|
| 449 |
+
"learning_rate": 1.9310735174329654e-05,
|
| 450 |
+
"loss": 0.0692,
|
| 451 |
+
"step": 630
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.4213991769547325,
|
| 455 |
+
"grad_norm": 0.3269949366706829,
|
| 456 |
+
"learning_rate": 1.926819923611965e-05,
|
| 457 |
+
"loss": 0.0729,
|
| 458 |
+
"step": 640
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.4279835390946502,
|
| 462 |
+
"grad_norm": 0.3256202782623892,
|
| 463 |
+
"learning_rate": 1.9224439546211678e-05,
|
| 464 |
+
"loss": 0.0677,
|
| 465 |
+
"step": 650
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 0.4345679012345679,
|
| 469 |
+
"grad_norm": 0.2850429632430984,
|
| 470 |
+
"learning_rate": 1.9179461882534488e-05,
|
| 471 |
+
"loss": 0.0683,
|
| 472 |
+
"step": 660
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.4411522633744856,
|
| 476 |
+
"grad_norm": 0.28386859115576163,
|
| 477 |
+
"learning_rate": 1.9133272183835286e-05,
|
| 478 |
+
"loss": 0.07,
|
| 479 |
+
"step": 670
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 0.4477366255144033,
|
| 483 |
+
"grad_norm": 0.3262557709872669,
|
| 484 |
+
"learning_rate": 1.908587654889559e-05,
|
| 485 |
+
"loss": 0.0703,
|
| 486 |
+
"step": 680
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.454320987654321,
|
| 490 |
+
"grad_norm": 0.32998452713524645,
|
| 491 |
+
"learning_rate": 1.9037281235725965e-05,
|
| 492 |
+
"loss": 0.0694,
|
| 493 |
+
"step": 690
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 0.4609053497942387,
|
| 497 |
+
"grad_norm": 0.2853898322751637,
|
| 498 |
+
"learning_rate": 1.8987492660739725e-05,
|
| 499 |
+
"loss": 0.0653,
|
| 500 |
+
"step": 700
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.4674897119341564,
|
| 504 |
+
"grad_norm": 0.2964101006678424,
|
| 505 |
+
"learning_rate": 1.8936517397905728e-05,
|
| 506 |
+
"loss": 0.0704,
|
| 507 |
+
"step": 710
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 0.4740740740740741,
|
| 511 |
+
"grad_norm": 0.37173379047398913,
|
| 512 |
+
"learning_rate": 1.888436217788038e-05,
|
| 513 |
+
"loss": 0.0703,
|
| 514 |
+
"step": 720
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.4806584362139918,
|
| 518 |
+
"grad_norm": 0.34431108355883716,
|
| 519 |
+
"learning_rate": 1.8831033887118893e-05,
|
| 520 |
+
"loss": 0.0707,
|
| 521 |
+
"step": 730
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 0.4872427983539095,
|
| 525 |
+
"grad_norm": 0.2772646446879623,
|
| 526 |
+
"learning_rate": 1.8776539566966066e-05,
|
| 527 |
+
"loss": 0.0723,
|
| 528 |
+
"step": 740
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.49382716049382713,
|
| 532 |
+
"grad_norm": 0.2789128124993562,
|
| 533 |
+
"learning_rate": 1.8720886412726515e-05,
|
| 534 |
+
"loss": 0.0691,
|
| 535 |
+
"step": 750
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 0.5004115226337449,
|
| 539 |
+
"grad_norm": 0.358972355330604,
|
| 540 |
+
"learning_rate": 1.8664081772714647e-05,
|
| 541 |
+
"loss": 0.0735,
|
| 542 |
+
"step": 760
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.5069958847736625,
|
| 546 |
+
"grad_norm": 0.3390004226510688,
|
| 547 |
+
"learning_rate": 1.860613314728441e-05,
|
| 548 |
+
"loss": 0.0671,
|
| 549 |
+
"step": 770
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 0.5135802469135803,
|
| 553 |
+
"grad_norm": 0.2803284917324781,
|
| 554 |
+
"learning_rate": 1.8547048187838943e-05,
|
| 555 |
+
"loss": 0.0682,
|
| 556 |
+
"step": 780
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.5201646090534979,
|
| 560 |
+
"grad_norm": 0.39106099409850015,
|
| 561 |
+
"learning_rate": 1.848683469582032e-05,
|
| 562 |
+
"loss": 0.0718,
|
| 563 |
+
"step": 790
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 0.5267489711934157,
|
| 567 |
+
"grad_norm": 0.3785492333343748,
|
| 568 |
+
"learning_rate": 1.8425500621679454e-05,
|
| 569 |
+
"loss": 0.0725,
|
| 570 |
+
"step": 800
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.5333333333333333,
|
| 574 |
+
"grad_norm": 0.30859125161768913,
|
| 575 |
+
"learning_rate": 1.8363054063826343e-05,
|
| 576 |
+
"loss": 0.072,
|
| 577 |
+
"step": 810
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.5399176954732511,
|
| 581 |
+
"grad_norm": 0.2849783715486278,
|
| 582 |
+
"learning_rate": 1.8299503267560782e-05,
|
| 583 |
+
"loss": 0.0718,
|
| 584 |
+
"step": 820
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.5465020576131687,
|
| 588 |
+
"grad_norm": 0.280774494956223,
|
| 589 |
+
"learning_rate": 1.8234856623983653e-05,
|
| 590 |
+
"loss": 0.0688,
|
| 591 |
+
"step": 830
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 0.5530864197530864,
|
| 595 |
+
"grad_norm": 0.36360987461834693,
|
| 596 |
+
"learning_rate": 1.8169122668889e-05,
|
| 597 |
+
"loss": 0.0698,
|
| 598 |
+
"step": 840
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.5596707818930041,
|
| 602 |
+
"grad_norm": 0.28076100136621623,
|
| 603 |
+
"learning_rate": 1.8102310081636983e-05,
|
| 604 |
+
"loss": 0.0682,
|
| 605 |
+
"step": 850
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 0.5662551440329218,
|
| 609 |
+
"grad_norm": 0.288883908927145,
|
| 610 |
+
"learning_rate": 1.8034427684007865e-05,
|
| 611 |
+
"loss": 0.0625,
|
| 612 |
+
"step": 860
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.5728395061728395,
|
| 616 |
+
"grad_norm": 0.33603054257245285,
|
| 617 |
+
"learning_rate": 1.7965484439037206e-05,
|
| 618 |
+
"loss": 0.0684,
|
| 619 |
+
"step": 870
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 0.5794238683127572,
|
| 623 |
+
"grad_norm": 0.3327862519871356,
|
| 624 |
+
"learning_rate": 1.789548944983241e-05,
|
| 625 |
+
"loss": 0.0725,
|
| 626 |
+
"step": 880
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.5860082304526749,
|
| 630 |
+
"grad_norm": 0.3221835656786138,
|
| 631 |
+
"learning_rate": 1.7824451958370774e-05,
|
| 632 |
+
"loss": 0.0675,
|
| 633 |
+
"step": 890
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 0.5925925925925926,
|
| 637 |
+
"grad_norm": 0.28195104087059997,
|
| 638 |
+
"learning_rate": 1.775238134427919e-05,
|
| 639 |
+
"loss": 0.0693,
|
| 640 |
+
"step": 900
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.5991769547325103,
|
| 644 |
+
"grad_norm": 0.3327008369024166,
|
| 645 |
+
"learning_rate": 1.767928712359568e-05,
|
| 646 |
+
"loss": 0.0681,
|
| 647 |
+
"step": 910
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 0.605761316872428,
|
| 651 |
+
"grad_norm": 0.35690676600607474,
|
| 652 |
+
"learning_rate": 1.7605178947512927e-05,
|
| 653 |
+
"loss": 0.0737,
|
| 654 |
+
"step": 920
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.6123456790123457,
|
| 658 |
+
"grad_norm": 0.3412188552301251,
|
| 659 |
+
"learning_rate": 1.753006660110397e-05,
|
| 660 |
+
"loss": 0.0645,
|
| 661 |
+
"step": 930
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 0.6189300411522634,
|
| 665 |
+
"grad_norm": 0.29018005763996296,
|
| 666 |
+
"learning_rate": 1.745396000203015e-05,
|
| 667 |
+
"loss": 0.0665,
|
| 668 |
+
"step": 940
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.6255144032921811,
|
| 672 |
+
"grad_norm": 0.2565775043232814,
|
| 673 |
+
"learning_rate": 1.7376869199231675e-05,
|
| 674 |
+
"loss": 0.0656,
|
| 675 |
+
"step": 950
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 0.6320987654320988,
|
| 679 |
+
"grad_norm": 0.2791175761665844,
|
| 680 |
+
"learning_rate": 1.7298804371600732e-05,
|
| 681 |
+
"loss": 0.0697,
|
| 682 |
+
"step": 960
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.6386831275720165,
|
| 686 |
+
"grad_norm": 0.2961938790167889,
|
| 687 |
+
"learning_rate": 1.7219775826637508e-05,
|
| 688 |
+
"loss": 0.0682,
|
| 689 |
+
"step": 970
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 0.6452674897119342,
|
| 693 |
+
"grad_norm": 0.310720015090511,
|
| 694 |
+
"learning_rate": 1.713979399908921e-05,
|
| 695 |
+
"loss": 0.0697,
|
| 696 |
+
"step": 980
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.6518518518518519,
|
| 700 |
+
"grad_norm": 0.31741581911825506,
|
| 701 |
+
"learning_rate": 1.7058869449572283e-05,
|
| 702 |
+
"loss": 0.0704,
|
| 703 |
+
"step": 990
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.6584362139917695,
|
| 707 |
+
"grad_norm": 0.25036646851841887,
|
| 708 |
+
"learning_rate": 1.697701286317801e-05,
|
| 709 |
+
"loss": 0.0674,
|
| 710 |
+
"step": 1000
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.6650205761316872,
|
| 714 |
+
"grad_norm": 0.30750003251490393,
|
| 715 |
+
"learning_rate": 1.6894235048061684e-05,
|
| 716 |
+
"loss": 0.069,
|
| 717 |
+
"step": 1010
|
| 718 |
+
},
|
| 719 |
+
{
|
| 720 |
+
"epoch": 0.671604938271605,
|
| 721 |
+
"grad_norm": 0.25736303550768286,
|
| 722 |
+
"learning_rate": 1.6810546934015506e-05,
|
| 723 |
+
"loss": 0.0712,
|
| 724 |
+
"step": 1020
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.6781893004115226,
|
| 728 |
+
"grad_norm": 0.3155820303320945,
|
| 729 |
+
"learning_rate": 1.672595957102547e-05,
|
| 730 |
+
"loss": 0.0669,
|
| 731 |
+
"step": 1030
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.6847736625514403,
|
| 735 |
+
"grad_norm": 0.3164269400573639,
|
| 736 |
+
"learning_rate": 1.664048412781232e-05,
|
| 737 |
+
"loss": 0.071,
|
| 738 |
+
"step": 1040
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.691358024691358,
|
| 742 |
+
"grad_norm": 0.2763190531728626,
|
| 743 |
+
"learning_rate": 1.655413189035686e-05,
|
| 744 |
+
"loss": 0.066,
|
| 745 |
+
"step": 1050
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"epoch": 0.6979423868312757,
|
| 749 |
+
"grad_norm": 0.29371479626382635,
|
| 750 |
+
"learning_rate": 1.646691426040981e-05,
|
| 751 |
+
"loss": 0.0658,
|
| 752 |
+
"step": 1060
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.7045267489711934,
|
| 756 |
+
"grad_norm": 0.28075444305992714,
|
| 757 |
+
"learning_rate": 1.637884275398631e-05,
|
| 758 |
+
"loss": 0.0617,
|
| 759 |
+
"step": 1070
|
| 760 |
+
},
|
| 761 |
+
{
|
| 762 |
+
"epoch": 0.7111111111111111,
|
| 763 |
+
"grad_norm": 0.30136424993159056,
|
| 764 |
+
"learning_rate": 1.6289928999845387e-05,
|
| 765 |
+
"loss": 0.0671,
|
| 766 |
+
"step": 1080
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.7176954732510288,
|
| 770 |
+
"grad_norm": 0.260175676828675,
|
| 771 |
+
"learning_rate": 1.6200184737954515e-05,
|
| 772 |
+
"loss": 0.0663,
|
| 773 |
+
"step": 1090
|
| 774 |
+
},
|
| 775 |
+
{
|
| 776 |
+
"epoch": 0.7242798353909465,
|
| 777 |
+
"grad_norm": 0.25757537953764154,
|
| 778 |
+
"learning_rate": 1.6109621817939503e-05,
|
| 779 |
+
"loss": 0.0677,
|
| 780 |
+
"step": 1100
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.7308641975308642,
|
| 784 |
+
"grad_norm": 0.3477032681102901,
|
| 785 |
+
"learning_rate": 1.60182521975199e-05,
|
| 786 |
+
"loss": 0.0706,
|
| 787 |
+
"step": 1110
|
| 788 |
+
},
|
| 789 |
+
{
|
| 790 |
+
"epoch": 0.7374485596707819,
|
| 791 |
+
"grad_norm": 0.3026822514515039,
|
| 792 |
+
"learning_rate": 1.5926087940930108e-05,
|
| 793 |
+
"loss": 0.0663,
|
| 794 |
+
"step": 1120
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.7440329218106996,
|
| 798 |
+
"grad_norm": 0.27135918905023065,
|
| 799 |
+
"learning_rate": 1.5833141217326474e-05,
|
| 800 |
+
"loss": 0.0636,
|
| 801 |
+
"step": 1130
|
| 802 |
+
},
|
| 803 |
+
{
|
| 804 |
+
"epoch": 0.7506172839506173,
|
| 805 |
+
"grad_norm": 0.32628846186337646,
|
| 806 |
+
"learning_rate": 1.5739424299180473e-05,
|
| 807 |
+
"loss": 0.064,
|
| 808 |
+
"step": 1140
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.757201646090535,
|
| 812 |
+
"grad_norm": 0.3078401324398714,
|
| 813 |
+
"learning_rate": 1.564494956065831e-05,
|
| 814 |
+
"loss": 0.0649,
|
| 815 |
+
"step": 1150
|
| 816 |
+
},
|
| 817 |
+
{
|
| 818 |
+
"epoch": 0.7637860082304527,
|
| 819 |
+
"grad_norm": 0.25416703467170093,
|
| 820 |
+
"learning_rate": 1.5549729475987045e-05,
|
| 821 |
+
"loss": 0.0657,
|
| 822 |
+
"step": 1160
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.7703703703703704,
|
| 826 |
+
"grad_norm": 0.2881081888932816,
|
| 827 |
+
"learning_rate": 1.5453776617807514e-05,
|
| 828 |
+
"loss": 0.0649,
|
| 829 |
+
"step": 1170
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.776954732510288,
|
| 833 |
+
"grad_norm": 0.30022122448678223,
|
| 834 |
+
"learning_rate": 1.53571036555143e-05,
|
| 835 |
+
"loss": 0.0684,
|
| 836 |
+
"step": 1180
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.7835390946502058,
|
| 840 |
+
"grad_norm": 0.33048446828934225,
|
| 841 |
+
"learning_rate": 1.525972335358287e-05,
|
| 842 |
+
"loss": 0.0671,
|
| 843 |
+
"step": 1190
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"epoch": 0.7901234567901234,
|
| 847 |
+
"grad_norm": 0.3613590972350096,
|
| 848 |
+
"learning_rate": 1.516164856988418e-05,
|
| 849 |
+
"loss": 0.0677,
|
| 850 |
+
"step": 1200
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.7967078189300412,
|
| 854 |
+
"grad_norm": 0.27185769524307135,
|
| 855 |
+
"learning_rate": 1.5062892253986974e-05,
|
| 856 |
+
"loss": 0.0601,
|
| 857 |
+
"step": 1210
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"epoch": 0.8032921810699588,
|
| 861 |
+
"grad_norm": 0.3090560452899117,
|
| 862 |
+
"learning_rate": 1.4963467445447925e-05,
|
| 863 |
+
"loss": 0.0664,
|
| 864 |
+
"step": 1220
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.8098765432098766,
|
| 868 |
+
"grad_norm": 0.2967875145368493,
|
| 869 |
+
"learning_rate": 1.4863387272089951e-05,
|
| 870 |
+
"loss": 0.0619,
|
| 871 |
+
"step": 1230
|
| 872 |
+
},
|
| 873 |
+
{
|
| 874 |
+
"epoch": 0.8164609053497942,
|
| 875 |
+
"grad_norm": 0.2819524057533708,
|
| 876 |
+
"learning_rate": 1.4762664948268819e-05,
|
| 877 |
+
"loss": 0.0629,
|
| 878 |
+
"step": 1240
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.823045267489712,
|
| 882 |
+
"grad_norm": 0.26960961863052646,
|
| 883 |
+
"learning_rate": 1.4661313773128378e-05,
|
| 884 |
+
"loss": 0.0671,
|
| 885 |
+
"step": 1250
|
| 886 |
+
},
|
| 887 |
+
{
|
| 888 |
+
"epoch": 0.8296296296296296,
|
| 889 |
+
"grad_norm": 0.2603448502135837,
|
| 890 |
+
"learning_rate": 1.4559347128844543e-05,
|
| 891 |
+
"loss": 0.0616,
|
| 892 |
+
"step": 1260
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.8362139917695474,
|
| 896 |
+
"grad_norm": 0.27525610937960354,
|
| 897 |
+
"learning_rate": 1.445677847885837e-05,
|
| 898 |
+
"loss": 0.0664,
|
| 899 |
+
"step": 1270
|
| 900 |
+
},
|
| 901 |
+
{
|
| 902 |
+
"epoch": 0.842798353909465,
|
| 903 |
+
"grad_norm": 0.22605093521859634,
|
| 904 |
+
"learning_rate": 1.435362136609836e-05,
|
| 905 |
+
"loss": 0.0577,
|
| 906 |
+
"step": 1280
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 0.8493827160493828,
|
| 910 |
+
"grad_norm": 0.24864901698873845,
|
| 911 |
+
"learning_rate": 1.4249889411192285e-05,
|
| 912 |
+
"loss": 0.0645,
|
| 913 |
+
"step": 1290
|
| 914 |
+
},
|
| 915 |
+
{
|
| 916 |
+
"epoch": 0.8559670781893004,
|
| 917 |
+
"grad_norm": 0.34406433332005937,
|
| 918 |
+
"learning_rate": 1.4145596310668745e-05,
|
| 919 |
+
"loss": 0.0692,
|
| 920 |
+
"step": 1300
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 0.8625514403292182,
|
| 924 |
+
"grad_norm": 0.28721624391973316,
|
| 925 |
+
"learning_rate": 1.4040755835148726e-05,
|
| 926 |
+
"loss": 0.0634,
|
| 927 |
+
"step": 1310
|
| 928 |
+
},
|
| 929 |
+
{
|
| 930 |
+
"epoch": 0.8691358024691358,
|
| 931 |
+
"grad_norm": 0.23992833244716943,
|
| 932 |
+
"learning_rate": 1.3935381827527337e-05,
|
| 933 |
+
"loss": 0.0677,
|
| 934 |
+
"step": 1320
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.8757201646090536,
|
| 938 |
+
"grad_norm": 0.2736178034496462,
|
| 939 |
+
"learning_rate": 1.3829488201146048e-05,
|
| 940 |
+
"loss": 0.0578,
|
| 941 |
+
"step": 1330
|
| 942 |
+
},
|
| 943 |
+
{
|
| 944 |
+
"epoch": 0.8823045267489712,
|
| 945 |
+
"grad_norm": 0.23190529623665304,
|
| 946 |
+
"learning_rate": 1.372308893795559e-05,
|
| 947 |
+
"loss": 0.0637,
|
| 948 |
+
"step": 1340
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 0.8888888888888888,
|
| 952 |
+
"grad_norm": 0.3074951163100435,
|
| 953 |
+
"learning_rate": 1.3616198086669814e-05,
|
| 954 |
+
"loss": 0.0605,
|
| 955 |
+
"step": 1350
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 0.8954732510288066,
|
| 959 |
+
"grad_norm": 0.3372946062104279,
|
| 960 |
+
"learning_rate": 1.3508829760910733e-05,
|
| 961 |
+
"loss": 0.0634,
|
| 962 |
+
"step": 1360
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 0.9020576131687242,
|
| 966 |
+
"grad_norm": 0.27411971079704744,
|
| 967 |
+
"learning_rate": 1.3400998137344988e-05,
|
| 968 |
+
"loss": 0.0649,
|
| 969 |
+
"step": 1370
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"epoch": 0.908641975308642,
|
| 973 |
+
"grad_norm": 0.28065392133225836,
|
| 974 |
+
"learning_rate": 1.3292717453812007e-05,
|
| 975 |
+
"loss": 0.0664,
|
| 976 |
+
"step": 1380
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 0.9152263374485596,
|
| 980 |
+
"grad_norm": 0.24381176230064203,
|
| 981 |
+
"learning_rate": 1.3184002007444047e-05,
|
| 982 |
+
"loss": 0.0609,
|
| 983 |
+
"step": 1390
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"epoch": 0.9218106995884774,
|
| 987 |
+
"grad_norm": 0.2661053065569555,
|
| 988 |
+
"learning_rate": 1.307486615277846e-05,
|
| 989 |
+
"loss": 0.065,
|
| 990 |
+
"step": 1400
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.928395061728395,
|
| 994 |
+
"grad_norm": 0.2566543696146929,
|
| 995 |
+
"learning_rate": 1.2965324299862333e-05,
|
| 996 |
+
"loss": 0.0605,
|
| 997 |
+
"step": 1410
|
| 998 |
+
},
|
| 999 |
+
{
|
| 1000 |
+
"epoch": 0.9349794238683128,
|
| 1001 |
+
"grad_norm": 0.2743337005891253,
|
| 1002 |
+
"learning_rate": 1.2855390912349841e-05,
|
| 1003 |
+
"loss": 0.0615,
|
| 1004 |
+
"step": 1420
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 0.9415637860082304,
|
| 1008 |
+
"grad_norm": 0.27142150674415816,
|
| 1009 |
+
"learning_rate": 1.2745080505592473e-05,
|
| 1010 |
+
"loss": 0.0638,
|
| 1011 |
+
"step": 1430
|
| 1012 |
+
},
|
| 1013 |
+
{
|
| 1014 |
+
"epoch": 0.9481481481481482,
|
| 1015 |
+
"grad_norm": 0.3376407664510331,
|
| 1016 |
+
"learning_rate": 1.2634407644722475e-05,
|
| 1017 |
+
"loss": 0.063,
|
| 1018 |
+
"step": 1440
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.9547325102880658,
|
| 1022 |
+
"grad_norm": 0.2943710963213783,
|
| 1023 |
+
"learning_rate": 1.2523386942729711e-05,
|
| 1024 |
+
"loss": 0.0661,
|
| 1025 |
+
"step": 1450
|
| 1026 |
+
},
|
| 1027 |
+
{
|
| 1028 |
+
"epoch": 0.9613168724279836,
|
| 1029 |
+
"grad_norm": 0.27205493163410066,
|
| 1030 |
+
"learning_rate": 1.2412033058532166e-05,
|
| 1031 |
+
"loss": 0.0582,
|
| 1032 |
+
"step": 1460
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 0.9679012345679012,
|
| 1036 |
+
"grad_norm": 0.2882900893916512,
|
| 1037 |
+
"learning_rate": 1.2300360695040455e-05,
|
| 1038 |
+
"loss": 0.0603,
|
| 1039 |
+
"step": 1470
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"epoch": 0.974485596707819,
|
| 1043 |
+
"grad_norm": 0.2699431138398926,
|
| 1044 |
+
"learning_rate": 1.2188384597216456e-05,
|
| 1045 |
+
"loss": 0.0631,
|
| 1046 |
+
"step": 1480
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 0.9810699588477366,
|
| 1050 |
+
"grad_norm": 0.27437035738940724,
|
| 1051 |
+
"learning_rate": 1.2076119550126434e-05,
|
| 1052 |
+
"loss": 0.0629,
|
| 1053 |
+
"step": 1490
|
| 1054 |
+
},
|
| 1055 |
+
{
|
| 1056 |
+
"epoch": 0.9876543209876543,
|
| 1057 |
+
"grad_norm": 0.2679913859251194,
|
| 1058 |
+
"learning_rate": 1.196358037698884e-05,
|
| 1059 |
+
"loss": 0.0609,
|
| 1060 |
+
"step": 1500
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 0.994238683127572,
|
| 1064 |
+
"grad_norm": 0.26054011722862475,
|
| 1065 |
+
"learning_rate": 1.1850781937217118e-05,
|
| 1066 |
+
"loss": 0.0603,
|
| 1067 |
+
"step": 1510
|
| 1068 |
+
},
|
| 1069 |
+
{
|
| 1070 |
+
"epoch": 1.0006584362139919,
|
| 1071 |
+
"grad_norm": 0.2802502838189846,
|
| 1072 |
+
"learning_rate": 1.1737739124457659e-05,
|
| 1073 |
+
"loss": 0.0579,
|
| 1074 |
+
"step": 1520
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 1.0072427983539094,
|
| 1078 |
+
"grad_norm": 0.35510024410868773,
|
| 1079 |
+
"learning_rate": 1.1624466864623318e-05,
|
| 1080 |
+
"loss": 0.0507,
|
| 1081 |
+
"step": 1530
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 1.0138271604938272,
|
| 1085 |
+
"grad_norm": 0.277681593699746,
|
| 1086 |
+
"learning_rate": 1.1510980113922603e-05,
|
| 1087 |
+
"loss": 0.0489,
|
| 1088 |
+
"step": 1540
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 1.020411522633745,
|
| 1092 |
+
"grad_norm": 0.3288263931355778,
|
| 1093 |
+
"learning_rate": 1.1397293856884905e-05,
|
| 1094 |
+
"loss": 0.0491,
|
| 1095 |
+
"step": 1550
|
| 1096 |
+
},
|
| 1097 |
+
{
|
| 1098 |
+
"epoch": 1.0269958847736627,
|
| 1099 |
+
"grad_norm": 0.3194763227922266,
|
| 1100 |
+
"learning_rate": 1.1283423104381982e-05,
|
| 1101 |
+
"loss": 0.0483,
|
| 1102 |
+
"step": 1560
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 1.0335802469135802,
|
| 1106 |
+
"grad_norm": 0.2040227272582597,
|
| 1107 |
+
"learning_rate": 1.1169382891645926e-05,
|
| 1108 |
+
"loss": 0.045,
|
| 1109 |
+
"step": 1570
|
| 1110 |
+
},
|
| 1111 |
+
{
|
| 1112 |
+
"epoch": 1.040164609053498,
|
| 1113 |
+
"grad_norm": 0.2365516786275801,
|
| 1114 |
+
"learning_rate": 1.1055188276283996e-05,
|
| 1115 |
+
"loss": 0.0501,
|
| 1116 |
+
"step": 1580
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"epoch": 1.0467489711934157,
|
| 1120 |
+
"grad_norm": 0.2860681326747978,
|
| 1121 |
+
"learning_rate": 1.0940854336290398e-05,
|
| 1122 |
+
"loss": 0.0482,
|
| 1123 |
+
"step": 1590
|
| 1124 |
+
},
|
| 1125 |
+
{
|
| 1126 |
+
"epoch": 1.0533333333333332,
|
| 1127 |
+
"grad_norm": 0.2782290326046087,
|
| 1128 |
+
"learning_rate": 1.0826396168055453e-05,
|
| 1129 |
+
"loss": 0.0501,
|
| 1130 |
+
"step": 1600
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"epoch": 1.059917695473251,
|
| 1134 |
+
"grad_norm": 0.24475848111652504,
|
| 1135 |
+
"learning_rate": 1.0711828884372287e-05,
|
| 1136 |
+
"loss": 0.0474,
|
| 1137 |
+
"step": 1610
|
| 1138 |
+
},
|
| 1139 |
+
{
|
| 1140 |
+
"epoch": 1.0665020576131687,
|
| 1141 |
+
"grad_norm": 0.2810653047963972,
|
| 1142 |
+
"learning_rate": 1.059716761244138e-05,
|
| 1143 |
+
"loss": 0.0497,
|
| 1144 |
+
"step": 1620
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 1.0730864197530865,
|
| 1148 |
+
"grad_norm": 0.29025799663429724,
|
| 1149 |
+
"learning_rate": 1.0482427491873202e-05,
|
| 1150 |
+
"loss": 0.0495,
|
| 1151 |
+
"step": 1630
|
| 1152 |
+
},
|
| 1153 |
+
{
|
| 1154 |
+
"epoch": 1.079670781893004,
|
| 1155 |
+
"grad_norm": 0.2834170259334841,
|
| 1156 |
+
"learning_rate": 1.0367623672689225e-05,
|
| 1157 |
+
"loss": 0.0481,
|
| 1158 |
+
"step": 1640
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 1.0862551440329218,
|
| 1162 |
+
"grad_norm": 0.23229206192072585,
|
| 1163 |
+
"learning_rate": 1.0252771313321528e-05,
|
| 1164 |
+
"loss": 0.0487,
|
| 1165 |
+
"step": 1650
|
| 1166 |
+
},
|
| 1167 |
+
{
|
| 1168 |
+
"epoch": 1.0928395061728395,
|
| 1169 |
+
"grad_norm": 0.2876592601523108,
|
| 1170 |
+
"learning_rate": 1.013788557861133e-05,
|
| 1171 |
+
"loss": 0.0501,
|
| 1172 |
+
"step": 1660
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"epoch": 1.0994238683127573,
|
| 1176 |
+
"grad_norm": 0.22076045055427748,
|
| 1177 |
+
"learning_rate": 1.002298163780665e-05,
|
| 1178 |
+
"loss": 0.0495,
|
| 1179 |
+
"step": 1670
|
| 1180 |
+
},
|
| 1181 |
+
{
|
| 1182 |
+
"epoch": 1.1060082304526748,
|
| 1183 |
+
"grad_norm": 0.26630456708114275,
|
| 1184 |
+
"learning_rate": 9.908074662559403e-06,
|
| 1185 |
+
"loss": 0.0504,
|
| 1186 |
+
"step": 1680
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"epoch": 1.1125925925925926,
|
| 1190 |
+
"grad_norm": 0.3139296644641171,
|
| 1191 |
+
"learning_rate": 9.793179824922162e-06,
|
| 1192 |
+
"loss": 0.0519,
|
| 1193 |
+
"step": 1690
|
| 1194 |
+
},
|
| 1195 |
+
{
|
| 1196 |
+
"epoch": 1.1191769547325103,
|
| 1197 |
+
"grad_norm": 0.26535265666452507,
|
| 1198 |
+
"learning_rate": 9.67831229534488e-06,
|
| 1199 |
+
"loss": 0.0462,
|
| 1200 |
+
"step": 1700
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"epoch": 1.125761316872428,
|
| 1204 |
+
"grad_norm": 0.2447275618207565,
|
| 1205 |
+
"learning_rate": 9.563487240671808e-06,
|
| 1206 |
+
"loss": 0.046,
|
| 1207 |
+
"step": 1710
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"epoch": 1.1323456790123456,
|
| 1211 |
+
"grad_norm": 0.29887021341625364,
|
| 1212 |
+
"learning_rate": 9.44871982213892e-06,
|
| 1213 |
+
"loss": 0.0464,
|
| 1214 |
+
"step": 1720
|
| 1215 |
+
},
|
| 1216 |
+
{
|
| 1217 |
+
"epoch": 1.1389300411522634,
|
| 1218 |
+
"grad_norm": 0.2548535806101749,
|
| 1219 |
+
"learning_rate": 9.33402519337204e-06,
|
| 1220 |
+
"loss": 0.0466,
|
| 1221 |
+
"step": 1730
|
| 1222 |
+
},
|
| 1223 |
+
{
|
| 1224 |
+
"epoch": 1.1455144032921811,
|
| 1225 |
+
"grad_norm": 0.2435720674026185,
|
| 1226 |
+
"learning_rate": 9.219418498386002e-06,
|
| 1227 |
+
"loss": 0.0483,
|
| 1228 |
+
"step": 1740
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"epoch": 1.1520987654320987,
|
| 1232 |
+
"grad_norm": 0.33161507675613966,
|
| 1233 |
+
"learning_rate": 9.104914869585057e-06,
|
| 1234 |
+
"loss": 0.0492,
|
| 1235 |
+
"step": 1750
|
| 1236 |
+
},
|
| 1237 |
+
{
|
| 1238 |
+
"epoch": 1.1586831275720164,
|
| 1239 |
+
"grad_norm": 0.2949494236743323,
|
| 1240 |
+
"learning_rate": 8.99052942576485e-06,
|
| 1241 |
+
"loss": 0.0484,
|
| 1242 |
+
"step": 1760
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 1.1652674897119342,
|
| 1246 |
+
"grad_norm": 0.2896787745807131,
|
| 1247 |
+
"learning_rate": 8.876277270116146e-06,
|
| 1248 |
+
"loss": 0.0508,
|
| 1249 |
+
"step": 1770
|
| 1250 |
+
},
|
| 1251 |
+
{
|
| 1252 |
+
"epoch": 1.171851851851852,
|
| 1253 |
+
"grad_norm": 0.23254732847556894,
|
| 1254 |
+
"learning_rate": 8.762173488230636e-06,
|
| 1255 |
+
"loss": 0.0466,
|
| 1256 |
+
"step": 1780
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"epoch": 1.1784362139917695,
|
| 1260 |
+
"grad_norm": 0.24410269407834392,
|
| 1261 |
+
"learning_rate": 8.648233146109096e-06,
|
| 1262 |
+
"loss": 0.0453,
|
| 1263 |
+
"step": 1790
|
| 1264 |
+
},
|
| 1265 |
+
{
|
| 1266 |
+
"epoch": 1.1850205761316872,
|
| 1267 |
+
"grad_norm": 0.26054519963031003,
|
| 1268 |
+
"learning_rate": 8.534471288172088e-06,
|
| 1269 |
+
"loss": 0.0454,
|
| 1270 |
+
"step": 1800
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 1.191604938271605,
|
| 1274 |
+
"grad_norm": 0.256497827424079,
|
| 1275 |
+
"learning_rate": 8.420902935273519e-06,
|
| 1276 |
+
"loss": 0.048,
|
| 1277 |
+
"step": 1810
|
| 1278 |
+
},
|
| 1279 |
+
{
|
| 1280 |
+
"epoch": 1.1981893004115227,
|
| 1281 |
+
"grad_norm": 0.2974875612681633,
|
| 1282 |
+
"learning_rate": 8.30754308271736e-06,
|
| 1283 |
+
"loss": 0.0484,
|
| 1284 |
+
"step": 1820
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 1.2047736625514402,
|
| 1288 |
+
"grad_norm": 0.2771311630214479,
|
| 1289 |
+
"learning_rate": 8.194406698277662e-06,
|
| 1290 |
+
"loss": 0.0456,
|
| 1291 |
+
"step": 1830
|
| 1292 |
+
},
|
| 1293 |
+
{
|
| 1294 |
+
"epoch": 1.211358024691358,
|
| 1295 |
+
"grad_norm": 0.2578544317764551,
|
| 1296 |
+
"learning_rate": 8.081508720222258e-06,
|
| 1297 |
+
"loss": 0.0489,
|
| 1298 |
+
"step": 1840
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"epoch": 1.2179423868312758,
|
| 1302 |
+
"grad_norm": 0.2980262635958971,
|
| 1303 |
+
"learning_rate": 7.968864055340358e-06,
|
| 1304 |
+
"loss": 0.0465,
|
| 1305 |
+
"step": 1850
|
| 1306 |
+
},
|
| 1307 |
+
{
|
| 1308 |
+
"epoch": 1.2245267489711935,
|
| 1309 |
+
"grad_norm": 0.24044451552764326,
|
| 1310 |
+
"learning_rate": 7.85648757697428e-06,
|
| 1311 |
+
"loss": 0.0499,
|
| 1312 |
+
"step": 1860
|
| 1313 |
+
},
|
| 1314 |
+
{
|
| 1315 |
+
"epoch": 1.231111111111111,
|
| 1316 |
+
"grad_norm": 0.24934077402765678,
|
| 1317 |
+
"learning_rate": 7.744394123055612e-06,
|
| 1318 |
+
"loss": 0.0478,
|
| 1319 |
+
"step": 1870
|
| 1320 |
+
},
|
| 1321 |
+
{
|
| 1322 |
+
"epoch": 1.2376954732510288,
|
| 1323 |
+
"grad_norm": 0.30627124671375233,
|
| 1324 |
+
"learning_rate": 7.632598494146041e-06,
|
| 1325 |
+
"loss": 0.0474,
|
| 1326 |
+
"step": 1880
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"epoch": 1.2442798353909466,
|
| 1330 |
+
"grad_norm": 0.27856167370667784,
|
| 1331 |
+
"learning_rate": 7.521115451483143e-06,
|
| 1332 |
+
"loss": 0.0473,
|
| 1333 |
+
"step": 1890
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"epoch": 1.250864197530864,
|
| 1337 |
+
"grad_norm": 0.2934881906212686,
|
| 1338 |
+
"learning_rate": 7.4099597150312994e-06,
|
| 1339 |
+
"loss": 0.0483,
|
| 1340 |
+
"step": 1900
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"epoch": 1.2574485596707818,
|
| 1344 |
+
"grad_norm": 0.2812946240766539,
|
| 1345 |
+
"learning_rate": 7.2991459615381525e-06,
|
| 1346 |
+
"loss": 0.0446,
|
| 1347 |
+
"step": 1910
|
| 1348 |
+
},
|
| 1349 |
+
{
|
| 1350 |
+
"epoch": 1.2640329218106996,
|
| 1351 |
+
"grad_norm": 0.2873116667440875,
|
| 1352 |
+
"learning_rate": 7.18868882259669e-06,
|
| 1353 |
+
"loss": 0.0448,
|
| 1354 |
+
"step": 1920
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"epoch": 1.2706172839506173,
|
| 1358 |
+
"grad_norm": 0.21940218487234736,
|
| 1359 |
+
"learning_rate": 7.0786028827133436e-06,
|
| 1360 |
+
"loss": 0.0453,
|
| 1361 |
+
"step": 1930
|
| 1362 |
+
},
|
| 1363 |
+
{
|
| 1364 |
+
"epoch": 1.277201646090535,
|
| 1365 |
+
"grad_norm": 0.24051886922282145,
|
| 1366 |
+
"learning_rate": 6.968902677382267e-06,
|
| 1367 |
+
"loss": 0.0446,
|
| 1368 |
+
"step": 1940
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"epoch": 1.2837860082304526,
|
| 1372 |
+
"grad_norm": 0.24626322456669333,
|
| 1373 |
+
"learning_rate": 6.859602691166116e-06,
|
| 1374 |
+
"loss": 0.0451,
|
| 1375 |
+
"step": 1950
|
| 1376 |
+
},
|
| 1377 |
+
{
|
| 1378 |
+
"epoch": 1.2903703703703704,
|
| 1379 |
+
"grad_norm": 0.2678893327945353,
|
| 1380 |
+
"learning_rate": 6.750717355783542e-06,
|
| 1381 |
+
"loss": 0.0486,
|
| 1382 |
+
"step": 1960
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"epoch": 1.2969547325102881,
|
| 1386 |
+
"grad_norm": 0.2668368834905403,
|
| 1387 |
+
"learning_rate": 6.642261048203645e-06,
|
| 1388 |
+
"loss": 0.0464,
|
| 1389 |
+
"step": 1970
|
| 1390 |
+
},
|
| 1391 |
+
{
|
| 1392 |
+
"epoch": 1.3035390946502057,
|
| 1393 |
+
"grad_norm": 0.26490057296285885,
|
| 1394 |
+
"learning_rate": 6.534248088747681e-06,
|
| 1395 |
+
"loss": 0.0434,
|
| 1396 |
+
"step": 1980
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 1.3101234567901234,
|
| 1400 |
+
"grad_norm": 0.29323274134112237,
|
| 1401 |
+
"learning_rate": 6.426692739198247e-06,
|
| 1402 |
+
"loss": 0.0446,
|
| 1403 |
+
"step": 1990
|
| 1404 |
+
},
|
| 1405 |
+
{
|
| 1406 |
+
"epoch": 1.3167078189300412,
|
| 1407 |
+
"grad_norm": 0.28908056291849554,
|
| 1408 |
+
"learning_rate": 6.3196092009161745e-06,
|
| 1409 |
+
"loss": 0.0452,
|
| 1410 |
+
"step": 2000
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"epoch": 1.323292181069959,
|
| 1414 |
+
"grad_norm": 0.25086566194095056,
|
| 1415 |
+
"learning_rate": 6.2130116129654226e-06,
|
| 1416 |
+
"loss": 0.043,
|
| 1417 |
+
"step": 2010
|
| 1418 |
+
},
|
| 1419 |
+
{
|
| 1420 |
+
"epoch": 1.3298765432098765,
|
| 1421 |
+
"grad_norm": 0.26535183878935253,
|
| 1422 |
+
"learning_rate": 6.106914050246195e-06,
|
| 1423 |
+
"loss": 0.0438,
|
| 1424 |
+
"step": 2020
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"epoch": 1.3364609053497942,
|
| 1428 |
+
"grad_norm": 0.22348939883537003,
|
| 1429 |
+
"learning_rate": 6.001330521636503e-06,
|
| 1430 |
+
"loss": 0.0449,
|
| 1431 |
+
"step": 2030
|
| 1432 |
+
},
|
| 1433 |
+
{
|
| 1434 |
+
"epoch": 1.343045267489712,
|
| 1435 |
+
"grad_norm": 0.2894385435857123,
|
| 1436 |
+
"learning_rate": 5.8962749681424816e-06,
|
| 1437 |
+
"loss": 0.042,
|
| 1438 |
+
"step": 2040
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"epoch": 1.3496296296296295,
|
| 1442 |
+
"grad_norm": 0.26457325904752105,
|
| 1443 |
+
"learning_rate": 5.791761261057647e-06,
|
| 1444 |
+
"loss": 0.0442,
|
| 1445 |
+
"step": 2050
|
| 1446 |
+
},
|
| 1447 |
+
{
|
| 1448 |
+
"epoch": 1.3562139917695473,
|
| 1449 |
+
"grad_norm": 0.3068389385519454,
|
| 1450 |
+
"learning_rate": 5.687803200131365e-06,
|
| 1451 |
+
"loss": 0.0445,
|
| 1452 |
+
"step": 2060
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 1.362798353909465,
|
| 1456 |
+
"grad_norm": 0.27184806182261856,
|
| 1457 |
+
"learning_rate": 5.584414511746759e-06,
|
| 1458 |
+
"loss": 0.0429,
|
| 1459 |
+
"step": 2070
|
| 1460 |
+
},
|
| 1461 |
+
{
|
| 1462 |
+
"epoch": 1.3693827160493828,
|
| 1463 |
+
"grad_norm": 0.27850156271247684,
|
| 1464 |
+
"learning_rate": 5.481608847108304e-06,
|
| 1465 |
+
"loss": 0.0449,
|
| 1466 |
+
"step": 2080
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"epoch": 1.3759670781893005,
|
| 1470 |
+
"grad_norm": 0.24442973473869922,
|
| 1471 |
+
"learning_rate": 5.379399780439378e-06,
|
| 1472 |
+
"loss": 0.0429,
|
| 1473 |
+
"step": 2090
|
| 1474 |
+
},
|
| 1475 |
+
{
|
| 1476 |
+
"epoch": 1.382551440329218,
|
| 1477 |
+
"grad_norm": 0.3053775299401999,
|
| 1478 |
+
"learning_rate": 5.2778008071899215e-06,
|
| 1479 |
+
"loss": 0.0451,
|
| 1480 |
+
"step": 2100
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"epoch": 1.3891358024691358,
|
| 1484 |
+
"grad_norm": 0.2791009219054029,
|
| 1485 |
+
"learning_rate": 5.176825342254557e-06,
|
| 1486 |
+
"loss": 0.0432,
|
| 1487 |
+
"step": 2110
|
| 1488 |
+
},
|
| 1489 |
+
{
|
| 1490 |
+
"epoch": 1.3957201646090536,
|
| 1491 |
+
"grad_norm": 0.24621991407843596,
|
| 1492 |
+
"learning_rate": 5.076486718201292e-06,
|
| 1493 |
+
"loss": 0.0404,
|
| 1494 |
+
"step": 2120
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"epoch": 1.402304526748971,
|
| 1498 |
+
"grad_norm": 0.26338569735525286,
|
| 1499 |
+
"learning_rate": 4.976798183511131e-06,
|
| 1500 |
+
"loss": 0.0432,
|
| 1501 |
+
"step": 2130
|
| 1502 |
+
},
|
| 1503 |
+
{
|
| 1504 |
+
"epoch": 1.4088888888888889,
|
| 1505 |
+
"grad_norm": 0.20763210064318866,
|
| 1506 |
+
"learning_rate": 4.8777729008287824e-06,
|
| 1507 |
+
"loss": 0.044,
|
| 1508 |
+
"step": 2140
|
| 1509 |
+
},
|
| 1510 |
+
{
|
| 1511 |
+
"epoch": 1.4154732510288066,
|
| 1512 |
+
"grad_norm": 0.2707221214388065,
|
| 1513 |
+
"learning_rate": 4.779423945224685e-06,
|
| 1514 |
+
"loss": 0.0447,
|
| 1515 |
+
"step": 2150
|
| 1516 |
+
},
|
| 1517 |
+
{
|
| 1518 |
+
"epoch": 1.4220576131687244,
|
| 1519 |
+
"grad_norm": 0.24759594327493678,
|
| 1520 |
+
"learning_rate": 4.6817643024686e-06,
|
| 1521 |
+
"loss": 0.0409,
|
| 1522 |
+
"step": 2160
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 1.428641975308642,
|
| 1526 |
+
"grad_norm": 0.26793363060402137,
|
| 1527 |
+
"learning_rate": 4.584806867315012e-06,
|
| 1528 |
+
"loss": 0.0434,
|
| 1529 |
+
"step": 2170
|
| 1530 |
+
},
|
| 1531 |
+
{
|
| 1532 |
+
"epoch": 1.4352263374485597,
|
| 1533 |
+
"grad_norm": 0.2619545136078983,
|
| 1534 |
+
"learning_rate": 4.4885644418005204e-06,
|
| 1535 |
+
"loss": 0.0414,
|
| 1536 |
+
"step": 2180
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"epoch": 1.4418106995884774,
|
| 1540 |
+
"grad_norm": 0.28117466372187855,
|
| 1541 |
+
"learning_rate": 4.393049733553514e-06,
|
| 1542 |
+
"loss": 0.0422,
|
| 1543 |
+
"step": 2190
|
| 1544 |
+
},
|
| 1545 |
+
{
|
| 1546 |
+
"epoch": 1.448395061728395,
|
| 1547 |
+
"grad_norm": 0.26612476494237675,
|
| 1548 |
+
"learning_rate": 4.2982753541162554e-06,
|
| 1549 |
+
"loss": 0.0429,
|
| 1550 |
+
"step": 2200
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 1.4549794238683127,
|
| 1554 |
+
"grad_norm": 0.2499798501451582,
|
| 1555 |
+
"learning_rate": 4.204253817279696e-06,
|
| 1556 |
+
"loss": 0.0415,
|
| 1557 |
+
"step": 2210
|
| 1558 |
+
},
|
| 1559 |
+
{
|
| 1560 |
+
"epoch": 1.4615637860082304,
|
| 1561 |
+
"grad_norm": 0.2780004458942545,
|
| 1562 |
+
"learning_rate": 4.110997537431187e-06,
|
| 1563 |
+
"loss": 0.0425,
|
| 1564 |
+
"step": 2220
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"epoch": 1.4681481481481482,
|
| 1568 |
+
"grad_norm": 0.3192672826059967,
|
| 1569 |
+
"learning_rate": 4.018518827915312e-06,
|
| 1570 |
+
"loss": 0.0441,
|
| 1571 |
+
"step": 2230
|
| 1572 |
+
},
|
| 1573 |
+
{
|
| 1574 |
+
"epoch": 1.474732510288066,
|
| 1575 |
+
"grad_norm": 0.27703933400252145,
|
| 1576 |
+
"learning_rate": 3.926829899408044e-06,
|
| 1577 |
+
"loss": 0.0401,
|
| 1578 |
+
"step": 2240
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"epoch": 1.4813168724279835,
|
| 1582 |
+
"grad_norm": 0.2823126837130346,
|
| 1583 |
+
"learning_rate": 3.835942858304502e-06,
|
| 1584 |
+
"loss": 0.0403,
|
| 1585 |
+
"step": 2250
|
| 1586 |
+
},
|
| 1587 |
+
{
|
| 1588 |
+
"epoch": 1.4879012345679012,
|
| 1589 |
+
"grad_norm": 0.2731273650807394,
|
| 1590 |
+
"learning_rate": 3.7458697051204253e-06,
|
| 1591 |
+
"loss": 0.0418,
|
| 1592 |
+
"step": 2260
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"epoch": 1.494485596707819,
|
| 1596 |
+
"grad_norm": 0.24352619762339012,
|
| 1597 |
+
"learning_rate": 3.6566223329076767e-06,
|
| 1598 |
+
"loss": 0.0416,
|
| 1599 |
+
"step": 2270
|
| 1600 |
+
},
|
| 1601 |
+
{
|
| 1602 |
+
"epoch": 1.5010699588477365,
|
| 1603 |
+
"grad_norm": 0.28451768132403726,
|
| 1604 |
+
"learning_rate": 3.5682125256838995e-06,
|
| 1605 |
+
"loss": 0.0415,
|
| 1606 |
+
"step": 2280
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"epoch": 1.5076543209876543,
|
| 1610 |
+
"grad_norm": 0.28620812939315216,
|
| 1611 |
+
"learning_rate": 3.480651956876575e-06,
|
| 1612 |
+
"loss": 0.041,
|
| 1613 |
+
"step": 2290
|
| 1614 |
+
},
|
| 1615 |
+
{
|
| 1616 |
+
"epoch": 1.514238683127572,
|
| 1617 |
+
"grad_norm": 0.21963136320519067,
|
| 1618 |
+
"learning_rate": 3.3939521877817016e-06,
|
| 1619 |
+
"loss": 0.0411,
|
| 1620 |
+
"step": 2300
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"epoch": 1.5208230452674898,
|
| 1624 |
+
"grad_norm": 0.31945344360590944,
|
| 1625 |
+
"learning_rate": 3.308124666037271e-06,
|
| 1626 |
+
"loss": 0.0408,
|
| 1627 |
+
"step": 2310
|
| 1628 |
+
},
|
| 1629 |
+
{
|
| 1630 |
+
"epoch": 1.5274074074074075,
|
| 1631 |
+
"grad_norm": 0.3139422167179338,
|
| 1632 |
+
"learning_rate": 3.223180724111734e-06,
|
| 1633 |
+
"loss": 0.0433,
|
| 1634 |
+
"step": 2320
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"epoch": 1.533991769547325,
|
| 1638 |
+
"grad_norm": 0.2386939526426441,
|
| 1639 |
+
"learning_rate": 3.139131577807699e-06,
|
| 1640 |
+
"loss": 0.0411,
|
| 1641 |
+
"step": 2330
|
| 1642 |
+
},
|
| 1643 |
+
{
|
| 1644 |
+
"epoch": 1.5405761316872428,
|
| 1645 |
+
"grad_norm": 0.2703524104892378,
|
| 1646 |
+
"learning_rate": 3.0559883247810152e-06,
|
| 1647 |
+
"loss": 0.0417,
|
| 1648 |
+
"step": 2340
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 1.5471604938271604,
|
| 1652 |
+
"grad_norm": 0.25361111617911514,
|
| 1653 |
+
"learning_rate": 2.9737619430754773e-06,
|
| 1654 |
+
"loss": 0.0408,
|
| 1655 |
+
"step": 2350
|
| 1656 |
+
},
|
| 1657 |
+
{
|
| 1658 |
+
"epoch": 1.5537448559670781,
|
| 1659 |
+
"grad_norm": 0.2400249023794216,
|
| 1660 |
+
"learning_rate": 2.8924632896732963e-06,
|
| 1661 |
+
"loss": 0.0425,
|
| 1662 |
+
"step": 2360
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"epoch": 1.5603292181069959,
|
| 1666 |
+
"grad_norm": 0.2650927496831694,
|
| 1667 |
+
"learning_rate": 2.8121030990615717e-06,
|
| 1668 |
+
"loss": 0.0413,
|
| 1669 |
+
"step": 2370
|
| 1670 |
+
},
|
| 1671 |
+
{
|
| 1672 |
+
"epoch": 1.5669135802469136,
|
| 1673 |
+
"grad_norm": 0.2819908762212163,
|
| 1674 |
+
"learning_rate": 2.7326919818149356e-06,
|
| 1675 |
+
"loss": 0.0421,
|
| 1676 |
+
"step": 2380
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"epoch": 1.5734979423868314,
|
| 1680 |
+
"grad_norm": 0.2913835799722889,
|
| 1681 |
+
"learning_rate": 2.654240423194555e-06,
|
| 1682 |
+
"loss": 0.0421,
|
| 1683 |
+
"step": 2390
|
| 1684 |
+
},
|
| 1685 |
+
{
|
| 1686 |
+
"epoch": 1.5800823045267491,
|
| 1687 |
+
"grad_norm": 0.2619137449154397,
|
| 1688 |
+
"learning_rate": 2.5767587817636908e-06,
|
| 1689 |
+
"loss": 0.0403,
|
| 1690 |
+
"step": 2400
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"epoch": 1.5866666666666667,
|
| 1694 |
+
"grad_norm": 0.3168699518532093,
|
| 1695 |
+
"learning_rate": 2.5002572880199706e-06,
|
| 1696 |
+
"loss": 0.042,
|
| 1697 |
+
"step": 2410
|
| 1698 |
+
},
|
| 1699 |
+
{
|
| 1700 |
+
"epoch": 1.5932510288065842,
|
| 1701 |
+
"grad_norm": 0.279028781919842,
|
| 1702 |
+
"learning_rate": 2.424746043044569e-06,
|
| 1703 |
+
"loss": 0.04,
|
| 1704 |
+
"step": 2420
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 1.599835390946502,
|
| 1708 |
+
"grad_norm": 0.27749109750003076,
|
| 1709 |
+
"learning_rate": 2.350235017168493e-06,
|
| 1710 |
+
"loss": 0.0387,
|
| 1711 |
+
"step": 2430
|
| 1712 |
+
},
|
| 1713 |
+
{
|
| 1714 |
+
"epoch": 1.6064197530864197,
|
| 1715 |
+
"grad_norm": 0.2723149006591808,
|
| 1716 |
+
"learning_rate": 2.276734048656133e-06,
|
| 1717 |
+
"loss": 0.0398,
|
| 1718 |
+
"step": 2440
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"epoch": 1.6130041152263375,
|
| 1722 |
+
"grad_norm": 0.23989841202762976,
|
| 1723 |
+
"learning_rate": 2.204252842406216e-06,
|
| 1724 |
+
"loss": 0.04,
|
| 1725 |
+
"step": 2450
|
| 1726 |
+
},
|
| 1727 |
+
{
|
| 1728 |
+
"epoch": 1.6195884773662552,
|
| 1729 |
+
"grad_norm": 0.255318273830075,
|
| 1730 |
+
"learning_rate": 2.132800968670414e-06,
|
| 1731 |
+
"loss": 0.0393,
|
| 1732 |
+
"step": 2460
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"epoch": 1.626172839506173,
|
| 1736 |
+
"grad_norm": 0.25389109080238237,
|
| 1737 |
+
"learning_rate": 2.0623878617896954e-06,
|
| 1738 |
+
"loss": 0.0395,
|
| 1739 |
+
"step": 2470
|
| 1740 |
+
},
|
| 1741 |
+
{
|
| 1742 |
+
"epoch": 1.6327572016460905,
|
| 1743 |
+
"grad_norm": 0.2924114124112562,
|
| 1744 |
+
"learning_rate": 1.9930228189486576e-06,
|
| 1745 |
+
"loss": 0.0403,
|
| 1746 |
+
"step": 2480
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"epoch": 1.6393415637860083,
|
| 1750 |
+
"grad_norm": 0.24737384773403684,
|
| 1751 |
+
"learning_rate": 1.9247149989479243e-06,
|
| 1752 |
+
"loss": 0.0407,
|
| 1753 |
+
"step": 2490
|
| 1754 |
+
},
|
| 1755 |
+
{
|
| 1756 |
+
"epoch": 1.6459259259259258,
|
| 1757 |
+
"grad_norm": 0.26668053446933565,
|
| 1758 |
+
"learning_rate": 1.8574734209948452e-06,
|
| 1759 |
+
"loss": 0.0394,
|
| 1760 |
+
"step": 2500
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"epoch": 1.6525102880658435,
|
| 1764 |
+
"grad_norm": 0.25979254838989646,
|
| 1765 |
+
"learning_rate": 1.791306963512629e-06,
|
| 1766 |
+
"loss": 0.0392,
|
| 1767 |
+
"step": 2510
|
| 1768 |
+
},
|
| 1769 |
+
{
|
| 1770 |
+
"epoch": 1.6590946502057613,
|
| 1771 |
+
"grad_norm": 0.2808416728163827,
|
| 1772 |
+
"learning_rate": 1.7262243629680542e-06,
|
| 1773 |
+
"loss": 0.0406,
|
| 1774 |
+
"step": 2520
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 1.665679012345679,
|
| 1778 |
+
"grad_norm": 0.2651943758260359,
|
| 1779 |
+
"learning_rate": 1.6622342127179159e-06,
|
| 1780 |
+
"loss": 0.0398,
|
| 1781 |
+
"step": 2530
|
| 1782 |
+
},
|
| 1783 |
+
{
|
| 1784 |
+
"epoch": 1.6722633744855968,
|
| 1785 |
+
"grad_norm": 0.2998953886189872,
|
| 1786 |
+
"learning_rate": 1.5993449618743962e-06,
|
| 1787 |
+
"loss": 0.0394,
|
| 1788 |
+
"step": 2540
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"epoch": 1.6788477366255146,
|
| 1792 |
+
"grad_norm": 0.3012596814004147,
|
| 1793 |
+
"learning_rate": 1.5375649141894445e-06,
|
| 1794 |
+
"loss": 0.0396,
|
| 1795 |
+
"step": 2550
|
| 1796 |
+
},
|
| 1797 |
+
{
|
| 1798 |
+
"epoch": 1.685432098765432,
|
| 1799 |
+
"grad_norm": 0.22926184017494686,
|
| 1800 |
+
"learning_rate": 1.4769022269583778e-06,
|
| 1801 |
+
"loss": 0.0392,
|
| 1802 |
+
"step": 2560
|
| 1803 |
+
},
|
| 1804 |
+
{
|
| 1805 |
+
"epoch": 1.6920164609053496,
|
| 1806 |
+
"grad_norm": 0.2915606153726947,
|
| 1807 |
+
"learning_rate": 1.41736490994282e-06,
|
| 1808 |
+
"loss": 0.0367,
|
| 1809 |
+
"step": 2570
|
| 1810 |
+
},
|
| 1811 |
+
{
|
| 1812 |
+
"epoch": 1.6986008230452674,
|
| 1813 |
+
"grad_norm": 0.25149262268239386,
|
| 1814 |
+
"learning_rate": 1.3589608243130913e-06,
|
| 1815 |
+
"loss": 0.0393,
|
| 1816 |
+
"step": 2580
|
| 1817 |
+
},
|
| 1818 |
+
{
|
| 1819 |
+
"epoch": 1.7051851851851851,
|
| 1820 |
+
"grad_norm": 0.23021205825482152,
|
| 1821 |
+
"learning_rate": 1.3016976816102488e-06,
|
| 1822 |
+
"loss": 0.039,
|
| 1823 |
+
"step": 2590
|
| 1824 |
+
},
|
| 1825 |
+
{
|
| 1826 |
+
"epoch": 1.711769547325103,
|
| 1827 |
+
"grad_norm": 0.23806858280834733,
|
| 1828 |
+
"learning_rate": 1.245583042727877e-06,
|
| 1829 |
+
"loss": 0.0373,
|
| 1830 |
+
"step": 2600
|
| 1831 |
+
},
|
| 1832 |
+
{
|
| 1833 |
+
"epoch": 1.7183539094650206,
|
| 1834 |
+
"grad_norm": 0.23371665490669846,
|
| 1835 |
+
"learning_rate": 1.1906243169137565e-06,
|
| 1836 |
+
"loss": 0.0373,
|
| 1837 |
+
"step": 2610
|
| 1838 |
+
},
|
| 1839 |
+
{
|
| 1840 |
+
"epoch": 1.7249382716049384,
|
| 1841 |
+
"grad_norm": 0.2358952389413928,
|
| 1842 |
+
"learning_rate": 1.1368287607915652e-06,
|
| 1843 |
+
"loss": 0.0368,
|
| 1844 |
+
"step": 2620
|
| 1845 |
+
},
|
| 1846 |
+
{
|
| 1847 |
+
"epoch": 1.731522633744856,
|
| 1848 |
+
"grad_norm": 0.26299443632402053,
|
| 1849 |
+
"learning_rate": 1.084203477402731e-06,
|
| 1850 |
+
"loss": 0.0383,
|
| 1851 |
+
"step": 2630
|
| 1852 |
+
},
|
| 1853 |
+
{
|
| 1854 |
+
"epoch": 1.7381069958847737,
|
| 1855 |
+
"grad_norm": 0.25194576045416844,
|
| 1856 |
+
"learning_rate": 1.0327554152685637e-06,
|
| 1857 |
+
"loss": 0.0385,
|
| 1858 |
+
"step": 2640
|
| 1859 |
+
},
|
| 1860 |
+
{
|
| 1861 |
+
"epoch": 1.7446913580246912,
|
| 1862 |
+
"grad_norm": 0.27055501403193677,
|
| 1863 |
+
"learning_rate": 9.82491367472791e-07,
|
| 1864 |
+
"loss": 0.0373,
|
| 1865 |
+
"step": 2650
|
| 1866 |
+
},
|
| 1867 |
+
{
|
| 1868 |
+
"epoch": 1.751275720164609,
|
| 1869 |
+
"grad_norm": 0.2516257996938441,
|
| 1870 |
+
"learning_rate": 9.334179707646063e-07,
|
| 1871 |
+
"loss": 0.0386,
|
| 1872 |
+
"step": 2660
|
| 1873 |
+
},
|
| 1874 |
+
{
|
| 1875 |
+
"epoch": 1.7578600823045267,
|
| 1876 |
+
"grad_norm": 0.2372611964667714,
|
| 1877 |
+
"learning_rate": 8.855417046823823e-07,
|
| 1878 |
+
"loss": 0.0388,
|
| 1879 |
+
"step": 2670
|
| 1880 |
+
},
|
| 1881 |
+
{
|
| 1882 |
+
"epoch": 1.7644444444444445,
|
| 1883 |
+
"grad_norm": 0.2612395915833542,
|
| 1884 |
+
"learning_rate": 8.388688906981068e-07,
|
| 1885 |
+
"loss": 0.0378,
|
| 1886 |
+
"step": 2680
|
| 1887 |
+
},
|
| 1888 |
+
{
|
| 1889 |
+
"epoch": 1.7710288065843622,
|
| 1890 |
+
"grad_norm": 0.2819966444512503,
|
| 1891 |
+
"learning_rate": 7.93405691382736e-07,
|
| 1892 |
+
"loss": 0.0374,
|
| 1893 |
+
"step": 2690
|
| 1894 |
+
},
|
| 1895 |
+
{
|
| 1896 |
+
"epoch": 1.77761316872428,
|
| 1897 |
+
"grad_norm": 0.2376341076802809,
|
| 1898 |
+
"learning_rate": 7.491581095924771e-07,
|
| 1899 |
+
"loss": 0.0388,
|
| 1900 |
+
"step": 2700
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"epoch": 1.7841975308641975,
|
| 1904 |
+
"grad_norm": 0.27938706666642293,
|
| 1905 |
+
"learning_rate": 7.061319876762029e-07,
|
| 1906 |
+
"loss": 0.0367,
|
| 1907 |
+
"step": 2710
|
| 1908 |
+
},
|
| 1909 |
+
{
|
| 1910 |
+
"epoch": 1.7907818930041153,
|
| 1911 |
+
"grad_norm": 0.23576084937693437,
|
| 1912 |
+
"learning_rate": 6.64333006704031e-07,
|
| 1913 |
+
"loss": 0.0358,
|
| 1914 |
+
"step": 2720
|
| 1915 |
+
},
|
| 1916 |
+
{
|
| 1917 |
+
"epoch": 1.7973662551440328,
|
| 1918 |
+
"grad_norm": 0.2634596099223397,
|
| 1919 |
+
"learning_rate": 6.237666857172198e-07,
|
| 1920 |
+
"loss": 0.0389,
|
| 1921 |
+
"step": 2730
|
| 1922 |
+
},
|
| 1923 |
+
{
|
| 1924 |
+
"epoch": 1.8039506172839506,
|
| 1925 |
+
"grad_norm": 0.2477361055678762,
|
| 1926 |
+
"learning_rate": 5.844383809994358e-07,
|
| 1927 |
+
"loss": 0.0377,
|
| 1928 |
+
"step": 2740
|
| 1929 |
+
},
|
| 1930 |
+
{
|
| 1931 |
+
"epoch": 1.8105349794238683,
|
| 1932 |
+
"grad_norm": 0.25385468933758476,
|
| 1933 |
+
"learning_rate": 5.463532853695252e-07,
|
| 1934 |
+
"loss": 0.0369,
|
| 1935 |
+
"step": 2750
|
| 1936 |
+
},
|
| 1937 |
+
{
|
| 1938 |
+
"epoch": 1.817119341563786,
|
| 1939 |
+
"grad_norm": 0.2882725454010458,
|
| 1940 |
+
"learning_rate": 5.095164274958675e-07,
|
| 1941 |
+
"loss": 0.0371,
|
| 1942 |
+
"step": 2760
|
| 1943 |
+
},
|
| 1944 |
+
{
|
| 1945 |
+
"epoch": 1.8237037037037038,
|
| 1946 |
+
"grad_norm": 0.2408825349510827,
|
| 1947 |
+
"learning_rate": 4.739326712324044e-07,
|
| 1948 |
+
"loss": 0.0371,
|
| 1949 |
+
"step": 2770
|
| 1950 |
+
},
|
| 1951 |
+
{
|
| 1952 |
+
"epoch": 1.8302880658436214,
|
| 1953 |
+
"grad_norm": 0.25414366178115644,
|
| 1954 |
+
"learning_rate": 4.3960671497642384e-07,
|
| 1955 |
+
"loss": 0.0356,
|
| 1956 |
+
"step": 2780
|
| 1957 |
+
},
|
| 1958 |
+
{
|
| 1959 |
+
"epoch": 1.8368724279835391,
|
| 1960 |
+
"grad_norm": 0.2616526174196436,
|
| 1961 |
+
"learning_rate": 4.0654309104819266e-07,
|
| 1962 |
+
"loss": 0.0389,
|
| 1963 |
+
"step": 2790
|
| 1964 |
+
},
|
| 1965 |
+
{
|
| 1966 |
+
"epoch": 1.8434567901234566,
|
| 1967 |
+
"grad_norm": 0.2552640639520394,
|
| 1968 |
+
"learning_rate": 3.7474616509252326e-07,
|
| 1969 |
+
"loss": 0.0369,
|
| 1970 |
+
"step": 2800
|
| 1971 |
+
},
|
| 1972 |
+
{
|
| 1973 |
+
"epoch": 1.8500411522633744,
|
| 1974 |
+
"grad_norm": 0.27534471767419216,
|
| 1975 |
+
"learning_rate": 3.4422013550234555e-07,
|
| 1976 |
+
"loss": 0.036,
|
| 1977 |
+
"step": 2810
|
| 1978 |
+
},
|
| 1979 |
+
{
|
| 1980 |
+
"epoch": 1.8566255144032922,
|
| 1981 |
+
"grad_norm": 0.2268489752823173,
|
| 1982 |
+
"learning_rate": 3.149690328643573e-07,
|
| 1983 |
+
"loss": 0.0378,
|
| 1984 |
+
"step": 2820
|
| 1985 |
+
},
|
| 1986 |
+
{
|
| 1987 |
+
"epoch": 1.86320987654321,
|
| 1988 |
+
"grad_norm": 0.24850575363659771,
|
| 1989 |
+
"learning_rate": 2.8699671942683194e-07,
|
| 1990 |
+
"loss": 0.0375,
|
| 1991 |
+
"step": 2830
|
| 1992 |
+
},
|
| 1993 |
+
{
|
| 1994 |
+
"epoch": 1.8697942386831277,
|
| 1995 |
+
"grad_norm": 0.2307919516443814,
|
| 1996 |
+
"learning_rate": 2.603068885896631e-07,
|
| 1997 |
+
"loss": 0.0368,
|
| 1998 |
+
"step": 2840
|
| 1999 |
+
},
|
| 2000 |
+
{
|
| 2001 |
+
"epoch": 1.8763786008230454,
|
| 2002 |
+
"grad_norm": 0.27775012465284954,
|
| 2003 |
+
"learning_rate": 2.3490306441669385e-07,
|
| 2004 |
+
"loss": 0.0379,
|
| 2005 |
+
"step": 2850
|
| 2006 |
+
},
|
| 2007 |
+
{
|
| 2008 |
+
"epoch": 1.882962962962963,
|
| 2009 |
+
"grad_norm": 0.26853576536071394,
|
| 2010 |
+
"learning_rate": 2.1078860117040188e-07,
|
| 2011 |
+
"loss": 0.0374,
|
| 2012 |
+
"step": 2860
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"epoch": 1.8895473251028807,
|
| 2016 |
+
"grad_norm": 0.24536780879948297,
|
| 2017 |
+
"learning_rate": 1.8796668286902408e-07,
|
| 2018 |
+
"loss": 0.0372,
|
| 2019 |
+
"step": 2870
|
| 2020 |
+
},
|
| 2021 |
+
{
|
| 2022 |
+
"epoch": 1.8961316872427982,
|
| 2023 |
+
"grad_norm": 0.24350491480793685,
|
| 2024 |
+
"learning_rate": 1.6644032286612822e-07,
|
| 2025 |
+
"loss": 0.0367,
|
| 2026 |
+
"step": 2880
|
| 2027 |
+
},
|
| 2028 |
+
{
|
| 2029 |
+
"epoch": 1.902716049382716,
|
| 2030 |
+
"grad_norm": 0.26592772651933727,
|
| 2031 |
+
"learning_rate": 1.4621236345275013e-07,
|
| 2032 |
+
"loss": 0.0384,
|
| 2033 |
+
"step": 2890
|
| 2034 |
+
},
|
| 2035 |
+
{
|
| 2036 |
+
"epoch": 1.9093004115226337,
|
| 2037 |
+
"grad_norm": 0.273830096695144,
|
| 2038 |
+
"learning_rate": 1.272854754821018e-07,
|
| 2039 |
+
"loss": 0.0376,
|
| 2040 |
+
"step": 2900
|
| 2041 |
+
},
|
| 2042 |
+
{
|
| 2043 |
+
"epoch": 1.9158847736625515,
|
| 2044 |
+
"grad_norm": 0.24358383615739146,
|
| 2045 |
+
"learning_rate": 1.0966215801691216e-07,
|
| 2046 |
+
"loss": 0.0378,
|
| 2047 |
+
"step": 2910
|
| 2048 |
+
},
|
| 2049 |
+
{
|
| 2050 |
+
"epoch": 1.9224691358024693,
|
| 2051 |
+
"grad_norm": 0.2350902988501883,
|
| 2052 |
+
"learning_rate": 9.334473799946231e-08,
|
| 2053 |
+
"loss": 0.036,
|
| 2054 |
+
"step": 2920
|
| 2055 |
+
},
|
| 2056 |
+
{
|
| 2057 |
+
"epoch": 1.9290534979423868,
|
| 2058 |
+
"grad_norm": 0.2898622674756883,
|
| 2059 |
+
"learning_rate": 7.833536994433899e-08,
|
| 2060 |
+
"loss": 0.0384,
|
| 2061 |
+
"step": 2930
|
| 2062 |
+
},
|
| 2063 |
+
{
|
| 2064 |
+
"epoch": 1.9356378600823045,
|
| 2065 |
+
"grad_norm": 0.2274996600072062,
|
| 2066 |
+
"learning_rate": 6.463603565396214e-08,
|
| 2067 |
+
"loss": 0.0357,
|
| 2068 |
+
"step": 2940
|
| 2069 |
+
},
|
| 2070 |
+
{
|
| 2071 |
+
"epoch": 1.942222222222222,
|
| 2072 |
+
"grad_norm": 0.26822688807400513,
|
| 2073 |
+
"learning_rate": 5.224854395690093e-08,
|
| 2074 |
+
"loss": 0.0393,
|
| 2075 |
+
"step": 2950
|
| 2076 |
+
},
|
| 2077 |
+
{
|
| 2078 |
+
"epoch": 1.9488065843621398,
|
| 2079 |
+
"grad_norm": 0.24259809452621967,
|
| 2080 |
+
"learning_rate": 4.117453046905362e-08,
|
| 2081 |
+
"loss": 0.0381,
|
| 2082 |
+
"step": 2960
|
| 2083 |
+
},
|
| 2084 |
+
{
|
| 2085 |
+
"epoch": 1.9553909465020576,
|
| 2086 |
+
"grad_norm": 0.30345266961207956,
|
| 2087 |
+
"learning_rate": 3.1415457377674816e-08,
|
| 2088 |
+
"loss": 0.0389,
|
| 2089 |
+
"step": 2970
|
| 2090 |
+
},
|
| 2091 |
+
{
|
| 2092 |
+
"epoch": 1.9619753086419753,
|
| 2093 |
+
"grad_norm": 0.24356362727209732,
|
| 2094 |
+
"learning_rate": 2.2972613248316565e-08,
|
| 2095 |
+
"loss": 0.0351,
|
| 2096 |
+
"step": 2980
|
| 2097 |
+
},
|
| 2098 |
+
{
|
| 2099 |
+
"epoch": 1.968559670781893,
|
| 2100 |
+
"grad_norm": 0.25046455301579434,
|
| 2101 |
+
"learning_rate": 1.5847112854689982e-08,
|
| 2102 |
+
"loss": 0.0377,
|
| 2103 |
+
"step": 2990
|
| 2104 |
+
},
|
| 2105 |
+
{
|
| 2106 |
+
"epoch": 1.9751440329218108,
|
| 2107 |
+
"grad_norm": 0.24111018893505698,
|
| 2108 |
+
"learning_rate": 1.003989703146635e-08,
|
| 2109 |
+
"loss": 0.0379,
|
| 2110 |
+
"step": 3000
|
| 2111 |
+
},
|
| 2112 |
+
{
|
| 2113 |
+
"epoch": 1.9817283950617284,
|
| 2114 |
+
"grad_norm": 0.25371728642896235,
|
| 2115 |
+
"learning_rate": 5.5517325500609175e-09,
|
| 2116 |
+
"loss": 0.0375,
|
| 2117 |
+
"step": 3010
|
| 2118 |
+
},
|
| 2119 |
+
{
|
| 2120 |
+
"epoch": 1.9883127572016461,
|
| 2121 |
+
"grad_norm": 0.24486464532889268,
|
| 2122 |
+
"learning_rate": 2.383212017381675e-09,
|
| 2123 |
+
"loss": 0.0358,
|
| 2124 |
+
"step": 3020
|
| 2125 |
+
},
|
| 2126 |
+
{
|
| 2127 |
+
"epoch": 1.9948971193415637,
|
| 2128 |
+
"grad_norm": 0.2608068274735689,
|
| 2129 |
+
"learning_rate": 5.34753797587495e-10,
|
| 2130 |
+
"loss": 0.0366,
|
| 2131 |
+
"step": 3030
|
| 2132 |
+
},
|
| 2133 |
+
{
|
| 2134 |
+
"epoch": 2.0,
|
| 2135 |
+
"step": 3038,
|
| 2136 |
+
"total_flos": 3771710697373696.0,
|
| 2137 |
+
"train_loss": 0.06704422599041909,
|
| 2138 |
+
"train_runtime": 34253.9666,
|
| 2139 |
+
"train_samples_per_second": 17.026,
|
| 2140 |
+
"train_steps_per_second": 0.089
|
| 2141 |
+
}
|
| 2142 |
+
],
|
| 2143 |
+
"logging_steps": 10,
|
| 2144 |
+
"max_steps": 3038,
|
| 2145 |
+
"num_input_tokens_seen": 0,
|
| 2146 |
+
"num_train_epochs": 2,
|
| 2147 |
+
"save_steps": 500,
|
| 2148 |
+
"stateful_callbacks": {
|
| 2149 |
+
"TrainerControl": {
|
| 2150 |
+
"args": {
|
| 2151 |
+
"should_epoch_stop": false,
|
| 2152 |
+
"should_evaluate": false,
|
| 2153 |
+
"should_log": false,
|
| 2154 |
+
"should_save": true,
|
| 2155 |
+
"should_training_stop": true
|
| 2156 |
+
},
|
| 2157 |
+
"attributes": {}
|
| 2158 |
+
}
|
| 2159 |
+
},
|
| 2160 |
+
"total_flos": 3771710697373696.0,
|
| 2161 |
+
"train_batch_size": 3,
|
| 2162 |
+
"trial_name": null,
|
| 2163 |
+
"trial_params": null
|
| 2164 |
+
}
|
video_preprocessor_config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"crop_size": null,
|
| 3 |
+
"data_format": "channels_first",
|
| 4 |
+
"default_to_square": true,
|
| 5 |
+
"device": null,
|
| 6 |
+
"do_center_crop": null,
|
| 7 |
+
"do_convert_rgb": true,
|
| 8 |
+
"do_normalize": true,
|
| 9 |
+
"do_pad": null,
|
| 10 |
+
"do_rescale": true,
|
| 11 |
+
"do_resize": true,
|
| 12 |
+
"do_sample_frames": true,
|
| 13 |
+
"fps": 2,
|
| 14 |
+
"image_mean": [
|
| 15 |
+
0.48145466,
|
| 16 |
+
0.4578275,
|
| 17 |
+
0.40821073
|
| 18 |
+
],
|
| 19 |
+
"image_std": [
|
| 20 |
+
0.26862954,
|
| 21 |
+
0.26130258,
|
| 22 |
+
0.27577711
|
| 23 |
+
],
|
| 24 |
+
"input_data_format": null,
|
| 25 |
+
"max_image_size": {
|
| 26 |
+
"longest_edge": 47040000
|
| 27 |
+
},
|
| 28 |
+
"merge_size": 2,
|
| 29 |
+
"num_frames": 16,
|
| 30 |
+
"patch_size": 14,
|
| 31 |
+
"processor_class": "Glm4vProcessor",
|
| 32 |
+
"resample": 3,
|
| 33 |
+
"rescale_factor": 0.00392156862745098,
|
| 34 |
+
"size": {
|
| 35 |
+
"longest_edge": 47040000,
|
| 36 |
+
"shortest_edge": 12544
|
| 37 |
+
},
|
| 38 |
+
"size_divisor": null,
|
| 39 |
+
"temporal_patch_size": 2,
|
| 40 |
+
"video_metadata": null,
|
| 41 |
+
"video_processor_type": "Glm4vVideoProcessor"
|
| 42 |
+
}
|