Raullen commited on
Commit
178635f
·
verified ·
1 Parent(s): 3aa7120

Upload folder using huggingface_hub

Browse files
.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 ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: Qwen/Qwen2-VL-2B-Instruct
4
+ library_name: peft
5
+ tags:
6
+ - video-language-model
7
+ - pet-detection
8
+ - lora
9
+ - qwen2-vl
10
+ datasets:
11
+ - Raullen/petvlm-data
12
+ pipeline_tag: video-text-to-text
13
+ ---
14
+
15
+ # PetVLM - Sherlock Pet
16
+
17
+ A LoRA adapter for Qwen2-VL-2B-Instruct, fine-tuned to detect naughty vs nice pet behavior with a sarcastic pet detective persona.
18
+
19
+ ## Model Description
20
+
21
+ - **Base Model**: [Qwen/Qwen2-VL-2B-Instruct](https://huggingface.co/Qwen/Qwen2-VL-2B-Instruct)
22
+ - **Fine-tuning**: LoRA (rank=16, alpha=32, dropout=0.05)
23
+ - **Training Data**: [Raullen/petvlm-data](https://huggingface.co/datasets/Raullen/petvlm-data) (40 labeled pet videos)
24
+
25
+ ## Output Format
26
+
27
+ - **ALERT!** - Naughty behavior detected (climbing, scratching furniture, stealing food, etc.)
28
+ - **All Clear** - Good behavior (sleeping, eating properly, playing nicely)
29
+
30
+ ## Usage
31
+
32
+ ```python
33
+ import torch
34
+ from transformers import Qwen2VLForConditionalGeneration, AutoProcessor
35
+ from peft import PeftModel
36
+ from qwen_vl_utils import process_vision_info
37
+
38
+ # Load base model
39
+ base_model = Qwen2VLForConditionalGeneration.from_pretrained(
40
+ "Qwen/Qwen2-VL-2B-Instruct",
41
+ torch_dtype=torch.bfloat16,
42
+ device_map="auto"
43
+ )
44
+
45
+ # Load LoRA adapter
46
+ model = PeftModel.from_pretrained(base_model, "Raullen/petvlm")
47
+ model.eval()
48
+
49
+ processor = AutoProcessor.from_pretrained("Raullen/petvlm")
50
+
51
+ # Analyze a video
52
+ messages = [
53
+ {
54
+ "role": "user",
55
+ "content": [
56
+ {"type": "video", "video": "path/to/video.mp4", "nframes": 8},
57
+ {"type": "text", "text": "What is the pet doing?"}
58
+ ]
59
+ }
60
+ ]
61
+
62
+ text = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
63
+ image_inputs, video_inputs = process_vision_info(messages)
64
+
65
+ inputs = processor(
66
+ text=[text],
67
+ images=image_inputs,
68
+ videos=video_inputs,
69
+ padding=True,
70
+ return_tensors="pt"
71
+ ).to(model.device)
72
+
73
+ with torch.no_grad():
74
+ output = model.generate(**inputs, max_new_tokens=256)
75
+
76
+ response = processor.batch_decode(output[:, inputs.input_ids.shape[1]:], skip_special_tokens=True)[0]
77
+ print(response)
78
+ ```
79
+
80
+ ## Training Parameters
81
+
82
+ | Parameter | Value |
83
+ |-----------|-------|
84
+ | LoRA rank | 16 |
85
+ | LoRA alpha | 32 |
86
+ | LoRA dropout | 0.05 |
87
+ | Learning rate | 2e-4 |
88
+ | Epochs | 30 |
89
+ | Batch size | 1 |
90
+
91
+ ## Sample Outputs
92
+
93
+ **Naughty:**
94
+ > "ALERT! The acrobatic menace has achieved full Spider-Cat mode, scaling kitchen cabinets like it's an Olympic sport. Recommend securing all elevated surfaces immediately."
95
+
96
+ **Nice:**
97
+ > "All Clear. The suspect is peacefully napping by the fireplace like a perfect little angel. Don't be fooled though - this is just the calm before the zoomies."
98
+
99
+ ## Links
100
+
101
+ - **Code**: [github.com/raullenchai/petvlm](https://github.com/raullenchai/petvlm)
102
+ - **Dataset**: [Raullen/petvlm-data](https://huggingface.co/datasets/Raullen/petvlm-data)
103
+
104
+ ## License
105
+
106
+ MIT
adapter_config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen2-VL-2B-Instruct",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 16,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "down_proj",
30
+ "up_proj",
31
+ "o_proj",
32
+ "gate_proj",
33
+ "k_proj",
34
+ "v_proj"
35
+ ],
36
+ "target_parameters": null,
37
+ "task_type": "CAUSAL_LM",
38
+ "trainable_token_indices": null,
39
+ "use_dora": false,
40
+ "use_qalora": false,
41
+ "use_rslora": false
42
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1dd27a313df49d8699dc96b4aa1f47241b6125d126ab2cc20d4d0da9b451aa7
3
+ size 73916992
added_tokens.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<|box_end|>": 151649,
3
+ "<|box_start|>": 151648,
4
+ "<|endoftext|>": 151643,
5
+ "<|im_end|>": 151645,
6
+ "<|im_start|>": 151644,
7
+ "<|image_pad|>": 151655,
8
+ "<|object_ref_end|>": 151647,
9
+ "<|object_ref_start|>": 151646,
10
+ "<|quad_end|>": 151651,
11
+ "<|quad_start|>": 151650,
12
+ "<|video_pad|>": 151656,
13
+ "<|vision_end|>": 151653,
14
+ "<|vision_pad|>": 151654,
15
+ "<|vision_start|>": 151652
16
+ }
all_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 30.0,
3
+ "total_flos": 5518966123560960.0,
4
+ "train_loss": 0.2944723299946054,
5
+ "train_runtime": 391.3174,
6
+ "train_samples_per_second": 3.067,
7
+ "train_steps_per_second": 3.067
8
+ }
chat_template.jinja ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system
2
+ You are a helpful assistant.<|im_end|>
3
+ {% endif %}<|im_start|>{{ message['role'] }}
4
+ {% if message['content'] is string %}{{ message['content'] }}<|im_end|>
5
+ {% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>
6
+ {% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
7
+ {% endif %}
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
preprocessor_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_pad": null,
11
+ "do_rescale": true,
12
+ "do_resize": true,
13
+ "image_mean": [
14
+ 0.48145466,
15
+ 0.4578275,
16
+ 0.40821073
17
+ ],
18
+ "image_processor_type": "Qwen2VLImageProcessorFast",
19
+ "image_std": [
20
+ 0.26862954,
21
+ 0.26130258,
22
+ 0.27577711
23
+ ],
24
+ "input_data_format": null,
25
+ "max_pixels": 12845056,
26
+ "merge_size": 2,
27
+ "min_pixels": 3136,
28
+ "pad_size": null,
29
+ "patch_size": 14,
30
+ "processor_class": "Qwen2VLProcessor",
31
+ "resample": 3,
32
+ "rescale_factor": 0.00392156862745098,
33
+ "return_tensors": null,
34
+ "size": {
35
+ "longest_edge": 12845056,
36
+ "shortest_edge": 3136
37
+ },
38
+ "temporal_patch_size": 2
39
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:091aa7594dc2fcfbfa06b9e3c22a5f0562ac14f30375c13af7309407a0e67b8a
3
+ size 11420371
tokenizer_config.json ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "151643": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "151644": {
13
+ "content": "<|im_start|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "151645": {
21
+ "content": "<|im_end|>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "151646": {
29
+ "content": "<|object_ref_start|>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "151647": {
37
+ "content": "<|object_ref_end|>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "151648": {
45
+ "content": "<|box_start|>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "151649": {
53
+ "content": "<|box_end|>",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "151650": {
61
+ "content": "<|quad_start|>",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "151651": {
69
+ "content": "<|quad_end|>",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "151652": {
77
+ "content": "<|vision_start|>",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "151653": {
85
+ "content": "<|vision_end|>",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "151654": {
93
+ "content": "<|vision_pad|>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ },
100
+ "151655": {
101
+ "content": "<|image_pad|>",
102
+ "lstrip": false,
103
+ "normalized": false,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": true
107
+ },
108
+ "151656": {
109
+ "content": "<|video_pad|>",
110
+ "lstrip": false,
111
+ "normalized": false,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": true
115
+ }
116
+ },
117
+ "additional_special_tokens": [
118
+ "<|im_start|>",
119
+ "<|im_end|>",
120
+ "<|object_ref_start|>",
121
+ "<|object_ref_end|>",
122
+ "<|box_start|>",
123
+ "<|box_end|>",
124
+ "<|quad_start|>",
125
+ "<|quad_end|>",
126
+ "<|vision_start|>",
127
+ "<|vision_end|>",
128
+ "<|vision_pad|>",
129
+ "<|image_pad|>",
130
+ "<|video_pad|>"
131
+ ],
132
+ "bos_token": null,
133
+ "clean_up_tokenization_spaces": false,
134
+ "eos_token": "<|im_end|>",
135
+ "errors": "replace",
136
+ "extra_special_tokens": {},
137
+ "model_max_length": 32768,
138
+ "pad_token": "<|endoftext|>",
139
+ "padding_side": "right",
140
+ "processor_class": "Qwen2VLProcessor",
141
+ "split_special_tokens": false,
142
+ "tokenizer_class": "Qwen2Tokenizer",
143
+ "unk_token": null
144
+ }
train_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 30.0,
3
+ "total_flos": 5518966123560960.0,
4
+ "train_loss": 0.2944723299946054,
5
+ "train_runtime": 391.3174,
6
+ "train_samples_per_second": 3.067,
7
+ "train_steps_per_second": 3.067
8
+ }
trainer_state.json ADDED
@@ -0,0 +1,883 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 30.0,
6
+ "eval_steps": 500,
7
+ "global_step": 1200,
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.25,
14
+ "grad_norm": 5.778720378875732,
15
+ "learning_rate": 1.5e-05,
16
+ "loss": 4.1831,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.5,
21
+ "grad_norm": 5.072098255157471,
22
+ "learning_rate": 3.1666666666666666e-05,
23
+ "loss": 4.1488,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.75,
28
+ "grad_norm": 4.428645133972168,
29
+ "learning_rate": 4.8333333333333334e-05,
30
+ "loss": 3.7577,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 1.0,
35
+ "grad_norm": 5.028885364532471,
36
+ "learning_rate": 6.500000000000001e-05,
37
+ "loss": 2.9842,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 1.25,
42
+ "grad_norm": 5.070592403411865,
43
+ "learning_rate": 8.166666666666667e-05,
44
+ "loss": 2.3977,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 1.5,
49
+ "grad_norm": 6.642765522003174,
50
+ "learning_rate": 9.833333333333333e-05,
51
+ "loss": 2.3892,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 1.75,
56
+ "grad_norm": 6.417508602142334,
57
+ "learning_rate": 0.00011499999999999999,
58
+ "loss": 2.224,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 2.0,
63
+ "grad_norm": 6.406721115112305,
64
+ "learning_rate": 0.00013166666666666668,
65
+ "loss": 1.9902,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 2.25,
70
+ "grad_norm": 10.698479652404785,
71
+ "learning_rate": 0.00014833333333333335,
72
+ "loss": 1.4379,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 2.5,
77
+ "grad_norm": 7.168300628662109,
78
+ "learning_rate": 0.000165,
79
+ "loss": 1.3657,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 2.75,
84
+ "grad_norm": 8.622518539428711,
85
+ "learning_rate": 0.00018166666666666667,
86
+ "loss": 1.1024,
87
+ "step": 110
88
+ },
89
+ {
90
+ "epoch": 3.0,
91
+ "grad_norm": 8.159564018249512,
92
+ "learning_rate": 0.00019833333333333335,
93
+ "loss": 1.4106,
94
+ "step": 120
95
+ },
96
+ {
97
+ "epoch": 3.25,
98
+ "grad_norm": 4.976837158203125,
99
+ "learning_rate": 0.00019996573249755572,
100
+ "loss": 0.5826,
101
+ "step": 130
102
+ },
103
+ {
104
+ "epoch": 3.5,
105
+ "grad_norm": 11.353582382202148,
106
+ "learning_rate": 0.00019984730708473114,
107
+ "loss": 0.6382,
108
+ "step": 140
109
+ },
110
+ {
111
+ "epoch": 3.75,
112
+ "grad_norm": 5.605244159698486,
113
+ "learning_rate": 0.00019964440088179717,
114
+ "loss": 0.6091,
115
+ "step": 150
116
+ },
117
+ {
118
+ "epoch": 4.0,
119
+ "grad_norm": 6.121719837188721,
120
+ "learning_rate": 0.00019935718556765876,
121
+ "loss": 0.6703,
122
+ "step": 160
123
+ },
124
+ {
125
+ "epoch": 4.25,
126
+ "grad_norm": 4.879727363586426,
127
+ "learning_rate": 0.00019898590415514598,
128
+ "loss": 0.2784,
129
+ "step": 170
130
+ },
131
+ {
132
+ "epoch": 4.5,
133
+ "grad_norm": 4.103272914886475,
134
+ "learning_rate": 0.00019853087078540096,
135
+ "loss": 0.3594,
136
+ "step": 180
137
+ },
138
+ {
139
+ "epoch": 4.75,
140
+ "grad_norm": 1.8382512331008911,
141
+ "learning_rate": 0.00019799247046208297,
142
+ "loss": 0.2317,
143
+ "step": 190
144
+ },
145
+ {
146
+ "epoch": 5.0,
147
+ "grad_norm": 7.743032932281494,
148
+ "learning_rate": 0.0001973711587256171,
149
+ "loss": 0.3543,
150
+ "step": 200
151
+ },
152
+ {
153
+ "epoch": 5.25,
154
+ "grad_norm": 4.488682746887207,
155
+ "learning_rate": 0.0001966674612677614,
156
+ "loss": 0.1764,
157
+ "step": 210
158
+ },
159
+ {
160
+ "epoch": 5.5,
161
+ "grad_norm": 2.1697070598602295,
162
+ "learning_rate": 0.0001958819734868193,
163
+ "loss": 0.1821,
164
+ "step": 220
165
+ },
166
+ {
167
+ "epoch": 5.75,
168
+ "grad_norm": 7.363753795623779,
169
+ "learning_rate": 0.00019501535998387313,
170
+ "loss": 0.203,
171
+ "step": 230
172
+ },
173
+ {
174
+ "epoch": 6.0,
175
+ "grad_norm": 2.7093255519866943,
176
+ "learning_rate": 0.0001940683540004652,
177
+ "loss": 0.1724,
178
+ "step": 240
179
+ },
180
+ {
181
+ "epoch": 6.25,
182
+ "grad_norm": 4.128848075866699,
183
+ "learning_rate": 0.00019304175679820247,
184
+ "loss": 0.0644,
185
+ "step": 250
186
+ },
187
+ {
188
+ "epoch": 6.5,
189
+ "grad_norm": 3.6359198093414307,
190
+ "learning_rate": 0.00019193643698080893,
191
+ "loss": 0.1838,
192
+ "step": 260
193
+ },
194
+ {
195
+ "epoch": 6.75,
196
+ "grad_norm": 3.275486469268799,
197
+ "learning_rate": 0.00019075332975920038,
198
+ "loss": 0.1627,
199
+ "step": 270
200
+ },
201
+ {
202
+ "epoch": 7.0,
203
+ "grad_norm": 7.216045379638672,
204
+ "learning_rate": 0.00018949343616020252,
205
+ "loss": 0.1454,
206
+ "step": 280
207
+ },
208
+ {
209
+ "epoch": 7.25,
210
+ "grad_norm": 0.677476704120636,
211
+ "learning_rate": 0.00018815782217958233,
212
+ "loss": 0.0368,
213
+ "step": 290
214
+ },
215
+ {
216
+ "epoch": 7.5,
217
+ "grad_norm": 8.758004188537598,
218
+ "learning_rate": 0.00018674761788010927,
219
+ "loss": 0.1259,
220
+ "step": 300
221
+ },
222
+ {
223
+ "epoch": 7.75,
224
+ "grad_norm": 0.6607072353363037,
225
+ "learning_rate": 0.00018526401643540922,
226
+ "loss": 0.0559,
227
+ "step": 310
228
+ },
229
+ {
230
+ "epoch": 8.0,
231
+ "grad_norm": 2.017343521118164,
232
+ "learning_rate": 0.0001837082731204207,
233
+ "loss": 0.0662,
234
+ "step": 320
235
+ },
236
+ {
237
+ "epoch": 8.25,
238
+ "grad_norm": 0.03981485217809677,
239
+ "learning_rate": 0.00018208170424930672,
240
+ "loss": 0.0237,
241
+ "step": 330
242
+ },
243
+ {
244
+ "epoch": 8.5,
245
+ "grad_norm": 9.23737907409668,
246
+ "learning_rate": 0.00018038568606172173,
247
+ "loss": 0.1403,
248
+ "step": 340
249
+ },
250
+ {
251
+ "epoch": 8.75,
252
+ "grad_norm": 0.65294349193573,
253
+ "learning_rate": 0.00017862165355837542,
254
+ "loss": 0.0689,
255
+ "step": 350
256
+ },
257
+ {
258
+ "epoch": 9.0,
259
+ "grad_norm": 0.08593683689832687,
260
+ "learning_rate": 0.00017679109928687886,
261
+ "loss": 0.0896,
262
+ "step": 360
263
+ },
264
+ {
265
+ "epoch": 9.25,
266
+ "grad_norm": 0.13523679971694946,
267
+ "learning_rate": 0.00017489557207890023,
268
+ "loss": 0.0232,
269
+ "step": 370
270
+ },
271
+ {
272
+ "epoch": 9.5,
273
+ "grad_norm": 3.196052074432373,
274
+ "learning_rate": 0.00017293667573969854,
275
+ "loss": 0.0178,
276
+ "step": 380
277
+ },
278
+ {
279
+ "epoch": 9.75,
280
+ "grad_norm": 2.6995441913604736,
281
+ "learning_rate": 0.00017091606769114437,
282
+ "loss": 0.0204,
283
+ "step": 390
284
+ },
285
+ {
286
+ "epoch": 10.0,
287
+ "grad_norm": 4.18581485748291,
288
+ "learning_rate": 0.0001688354575693754,
289
+ "loss": 0.1131,
290
+ "step": 400
291
+ },
292
+ {
293
+ "epoch": 10.25,
294
+ "grad_norm": 0.39052364230155945,
295
+ "learning_rate": 0.00016669660577827363,
296
+ "loss": 0.0048,
297
+ "step": 410
298
+ },
299
+ {
300
+ "epoch": 10.5,
301
+ "grad_norm": 0.021380405873060226,
302
+ "learning_rate": 0.00016450132199998785,
303
+ "loss": 0.0189,
304
+ "step": 420
305
+ },
306
+ {
307
+ "epoch": 10.75,
308
+ "grad_norm": 0.06276793032884598,
309
+ "learning_rate": 0.00016225146366376198,
310
+ "loss": 0.0068,
311
+ "step": 430
312
+ },
313
+ {
314
+ "epoch": 11.0,
315
+ "grad_norm": 0.017770862206816673,
316
+ "learning_rate": 0.0001599489343743644,
317
+ "loss": 0.0308,
318
+ "step": 440
319
+ },
320
+ {
321
+ "epoch": 11.25,
322
+ "grad_norm": 0.02739694155752659,
323
+ "learning_rate": 0.00015759568230144834,
324
+ "loss": 0.0009,
325
+ "step": 450
326
+ },
327
+ {
328
+ "epoch": 11.5,
329
+ "grad_norm": 0.01998838223516941,
330
+ "learning_rate": 0.0001551936985312058,
331
+ "loss": 0.0187,
332
+ "step": 460
333
+ },
334
+ {
335
+ "epoch": 11.75,
336
+ "grad_norm": 0.06585182994604111,
337
+ "learning_rate": 0.00015274501538171,
338
+ "loss": 0.0036,
339
+ "step": 470
340
+ },
341
+ {
342
+ "epoch": 12.0,
343
+ "grad_norm": 1.4273861646652222,
344
+ "learning_rate": 0.000150251704683371,
345
+ "loss": 0.0022,
346
+ "step": 480
347
+ },
348
+ {
349
+ "epoch": 12.25,
350
+ "grad_norm": 0.01527713518589735,
351
+ "learning_rate": 0.00014771587602596084,
352
+ "loss": 0.0007,
353
+ "step": 490
354
+ },
355
+ {
356
+ "epoch": 12.5,
357
+ "grad_norm": 0.027245204895734787,
358
+ "learning_rate": 0.0001451396749736897,
359
+ "loss": 0.0419,
360
+ "step": 500
361
+ },
362
+ {
363
+ "epoch": 12.75,
364
+ "grad_norm": 0.012291381135582924,
365
+ "learning_rate": 0.00014252528124984433,
366
+ "loss": 0.0007,
367
+ "step": 510
368
+ },
369
+ {
370
+ "epoch": 13.0,
371
+ "grad_norm": 0.02366398088634014,
372
+ "learning_rate": 0.00013987490689252463,
373
+ "loss": 0.0011,
374
+ "step": 520
375
+ },
376
+ {
377
+ "epoch": 13.25,
378
+ "grad_norm": 0.010158264078199863,
379
+ "learning_rate": 0.00013719079438303866,
380
+ "loss": 0.0006,
381
+ "step": 530
382
+ },
383
+ {
384
+ "epoch": 13.5,
385
+ "grad_norm": 0.013381893746554852,
386
+ "learning_rate": 0.00013447521474853943,
387
+ "loss": 0.0006,
388
+ "step": 540
389
+ },
390
+ {
391
+ "epoch": 13.75,
392
+ "grad_norm": 0.013267560862004757,
393
+ "learning_rate": 0.00013173046564050924,
394
+ "loss": 0.0005,
395
+ "step": 550
396
+ },
397
+ {
398
+ "epoch": 14.0,
399
+ "grad_norm": 0.00924230832606554,
400
+ "learning_rate": 0.0001289588693907171,
401
+ "loss": 0.0005,
402
+ "step": 560
403
+ },
404
+ {
405
+ "epoch": 14.25,
406
+ "grad_norm": 0.012411078438162804,
407
+ "learning_rate": 0.00012616277104629436,
408
+ "loss": 0.0005,
409
+ "step": 570
410
+ },
411
+ {
412
+ "epoch": 14.5,
413
+ "grad_norm": 0.010797705501317978,
414
+ "learning_rate": 0.00012334453638559057,
415
+ "loss": 0.0004,
416
+ "step": 580
417
+ },
418
+ {
419
+ "epoch": 14.75,
420
+ "grad_norm": 0.011653212830424309,
421
+ "learning_rate": 0.00012050654991648877,
422
+ "loss": 0.0004,
423
+ "step": 590
424
+ },
425
+ {
426
+ "epoch": 15.0,
427
+ "grad_norm": 0.010719945654273033,
428
+ "learning_rate": 0.00011765121285887392,
429
+ "loss": 0.0004,
430
+ "step": 600
431
+ },
432
+ {
433
+ "epoch": 15.25,
434
+ "grad_norm": 0.009023563005030155,
435
+ "learning_rate": 0.00011478094111296109,
436
+ "loss": 0.0004,
437
+ "step": 610
438
+ },
439
+ {
440
+ "epoch": 15.5,
441
+ "grad_norm": 0.007160203997045755,
442
+ "learning_rate": 0.00011189816321520255,
443
+ "loss": 0.0004,
444
+ "step": 620
445
+ },
446
+ {
447
+ "epoch": 15.75,
448
+ "grad_norm": 0.010033920407295227,
449
+ "learning_rate": 0.00010900531828350374,
450
+ "loss": 0.0004,
451
+ "step": 630
452
+ },
453
+ {
454
+ "epoch": 16.0,
455
+ "grad_norm": 0.006705187261104584,
456
+ "learning_rate": 0.00010610485395348571,
457
+ "loss": 0.0003,
458
+ "step": 640
459
+ },
460
+ {
461
+ "epoch": 16.25,
462
+ "grad_norm": 0.007724540773779154,
463
+ "learning_rate": 0.0001031992243075413,
464
+ "loss": 0.0003,
465
+ "step": 650
466
+ },
467
+ {
468
+ "epoch": 16.5,
469
+ "grad_norm": 0.007002962753176689,
470
+ "learning_rate": 0.00010029088779843621,
471
+ "loss": 0.0003,
472
+ "step": 660
473
+ },
474
+ {
475
+ "epoch": 16.75,
476
+ "grad_norm": 0.007640474010258913,
477
+ "learning_rate": 9.73823051692127e-05,
478
+ "loss": 0.0003,
479
+ "step": 670
480
+ },
481
+ {
482
+ "epoch": 17.0,
483
+ "grad_norm": 0.008249858394265175,
484
+ "learning_rate": 9.447593737115516e-05,
485
+ "loss": 0.0003,
486
+ "step": 680
487
+ },
488
+ {
489
+ "epoch": 17.25,
490
+ "grad_norm": 0.005113428458571434,
491
+ "learning_rate": 9.157424348157972e-05,
492
+ "loss": 0.0003,
493
+ "step": 690
494
+ },
495
+ {
496
+ "epoch": 17.5,
497
+ "grad_norm": 0.007044928148388863,
498
+ "learning_rate": 8.867967862320934e-05,
499
+ "loss": 0.0003,
500
+ "step": 700
501
+ },
502
+ {
503
+ "epoch": 17.75,
504
+ "grad_norm": 0.0062586585991084576,
505
+ "learning_rate": 8.579469188689475e-05,
506
+ "loss": 0.0003,
507
+ "step": 710
508
+ },
509
+ {
510
+ "epoch": 18.0,
511
+ "grad_norm": 0.0065957107581198215,
512
+ "learning_rate": 8.292172425943934e-05,
513
+ "loss": 0.0003,
514
+ "step": 720
515
+ },
516
+ {
517
+ "epoch": 18.25,
518
+ "grad_norm": 0.004304594825953245,
519
+ "learning_rate": 8.00632065582803e-05,
520
+ "loss": 0.0002,
521
+ "step": 730
522
+ },
523
+ {
524
+ "epoch": 18.5,
525
+ "grad_norm": 0.004898569546639919,
526
+ "learning_rate": 7.722155737477466e-05,
527
+ "loss": 0.0003,
528
+ "step": 740
529
+ },
530
+ {
531
+ "epoch": 18.75,
532
+ "grad_norm": 0.006634353660047054,
533
+ "learning_rate": 7.439918102782944e-05,
534
+ "loss": 0.0003,
535
+ "step": 750
536
+ },
537
+ {
538
+ "epoch": 19.0,
539
+ "grad_norm": 0.0058410619385540485,
540
+ "learning_rate": 7.159846552960774e-05,
541
+ "loss": 0.0003,
542
+ "step": 760
543
+ },
544
+ {
545
+ "epoch": 19.25,
546
+ "grad_norm": 0.00621160538867116,
547
+ "learning_rate": 6.88217805650322e-05,
548
+ "loss": 0.0003,
549
+ "step": 770
550
+ },
551
+ {
552
+ "epoch": 19.5,
553
+ "grad_norm": 0.005199102684855461,
554
+ "learning_rate": 6.60714754867949e-05,
555
+ "loss": 0.0002,
556
+ "step": 780
557
+ },
558
+ {
559
+ "epoch": 19.75,
560
+ "grad_norm": 0.005410065874457359,
561
+ "learning_rate": 6.334987732757029e-05,
562
+ "loss": 0.0003,
563
+ "step": 790
564
+ },
565
+ {
566
+ "epoch": 20.0,
567
+ "grad_norm": 0.006572461687028408,
568
+ "learning_rate": 6.0659288831113516e-05,
569
+ "loss": 0.0003,
570
+ "step": 800
571
+ },
572
+ {
573
+ "epoch": 20.25,
574
+ "grad_norm": 0.004044756293296814,
575
+ "learning_rate": 5.8001986503909055e-05,
576
+ "loss": 0.0002,
577
+ "step": 810
578
+ },
579
+ {
580
+ "epoch": 20.5,
581
+ "grad_norm": 0.0064803618006408215,
582
+ "learning_rate": 5.5380218689019125e-05,
583
+ "loss": 0.0002,
584
+ "step": 820
585
+ },
586
+ {
587
+ "epoch": 20.75,
588
+ "grad_norm": 0.006396050099283457,
589
+ "learning_rate": 5.27962036637609e-05,
590
+ "loss": 0.0003,
591
+ "step": 830
592
+ },
593
+ {
594
+ "epoch": 21.0,
595
+ "grad_norm": 0.004065022338181734,
596
+ "learning_rate": 5.0252127762822375e-05,
597
+ "loss": 0.0002,
598
+ "step": 840
599
+ },
600
+ {
601
+ "epoch": 21.25,
602
+ "grad_norm": 0.005657975561916828,
603
+ "learning_rate": 4.7750143528405126e-05,
604
+ "loss": 0.0002,
605
+ "step": 850
606
+ },
607
+ {
608
+ "epoch": 21.5,
609
+ "grad_norm": 0.005015597678720951,
610
+ "learning_rate": 4.529236788895854e-05,
611
+ "loss": 0.0002,
612
+ "step": 860
613
+ },
614
+ {
615
+ "epoch": 21.75,
616
+ "grad_norm": 0.006195488385856152,
617
+ "learning_rate": 4.288088036804713e-05,
618
+ "loss": 0.0002,
619
+ "step": 870
620
+ },
621
+ {
622
+ "epoch": 22.0,
623
+ "grad_norm": 0.005124359857290983,
624
+ "learning_rate": 4.0517721324865884e-05,
625
+ "loss": 0.0002,
626
+ "step": 880
627
+ },
628
+ {
629
+ "epoch": 22.25,
630
+ "grad_norm": 0.005272749345749617,
631
+ "learning_rate": 3.8204890227892686e-05,
632
+ "loss": 0.0002,
633
+ "step": 890
634
+ },
635
+ {
636
+ "epoch": 22.5,
637
+ "grad_norm": 0.0042186155915260315,
638
+ "learning_rate": 3.594434396313848e-05,
639
+ "loss": 0.0002,
640
+ "step": 900
641
+ },
642
+ {
643
+ "epoch": 22.75,
644
+ "grad_norm": 0.004914261866360903,
645
+ "learning_rate": 3.373799517842627e-05,
646
+ "loss": 0.0002,
647
+ "step": 910
648
+ },
649
+ {
650
+ "epoch": 23.0,
651
+ "grad_norm": 0.004066417925059795,
652
+ "learning_rate": 3.1587710665100024e-05,
653
+ "loss": 0.0002,
654
+ "step": 920
655
+ },
656
+ {
657
+ "epoch": 23.25,
658
+ "grad_norm": 0.0054823365062475204,
659
+ "learning_rate": 2.9495309778532966e-05,
660
+ "loss": 0.0002,
661
+ "step": 930
662
+ },
663
+ {
664
+ "epoch": 23.5,
665
+ "grad_norm": 0.004470289219170809,
666
+ "learning_rate": 2.746256289877126e-05,
667
+ "loss": 0.0002,
668
+ "step": 940
669
+ },
670
+ {
671
+ "epoch": 23.75,
672
+ "grad_norm": 0.005384424235671759,
673
+ "learning_rate": 2.5491189932615646e-05,
674
+ "loss": 0.0002,
675
+ "step": 950
676
+ },
677
+ {
678
+ "epoch": 24.0,
679
+ "grad_norm": 0.004562985617667437,
680
+ "learning_rate": 2.3582858858408684e-05,
681
+ "loss": 0.0002,
682
+ "step": 960
683
+ },
684
+ {
685
+ "epoch": 24.25,
686
+ "grad_norm": 0.0052340407855808735,
687
+ "learning_rate": 2.173918431475861e-05,
688
+ "loss": 0.0002,
689
+ "step": 970
690
+ },
691
+ {
692
+ "epoch": 24.5,
693
+ "grad_norm": 0.004082779865711927,
694
+ "learning_rate": 1.996172623439363e-05,
695
+ "loss": 0.0002,
696
+ "step": 980
697
+ },
698
+ {
699
+ "epoch": 24.75,
700
+ "grad_norm": 0.004965928383171558,
701
+ "learning_rate": 1.8251988524303363e-05,
702
+ "loss": 0.0002,
703
+ "step": 990
704
+ },
705
+ {
706
+ "epoch": 25.0,
707
+ "grad_norm": 0.005955494940280914,
708
+ "learning_rate": 1.661141779328319e-05,
709
+ "loss": 0.0002,
710
+ "step": 1000
711
+ },
712
+ {
713
+ "epoch": 25.25,
714
+ "grad_norm": 0.004189318045973778,
715
+ "learning_rate": 1.5041402127958948e-05,
716
+ "loss": 0.0002,
717
+ "step": 1010
718
+ },
719
+ {
720
+ "epoch": 25.5,
721
+ "grad_norm": 0.0051079061813652515,
722
+ "learning_rate": 1.3543269918326961e-05,
723
+ "loss": 0.0002,
724
+ "step": 1020
725
+ },
726
+ {
727
+ "epoch": 25.75,
728
+ "grad_norm": 0.004737610928714275,
729
+ "learning_rate": 1.2118288733803473e-05,
730
+ "loss": 0.0002,
731
+ "step": 1030
732
+ },
733
+ {
734
+ "epoch": 26.0,
735
+ "grad_norm": 0.005510413553565741,
736
+ "learning_rate": 1.0767664250734466e-05,
737
+ "loss": 0.0002,
738
+ "step": 1040
739
+ },
740
+ {
741
+ "epoch": 26.25,
742
+ "grad_norm": 0.003644640324637294,
743
+ "learning_rate": 9.492539232273001e-06,
744
+ "loss": 0.0002,
745
+ "step": 1050
746
+ },
747
+ {
748
+ "epoch": 26.5,
749
+ "grad_norm": 0.005952645093202591,
750
+ "learning_rate": 8.293992561487596e-06,
751
+ "loss": 0.0002,
752
+ "step": 1060
753
+ },
754
+ {
755
+ "epoch": 26.75,
756
+ "grad_norm": 0.0034450222738087177,
757
+ "learning_rate": 7.173038328519344e-06,
758
+ "loss": 0.0002,
759
+ "step": 1070
760
+ },
761
+ {
762
+ "epoch": 27.0,
763
+ "grad_norm": 0.0034657688811421394,
764
+ "learning_rate": 6.130624972560461e-06,
765
+ "loss": 0.0002,
766
+ "step": 1080
767
+ },
768
+ {
769
+ "epoch": 27.25,
770
+ "grad_norm": 0.006222739350050688,
771
+ "learning_rate": 5.167634479380068e-06,
772
+ "loss": 0.0002,
773
+ "step": 1090
774
+ },
775
+ {
776
+ "epoch": 27.5,
777
+ "grad_norm": 0.006043997593224049,
778
+ "learning_rate": 4.284881635076132e-06,
779
+ "loss": 0.0002,
780
+ "step": 1100
781
+ },
782
+ {
783
+ "epoch": 27.75,
784
+ "grad_norm": 0.00470092985779047,
785
+ "learning_rate": 3.4831133366850623e-06,
786
+ "loss": 0.0002,
787
+ "step": 1110
788
+ },
789
+ {
790
+ "epoch": 28.0,
791
+ "grad_norm": 0.004548701923340559,
792
+ "learning_rate": 2.7630079602323442e-06,
793
+ "loss": 0.0002,
794
+ "step": 1120
795
+ },
796
+ {
797
+ "epoch": 28.25,
798
+ "grad_norm": 0.004792294930666685,
799
+ "learning_rate": 2.125174786758599e-06,
800
+ "loss": 0.0002,
801
+ "step": 1130
802
+ },
803
+ {
804
+ "epoch": 28.5,
805
+ "grad_norm": 0.004103948827832937,
806
+ "learning_rate": 1.5701534868070355e-06,
807
+ "loss": 0.0002,
808
+ "step": 1140
809
+ },
810
+ {
811
+ "epoch": 28.75,
812
+ "grad_norm": 0.00405226880684495,
813
+ "learning_rate": 1.0984136638083177e-06,
814
+ "loss": 0.0002,
815
+ "step": 1150
816
+ },
817
+ {
818
+ "epoch": 29.0,
819
+ "grad_norm": 0.003278164891526103,
820
+ "learning_rate": 7.103544567491071e-07,
821
+ "loss": 0.0002,
822
+ "step": 1160
823
+ },
824
+ {
825
+ "epoch": 29.25,
826
+ "grad_norm": 0.005859719589352608,
827
+ "learning_rate": 4.0630420246071665e-07,
828
+ "loss": 0.0002,
829
+ "step": 1170
830
+ },
831
+ {
832
+ "epoch": 29.5,
833
+ "grad_norm": 0.00393211143091321,
834
+ "learning_rate": 1.86520157813308e-07,
835
+ "loss": 0.0002,
836
+ "step": 1180
837
+ },
838
+ {
839
+ "epoch": 29.75,
840
+ "grad_norm": 0.004771947395056486,
841
+ "learning_rate": 5.1188282050906864e-08,
842
+ "loss": 0.0002,
843
+ "step": 1190
844
+ },
845
+ {
846
+ "epoch": 30.0,
847
+ "grad_norm": 0.003914570435881615,
848
+ "learning_rate": 4.2307945137265435e-10,
849
+ "loss": 0.0002,
850
+ "step": 1200
851
+ },
852
+ {
853
+ "epoch": 30.0,
854
+ "step": 1200,
855
+ "total_flos": 5518966123560960.0,
856
+ "train_loss": 0.2944723299946054,
857
+ "train_runtime": 391.3174,
858
+ "train_samples_per_second": 3.067,
859
+ "train_steps_per_second": 3.067
860
+ }
861
+ ],
862
+ "logging_steps": 10,
863
+ "max_steps": 1200,
864
+ "num_input_tokens_seen": 0,
865
+ "num_train_epochs": 30,
866
+ "save_steps": 500,
867
+ "stateful_callbacks": {
868
+ "TrainerControl": {
869
+ "args": {
870
+ "should_epoch_stop": false,
871
+ "should_evaluate": false,
872
+ "should_log": false,
873
+ "should_save": true,
874
+ "should_training_stop": true
875
+ },
876
+ "attributes": {}
877
+ }
878
+ },
879
+ "total_flos": 5518966123560960.0,
880
+ "train_batch_size": 1,
881
+ "trial_name": null,
882
+ "trial_params": null
883
+ }
video_preprocessor_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_rescale": true,
10
+ "do_resize": true,
11
+ "do_sample_frames": false,
12
+ "fps": null,
13
+ "image_mean": [
14
+ 0.48145466,
15
+ 0.4578275,
16
+ 0.40821073
17
+ ],
18
+ "image_std": [
19
+ 0.26862954,
20
+ 0.26130258,
21
+ 0.27577711
22
+ ],
23
+ "input_data_format": null,
24
+ "max_frames": 768,
25
+ "max_pixels": 12845056,
26
+ "merge_size": 2,
27
+ "min_frames": 4,
28
+ "min_pixels": 3136,
29
+ "num_frames": null,
30
+ "pad_size": null,
31
+ "patch_size": 14,
32
+ "processor_class": "Qwen2VLProcessor",
33
+ "resample": 3,
34
+ "rescale_factor": 0.00392156862745098,
35
+ "return_metadata": false,
36
+ "size": {
37
+ "longest_edge": 12845056,
38
+ "shortest_edge": 3136
39
+ },
40
+ "temporal_patch_size": 2,
41
+ "video_metadata": null,
42
+ "video_processor_type": "Qwen2VLVideoProcessor"
43
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff