Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- added_tokens.json +24 -0
- chat_template.jinja +7 -0
- config.json +565 -0
- generation_config.json +4 -0
- merges.txt +0 -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 +0 -0
- preprocessor_config.json +31 -0
- special_tokens_map.json +38 -0
- tokenizer.json +3 -0
- tokenizer_config.json +223 -0
- trainer_state.json +1724 -0
- training_args.bin +3 -0
- video_preprocessor_config.json +98 -0
- vocab.json +0 -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
|
added_tokens.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|AUDIO|>": 151646,
|
| 5 |
+
"<|IMAGE|>": 151655,
|
| 6 |
+
"<|VIDEO|>": 151656,
|
| 7 |
+
"<|audio_bos|>": 151647,
|
| 8 |
+
"<|audio_eos|>": 151648,
|
| 9 |
+
"<|box_end|>": 151649,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|quad_end|>": 151651,
|
| 19 |
+
"<|quad_start|>": 151650,
|
| 20 |
+
"<|repo_name|>": 151663,
|
| 21 |
+
"<|vision_bos|>": 151652,
|
| 22 |
+
"<|vision_eos|>": 151653,
|
| 23 |
+
"<|vision_pad|>": 151654
|
| 24 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{% set audio_count = namespace(value=0) %}{% 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_bos|><|IMAGE|><|vision_eos|>{% elif content['type'] == 'audio' or 'audio' in content or 'audio_url' in content %}{% set audio_count.value = audio_count.value + 1 %}{% if add_audio_id %}Audio {{ audio_count.value }}: {% endif %}<|audio_bos|><|AUDIO|><|audio_eos|>{% 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_bos|><|VIDEO|><|vision_eos|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>
|
| 6 |
+
{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
|
| 7 |
+
{% endif %}
|
config.json
ADDED
|
@@ -0,0 +1,565 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen2_5OmniForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"enable_audio_output": true,
|
| 6 |
+
"enable_talker": true,
|
| 7 |
+
"model_type": "qwen2_5_omni",
|
| 8 |
+
"talker_config": {
|
| 9 |
+
"_name_or_path": "Qwen2.5-Omni-7B/talker",
|
| 10 |
+
"architectures": [
|
| 11 |
+
"Qwen2OmniTalkerForConditionalGeneration"
|
| 12 |
+
],
|
| 13 |
+
"attention_dropout": 0.0,
|
| 14 |
+
"audio_end_token_id": 151648,
|
| 15 |
+
"audio_start_token_id": 151647,
|
| 16 |
+
"audio_token_index": 151646,
|
| 17 |
+
"embedding_size": 3584,
|
| 18 |
+
"head_dim": 128,
|
| 19 |
+
"hidden_act": "silu",
|
| 20 |
+
"hidden_size": 896,
|
| 21 |
+
"image_token_index": 151655,
|
| 22 |
+
"init_std": 0.02,
|
| 23 |
+
"initializer_range": 0.02,
|
| 24 |
+
"intermediate_size": 18944,
|
| 25 |
+
"max_position_embeddings": 32768,
|
| 26 |
+
"max_window_layers": 28,
|
| 27 |
+
"model_type": "qwen2_5_omni_talker",
|
| 28 |
+
"num_attention_heads": 12,
|
| 29 |
+
"num_hidden_layers": 24,
|
| 30 |
+
"num_key_value_heads": 4,
|
| 31 |
+
"position_id_per_seconds": 25,
|
| 32 |
+
"rms_norm_eps": 1e-06,
|
| 33 |
+
"rope_scaling": {
|
| 34 |
+
"mrope_section": [
|
| 35 |
+
16,
|
| 36 |
+
24,
|
| 37 |
+
24
|
| 38 |
+
],
|
| 39 |
+
"rope_type": "default",
|
| 40 |
+
"type": "default"
|
| 41 |
+
},
|
| 42 |
+
"rope_theta": 1000000.0,
|
| 43 |
+
"seconds_per_chunk": 2,
|
| 44 |
+
"sliding_window": 32768,
|
| 45 |
+
"spatial_merge_size": 2,
|
| 46 |
+
"torch_dtype": "bfloat16",
|
| 47 |
+
"tts_codec_end_token_id": 8294,
|
| 48 |
+
"tts_codec_mask_token_id": 8296,
|
| 49 |
+
"tts_codec_pad_token_id": 8292,
|
| 50 |
+
"tts_codec_start_token_id": 8293,
|
| 51 |
+
"tts_text_end_token_id": 151861,
|
| 52 |
+
"tts_text_pad_token_id": 151859,
|
| 53 |
+
"tts_text_start_token_id": 151860,
|
| 54 |
+
"use_cache": true,
|
| 55 |
+
"use_sliding_window": false,
|
| 56 |
+
"video_token_index": 151656,
|
| 57 |
+
"vision_end_token_id": 151653,
|
| 58 |
+
"vision_start_token_id": 151652,
|
| 59 |
+
"vocab_size": 8448
|
| 60 |
+
},
|
| 61 |
+
"thinker_config": {
|
| 62 |
+
"_name_or_path": "Qwen2.5-Omni-7B/thinker",
|
| 63 |
+
"architectures": [
|
| 64 |
+
"Qwen2OmniNaViTThinkerForConditionalGeneration"
|
| 65 |
+
],
|
| 66 |
+
"audio_config": {
|
| 67 |
+
"_name_or_path": "",
|
| 68 |
+
"activation_dropout": 0.0,
|
| 69 |
+
"activation_function": "gelu",
|
| 70 |
+
"add_cross_attention": false,
|
| 71 |
+
"architectures": null,
|
| 72 |
+
"attention_dropout": 0.0,
|
| 73 |
+
"bad_words_ids": null,
|
| 74 |
+
"begin_suppress_tokens": null,
|
| 75 |
+
"bos_token_id": null,
|
| 76 |
+
"chunk_size_feed_forward": 0,
|
| 77 |
+
"cross_attention_hidden_size": null,
|
| 78 |
+
"d_model": 1280,
|
| 79 |
+
"decoder_start_token_id": null,
|
| 80 |
+
"diversity_penalty": 0.0,
|
| 81 |
+
"do_sample": false,
|
| 82 |
+
"dropout": 0.0,
|
| 83 |
+
"early_stopping": false,
|
| 84 |
+
"encoder_attention_heads": 20,
|
| 85 |
+
"encoder_ffn_dim": 5120,
|
| 86 |
+
"encoder_layerdrop": 0.0,
|
| 87 |
+
"encoder_layers": 32,
|
| 88 |
+
"encoder_no_repeat_ngram_size": 0,
|
| 89 |
+
"eos_token_id": null,
|
| 90 |
+
"exponential_decay_length_penalty": null,
|
| 91 |
+
"finetuning_task": null,
|
| 92 |
+
"forced_bos_token_id": null,
|
| 93 |
+
"forced_eos_token_id": null,
|
| 94 |
+
"id2label": {
|
| 95 |
+
"0": "LABEL_0",
|
| 96 |
+
"1": "LABEL_1"
|
| 97 |
+
},
|
| 98 |
+
"init_std": 0.02,
|
| 99 |
+
"initializer_range": 0.02,
|
| 100 |
+
"is_decoder": false,
|
| 101 |
+
"is_encoder_decoder": false,
|
| 102 |
+
"label2id": {
|
| 103 |
+
"LABEL_0": 0,
|
| 104 |
+
"LABEL_1": 1
|
| 105 |
+
},
|
| 106 |
+
"length_penalty": 1.0,
|
| 107 |
+
"max_length": 20,
|
| 108 |
+
"max_source_positions": 1500,
|
| 109 |
+
"min_length": 0,
|
| 110 |
+
"model_type": "qwen2_5_omni_audio_encoder",
|
| 111 |
+
"n_window": 100,
|
| 112 |
+
"no_repeat_ngram_size": 0,
|
| 113 |
+
"num_beam_groups": 1,
|
| 114 |
+
"num_beams": 1,
|
| 115 |
+
"num_hidden_layers": 32,
|
| 116 |
+
"num_mel_bins": 128,
|
| 117 |
+
"num_return_sequences": 1,
|
| 118 |
+
"output_attentions": false,
|
| 119 |
+
"output_dim": 3584,
|
| 120 |
+
"output_hidden_states": false,
|
| 121 |
+
"output_scores": false,
|
| 122 |
+
"pad_token_id": null,
|
| 123 |
+
"prefix": null,
|
| 124 |
+
"problem_type": null,
|
| 125 |
+
"pruned_heads": {},
|
| 126 |
+
"remove_invalid_values": false,
|
| 127 |
+
"repetition_penalty": 1.0,
|
| 128 |
+
"return_dict": true,
|
| 129 |
+
"return_dict_in_generate": false,
|
| 130 |
+
"scale_embedding": false,
|
| 131 |
+
"sep_token_id": null,
|
| 132 |
+
"suppress_tokens": null,
|
| 133 |
+
"task_specific_params": null,
|
| 134 |
+
"temperature": 1.0,
|
| 135 |
+
"tf_legacy_loss": false,
|
| 136 |
+
"tie_encoder_decoder": false,
|
| 137 |
+
"tie_word_embeddings": true,
|
| 138 |
+
"tokenizer_class": null,
|
| 139 |
+
"top_k": 50,
|
| 140 |
+
"top_p": 1.0,
|
| 141 |
+
"torch_dtype": null,
|
| 142 |
+
"torchscript": false,
|
| 143 |
+
"typical_p": 1.0,
|
| 144 |
+
"use_bfloat16": false
|
| 145 |
+
},
|
| 146 |
+
"audio_end_token_id": 151648,
|
| 147 |
+
"audio_start_token_id": 151647,
|
| 148 |
+
"audio_token_index": 151646,
|
| 149 |
+
"bos_token_id": 151644,
|
| 150 |
+
"eos_token_id": 151645,
|
| 151 |
+
"ignore_index": -100,
|
| 152 |
+
"image_token_index": 151655,
|
| 153 |
+
"init_std": 0.02,
|
| 154 |
+
"initializer_range": 0.02,
|
| 155 |
+
"model_type": "qwen2_5_omni_thinker",
|
| 156 |
+
"pad_token_id": 151643,
|
| 157 |
+
"position_id_per_seconds": 25,
|
| 158 |
+
"seconds_per_chunk": 2,
|
| 159 |
+
"text_config": {
|
| 160 |
+
"_name_or_path": "",
|
| 161 |
+
"add_cross_attention": false,
|
| 162 |
+
"architectures": null,
|
| 163 |
+
"attention_dropout": 0.0,
|
| 164 |
+
"bad_words_ids": null,
|
| 165 |
+
"begin_suppress_tokens": null,
|
| 166 |
+
"bos_token_id": null,
|
| 167 |
+
"chunk_size_feed_forward": 0,
|
| 168 |
+
"cross_attention_hidden_size": null,
|
| 169 |
+
"decoder_start_token_id": null,
|
| 170 |
+
"diversity_penalty": 0.0,
|
| 171 |
+
"do_sample": false,
|
| 172 |
+
"early_stopping": false,
|
| 173 |
+
"encoder_no_repeat_ngram_size": 0,
|
| 174 |
+
"eos_token_id": null,
|
| 175 |
+
"exponential_decay_length_penalty": null,
|
| 176 |
+
"finetuning_task": null,
|
| 177 |
+
"forced_bos_token_id": null,
|
| 178 |
+
"forced_eos_token_id": null,
|
| 179 |
+
"hidden_act": "silu",
|
| 180 |
+
"hidden_size": 3584,
|
| 181 |
+
"id2label": {
|
| 182 |
+
"0": "LABEL_0",
|
| 183 |
+
"1": "LABEL_1"
|
| 184 |
+
},
|
| 185 |
+
"init_std": 0.02,
|
| 186 |
+
"initializer_range": 0.02,
|
| 187 |
+
"intermediate_size": 18944,
|
| 188 |
+
"is_decoder": false,
|
| 189 |
+
"is_encoder_decoder": false,
|
| 190 |
+
"label2id": {
|
| 191 |
+
"LABEL_0": 0,
|
| 192 |
+
"LABEL_1": 1
|
| 193 |
+
},
|
| 194 |
+
"length_penalty": 1.0,
|
| 195 |
+
"max_length": 20,
|
| 196 |
+
"max_position_embeddings": 32768,
|
| 197 |
+
"max_window_layers": 28,
|
| 198 |
+
"min_length": 0,
|
| 199 |
+
"model_type": "qwen2_5_omni_text",
|
| 200 |
+
"no_repeat_ngram_size": 0,
|
| 201 |
+
"num_attention_heads": 28,
|
| 202 |
+
"num_beam_groups": 1,
|
| 203 |
+
"num_beams": 1,
|
| 204 |
+
"num_hidden_layers": 28,
|
| 205 |
+
"num_key_value_heads": 4,
|
| 206 |
+
"num_return_sequences": 1,
|
| 207 |
+
"output_attentions": false,
|
| 208 |
+
"output_hidden_states": false,
|
| 209 |
+
"output_scores": false,
|
| 210 |
+
"pad_token_id": null,
|
| 211 |
+
"prefix": null,
|
| 212 |
+
"problem_type": null,
|
| 213 |
+
"pruned_heads": {},
|
| 214 |
+
"remove_invalid_values": false,
|
| 215 |
+
"repetition_penalty": 1.0,
|
| 216 |
+
"return_dict": true,
|
| 217 |
+
"return_dict_in_generate": false,
|
| 218 |
+
"rms_norm_eps": 1e-06,
|
| 219 |
+
"rope_scaling": {
|
| 220 |
+
"mrope_section": [
|
| 221 |
+
16,
|
| 222 |
+
24,
|
| 223 |
+
24
|
| 224 |
+
],
|
| 225 |
+
"rope_type": "default",
|
| 226 |
+
"type": "default"
|
| 227 |
+
},
|
| 228 |
+
"rope_theta": 1000000.0,
|
| 229 |
+
"sep_token_id": null,
|
| 230 |
+
"sliding_window": 32768,
|
| 231 |
+
"suppress_tokens": null,
|
| 232 |
+
"task_specific_params": null,
|
| 233 |
+
"temperature": 1.0,
|
| 234 |
+
"tf_legacy_loss": false,
|
| 235 |
+
"tie_encoder_decoder": false,
|
| 236 |
+
"tie_word_embeddings": false,
|
| 237 |
+
"tokenizer_class": null,
|
| 238 |
+
"top_k": 50,
|
| 239 |
+
"top_p": 1.0,
|
| 240 |
+
"torch_dtype": null,
|
| 241 |
+
"torchscript": false,
|
| 242 |
+
"typical_p": 1.0,
|
| 243 |
+
"use_bfloat16": false,
|
| 244 |
+
"use_cache": true,
|
| 245 |
+
"use_sliding_window": false,
|
| 246 |
+
"vocab_size": 152064
|
| 247 |
+
},
|
| 248 |
+
"torch_dtype": "bfloat16",
|
| 249 |
+
"user_token_id": 872,
|
| 250 |
+
"video_token_index": 151656,
|
| 251 |
+
"vision_config": {
|
| 252 |
+
"_name_or_path": "",
|
| 253 |
+
"add_cross_attention": false,
|
| 254 |
+
"architectures": null,
|
| 255 |
+
"bad_words_ids": null,
|
| 256 |
+
"begin_suppress_tokens": null,
|
| 257 |
+
"bos_token_id": null,
|
| 258 |
+
"chunk_size_feed_forward": 0,
|
| 259 |
+
"cross_attention_hidden_size": null,
|
| 260 |
+
"decoder_start_token_id": null,
|
| 261 |
+
"depth": 32,
|
| 262 |
+
"diversity_penalty": 0.0,
|
| 263 |
+
"do_sample": false,
|
| 264 |
+
"early_stopping": false,
|
| 265 |
+
"embed_dim": 1280,
|
| 266 |
+
"encoder_no_repeat_ngram_size": 0,
|
| 267 |
+
"eos_token_id": null,
|
| 268 |
+
"exponential_decay_length_penalty": null,
|
| 269 |
+
"finetuning_task": null,
|
| 270 |
+
"forced_bos_token_id": null,
|
| 271 |
+
"forced_eos_token_id": null,
|
| 272 |
+
"fullatt_block_indexes": [
|
| 273 |
+
7,
|
| 274 |
+
15,
|
| 275 |
+
23,
|
| 276 |
+
31
|
| 277 |
+
],
|
| 278 |
+
"hidden_act": "silu",
|
| 279 |
+
"hidden_size": 1280,
|
| 280 |
+
"id2label": {
|
| 281 |
+
"0": "LABEL_0",
|
| 282 |
+
"1": "LABEL_1"
|
| 283 |
+
},
|
| 284 |
+
"in_channels": 3,
|
| 285 |
+
"in_chans": 3,
|
| 286 |
+
"init_std": 0.02,
|
| 287 |
+
"initializer_range": 0.02,
|
| 288 |
+
"intermediate_size": 3420,
|
| 289 |
+
"is_decoder": false,
|
| 290 |
+
"is_encoder_decoder": false,
|
| 291 |
+
"label2id": {
|
| 292 |
+
"LABEL_0": 0,
|
| 293 |
+
"LABEL_1": 1
|
| 294 |
+
},
|
| 295 |
+
"length_penalty": 1.0,
|
| 296 |
+
"max_length": 20,
|
| 297 |
+
"min_length": 0,
|
| 298 |
+
"model_type": "qwen2_5_omni_vision_encoder",
|
| 299 |
+
"no_repeat_ngram_size": 0,
|
| 300 |
+
"num_beam_groups": 1,
|
| 301 |
+
"num_beams": 1,
|
| 302 |
+
"num_heads": 16,
|
| 303 |
+
"num_return_sequences": 1,
|
| 304 |
+
"out_hidden_size": 3584,
|
| 305 |
+
"output_attentions": false,
|
| 306 |
+
"output_hidden_states": false,
|
| 307 |
+
"output_scores": false,
|
| 308 |
+
"pad_token_id": null,
|
| 309 |
+
"patch_size": 14,
|
| 310 |
+
"prefix": null,
|
| 311 |
+
"problem_type": null,
|
| 312 |
+
"pruned_heads": {},
|
| 313 |
+
"remove_invalid_values": false,
|
| 314 |
+
"repetition_penalty": 1.0,
|
| 315 |
+
"return_dict": true,
|
| 316 |
+
"return_dict_in_generate": false,
|
| 317 |
+
"sep_token_id": null,
|
| 318 |
+
"spatial_merge_size": 2,
|
| 319 |
+
"spatial_patch_size": 14,
|
| 320 |
+
"suppress_tokens": null,
|
| 321 |
+
"task_specific_params": null,
|
| 322 |
+
"temperature": 1.0,
|
| 323 |
+
"temporal_patch_size": 2,
|
| 324 |
+
"tf_legacy_loss": false,
|
| 325 |
+
"tie_encoder_decoder": false,
|
| 326 |
+
"tie_word_embeddings": true,
|
| 327 |
+
"tokenizer_class": null,
|
| 328 |
+
"tokens_per_second": 25,
|
| 329 |
+
"top_k": 50,
|
| 330 |
+
"top_p": 1.0,
|
| 331 |
+
"torch_dtype": null,
|
| 332 |
+
"torchscript": false,
|
| 333 |
+
"typical_p": 1.0,
|
| 334 |
+
"use_bfloat16": false,
|
| 335 |
+
"window_size": 112
|
| 336 |
+
},
|
| 337 |
+
"vision_end_token_id": 151653,
|
| 338 |
+
"vision_start_token_id": 151652,
|
| 339 |
+
"vision_token_id": 151654
|
| 340 |
+
},
|
| 341 |
+
"token2wav_config": {
|
| 342 |
+
"bigvgan_config": {
|
| 343 |
+
"_name_or_path": "",
|
| 344 |
+
"add_cross_attention": false,
|
| 345 |
+
"architectures": null,
|
| 346 |
+
"bad_words_ids": null,
|
| 347 |
+
"begin_suppress_tokens": null,
|
| 348 |
+
"bos_token_id": null,
|
| 349 |
+
"chunk_size_feed_forward": 0,
|
| 350 |
+
"cross_attention_hidden_size": null,
|
| 351 |
+
"decoder_start_token_id": null,
|
| 352 |
+
"diversity_penalty": 0.0,
|
| 353 |
+
"do_sample": false,
|
| 354 |
+
"early_stopping": false,
|
| 355 |
+
"encoder_no_repeat_ngram_size": 0,
|
| 356 |
+
"eos_token_id": null,
|
| 357 |
+
"exponential_decay_length_penalty": null,
|
| 358 |
+
"finetuning_task": null,
|
| 359 |
+
"forced_bos_token_id": null,
|
| 360 |
+
"forced_eos_token_id": null,
|
| 361 |
+
"id2label": {
|
| 362 |
+
"0": "LABEL_0",
|
| 363 |
+
"1": "LABEL_1"
|
| 364 |
+
},
|
| 365 |
+
"is_decoder": false,
|
| 366 |
+
"is_encoder_decoder": false,
|
| 367 |
+
"label2id": {
|
| 368 |
+
"LABEL_0": 0,
|
| 369 |
+
"LABEL_1": 1
|
| 370 |
+
},
|
| 371 |
+
"length_penalty": 1.0,
|
| 372 |
+
"max_length": 20,
|
| 373 |
+
"mel_dim": 80,
|
| 374 |
+
"min_length": 0,
|
| 375 |
+
"model_type": "qwen2_5_omni_bigvgan",
|
| 376 |
+
"no_repeat_ngram_size": 0,
|
| 377 |
+
"num_beam_groups": 1,
|
| 378 |
+
"num_beams": 1,
|
| 379 |
+
"num_return_sequences": 1,
|
| 380 |
+
"output_attentions": false,
|
| 381 |
+
"output_hidden_states": false,
|
| 382 |
+
"output_scores": false,
|
| 383 |
+
"pad_token_id": null,
|
| 384 |
+
"prefix": null,
|
| 385 |
+
"problem_type": null,
|
| 386 |
+
"pruned_heads": {},
|
| 387 |
+
"remove_invalid_values": false,
|
| 388 |
+
"repetition_penalty": 1.0,
|
| 389 |
+
"resblock_dilation_sizes": [
|
| 390 |
+
[
|
| 391 |
+
1,
|
| 392 |
+
3,
|
| 393 |
+
5
|
| 394 |
+
],
|
| 395 |
+
[
|
| 396 |
+
1,
|
| 397 |
+
3,
|
| 398 |
+
5
|
| 399 |
+
],
|
| 400 |
+
[
|
| 401 |
+
1,
|
| 402 |
+
3,
|
| 403 |
+
5
|
| 404 |
+
]
|
| 405 |
+
],
|
| 406 |
+
"resblock_kernel_sizes": [
|
| 407 |
+
3,
|
| 408 |
+
7,
|
| 409 |
+
11
|
| 410 |
+
],
|
| 411 |
+
"return_dict": true,
|
| 412 |
+
"return_dict_in_generate": false,
|
| 413 |
+
"sep_token_id": null,
|
| 414 |
+
"suppress_tokens": null,
|
| 415 |
+
"task_specific_params": null,
|
| 416 |
+
"temperature": 1.0,
|
| 417 |
+
"tf_legacy_loss": false,
|
| 418 |
+
"tie_encoder_decoder": false,
|
| 419 |
+
"tie_word_embeddings": true,
|
| 420 |
+
"tokenizer_class": null,
|
| 421 |
+
"top_k": 50,
|
| 422 |
+
"top_p": 1.0,
|
| 423 |
+
"torch_dtype": null,
|
| 424 |
+
"torchscript": false,
|
| 425 |
+
"typical_p": 1.0,
|
| 426 |
+
"upsample_initial_channel": 1536,
|
| 427 |
+
"upsample_kernel_sizes": [
|
| 428 |
+
11,
|
| 429 |
+
7,
|
| 430 |
+
4,
|
| 431 |
+
4,
|
| 432 |
+
4,
|
| 433 |
+
4
|
| 434 |
+
],
|
| 435 |
+
"upsample_rates": [
|
| 436 |
+
5,
|
| 437 |
+
3,
|
| 438 |
+
2,
|
| 439 |
+
2,
|
| 440 |
+
2,
|
| 441 |
+
2
|
| 442 |
+
],
|
| 443 |
+
"use_bfloat16": false,
|
| 444 |
+
"use_bias_at_final": false
|
| 445 |
+
},
|
| 446 |
+
"dit_config": {
|
| 447 |
+
"_name_or_path": "",
|
| 448 |
+
"add_cross_attention": false,
|
| 449 |
+
"architectures": null,
|
| 450 |
+
"bad_words_ids": null,
|
| 451 |
+
"begin_suppress_tokens": null,
|
| 452 |
+
"block_size": 24,
|
| 453 |
+
"bos_token_id": null,
|
| 454 |
+
"chunk_size_feed_forward": 0,
|
| 455 |
+
"cross_attention_hidden_size": null,
|
| 456 |
+
"decoder_start_token_id": null,
|
| 457 |
+
"depth": 22,
|
| 458 |
+
"dim": 1024,
|
| 459 |
+
"diversity_penalty": 0.0,
|
| 460 |
+
"do_sample": false,
|
| 461 |
+
"dropout": 0.1,
|
| 462 |
+
"early_stopping": false,
|
| 463 |
+
"emb_dim": 512,
|
| 464 |
+
"enc_attention_channels": 64,
|
| 465 |
+
"enc_channels": [
|
| 466 |
+
256,
|
| 467 |
+
256,
|
| 468 |
+
256,
|
| 469 |
+
256,
|
| 470 |
+
768
|
| 471 |
+
],
|
| 472 |
+
"enc_dilations": [
|
| 473 |
+
1,
|
| 474 |
+
2,
|
| 475 |
+
3,
|
| 476 |
+
4,
|
| 477 |
+
1
|
| 478 |
+
],
|
| 479 |
+
"enc_dim": 128,
|
| 480 |
+
"enc_emb_dim": 192,
|
| 481 |
+
"enc_global_context": true,
|
| 482 |
+
"enc_kernel_sizes": [
|
| 483 |
+
5,
|
| 484 |
+
3,
|
| 485 |
+
3,
|
| 486 |
+
3,
|
| 487 |
+
1
|
| 488 |
+
],
|
| 489 |
+
"enc_lin_neurons": 192,
|
| 490 |
+
"enc_res2net_scale": 2,
|
| 491 |
+
"enc_se_channels": 64,
|
| 492 |
+
"encoder_no_repeat_ngram_size": 0,
|
| 493 |
+
"eos_token_id": null,
|
| 494 |
+
"exponential_decay_length_penalty": null,
|
| 495 |
+
"ff_mult": 2,
|
| 496 |
+
"finetuning_task": null,
|
| 497 |
+
"forced_bos_token_id": null,
|
| 498 |
+
"forced_eos_token_id": null,
|
| 499 |
+
"head_dim": 64,
|
| 500 |
+
"heads": 16,
|
| 501 |
+
"hidden_size": 1024,
|
| 502 |
+
"id2label": {
|
| 503 |
+
"0": "LABEL_0",
|
| 504 |
+
"1": "LABEL_1"
|
| 505 |
+
},
|
| 506 |
+
"is_decoder": false,
|
| 507 |
+
"is_encoder_decoder": false,
|
| 508 |
+
"label2id": {
|
| 509 |
+
"LABEL_0": 0,
|
| 510 |
+
"LABEL_1": 1
|
| 511 |
+
},
|
| 512 |
+
"length_penalty": 1.0,
|
| 513 |
+
"look_ahead_layers": [
|
| 514 |
+
10
|
| 515 |
+
],
|
| 516 |
+
"look_backward_layers": [
|
| 517 |
+
0,
|
| 518 |
+
20
|
| 519 |
+
],
|
| 520 |
+
"max_length": 20,
|
| 521 |
+
"max_position_embeddings": 32768,
|
| 522 |
+
"mel_dim": 80,
|
| 523 |
+
"min_length": 0,
|
| 524 |
+
"model_type": "qwen2_5_omni_dit",
|
| 525 |
+
"no_repeat_ngram_size": 0,
|
| 526 |
+
"num_attention_heads": 16,
|
| 527 |
+
"num_beam_groups": 1,
|
| 528 |
+
"num_beams": 1,
|
| 529 |
+
"num_embeds": 8193,
|
| 530 |
+
"num_hidden_layers": 22,
|
| 531 |
+
"num_return_sequences": 1,
|
| 532 |
+
"output_attentions": false,
|
| 533 |
+
"output_hidden_states": false,
|
| 534 |
+
"output_scores": false,
|
| 535 |
+
"pad_token_id": null,
|
| 536 |
+
"prefix": null,
|
| 537 |
+
"problem_type": null,
|
| 538 |
+
"pruned_heads": {},
|
| 539 |
+
"remove_invalid_values": false,
|
| 540 |
+
"repeats": 2,
|
| 541 |
+
"repetition_penalty": 1.0,
|
| 542 |
+
"return_dict": true,
|
| 543 |
+
"return_dict_in_generate": false,
|
| 544 |
+
"rope_theta": 10000.0,
|
| 545 |
+
"sep_token_id": null,
|
| 546 |
+
"suppress_tokens": null,
|
| 547 |
+
"task_specific_params": null,
|
| 548 |
+
"temperature": 1.0,
|
| 549 |
+
"tf_legacy_loss": false,
|
| 550 |
+
"tie_encoder_decoder": false,
|
| 551 |
+
"tie_word_embeddings": true,
|
| 552 |
+
"tokenizer_class": null,
|
| 553 |
+
"top_k": 50,
|
| 554 |
+
"top_p": 1.0,
|
| 555 |
+
"torch_dtype": "float32",
|
| 556 |
+
"torchscript": false,
|
| 557 |
+
"typical_p": 1.0,
|
| 558 |
+
"use_bfloat16": false
|
| 559 |
+
},
|
| 560 |
+
"model_type": "qwen2_5_omni_token2wav",
|
| 561 |
+
"torch_dtype": "bfloat16"
|
| 562 |
+
},
|
| 563 |
+
"torch_dtype": "bfloat16",
|
| 564 |
+
"transformers_version": "4.52.4"
|
| 565 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"transformers_version": "4.52.4"
|
| 4 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eeb28727edce262e7192227102075f4efcbf527eef8da6bb87f9970cd0531881
|
| 3 |
+
size 4985055536
|
model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:74f1781a0875004685aa5b3768a3c729e3a8f3ab8c2098e2f8cfda16d5755c40
|
| 3 |
+
size 4991496832
|
model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7094984c3b9967c0bfd7bf92166aef7dc31a05290d9e0b82be76d4d97a1ae2ab
|
| 3 |
+
size 4991496936
|
model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ffd45a0de30a2882e22fdf8f13c1e5e8d12fa1c5db5db72420fc2a65e6c72d50
|
| 3 |
+
size 4969489856
|
model-00005-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:44771ef92c033c10db5d6326300a2520678048bfa300453624c7f492da87c94b
|
| 3 |
+
size 1527220608
|
model.safetensors.index.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"chunk_length": 300,
|
| 3 |
+
"dither": 0.0,
|
| 4 |
+
"feature_extractor_type": "WhisperFeatureExtractor",
|
| 5 |
+
"feature_size": 128,
|
| 6 |
+
"hop_length": 160,
|
| 7 |
+
"image_mean": [
|
| 8 |
+
0.48145466,
|
| 9 |
+
0.4578275,
|
| 10 |
+
0.40821073
|
| 11 |
+
],
|
| 12 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
| 13 |
+
"image_std": [
|
| 14 |
+
0.26862954,
|
| 15 |
+
0.26130258,
|
| 16 |
+
0.27577711
|
| 17 |
+
],
|
| 18 |
+
"max_pixels": 12845056,
|
| 19 |
+
"merge_size": 2,
|
| 20 |
+
"min_pixels": 3136,
|
| 21 |
+
"n_fft": 400,
|
| 22 |
+
"n_samples": 4800000,
|
| 23 |
+
"nb_max_frames": 30000,
|
| 24 |
+
"padding_side": "left",
|
| 25 |
+
"padding_value": 0.0,
|
| 26 |
+
"patch_size": 14,
|
| 27 |
+
"processor_class": "Qwen2_5OmniProcessor",
|
| 28 |
+
"return_attention_mask": true,
|
| 29 |
+
"sampling_rate": 16000,
|
| 30 |
+
"temporal_patch_size": 2
|
| 31 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|AUDIO|>",
|
| 6 |
+
"<|audio_bos|>",
|
| 7 |
+
"<|audio_eos|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_bos|>",
|
| 12 |
+
"<|vision_eos|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|IMAGE|>",
|
| 15 |
+
"<|VIDEO|>"
|
| 16 |
+
],
|
| 17 |
+
"audio_bos_token": "<|audio_bos|>",
|
| 18 |
+
"audio_eos_token": "<|audio_eos|>",
|
| 19 |
+
"audio_token": "<|AUDIO|>",
|
| 20 |
+
"eos_token": {
|
| 21 |
+
"content": "<|im_end|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false
|
| 26 |
+
},
|
| 27 |
+
"image_token": "<|IMAGE|>",
|
| 28 |
+
"pad_token": {
|
| 29 |
+
"content": "<|endoftext|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false
|
| 34 |
+
},
|
| 35 |
+
"video_token": "<|VIDEO|>",
|
| 36 |
+
"vision_bos_token": "<|vision_bos|>",
|
| 37 |
+
"vision_eos_token": "<|vision_eos|>"
|
| 38 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9711e245647e88538786834977dc8afb51172e879ee661352c587cf01efd6b0
|
| 3 |
+
size 11422037
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,223 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": "<|AUDIO|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"151647": {
|
| 37 |
+
"content": "<|audio_bos|>",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"151648": {
|
| 45 |
+
"content": "<|audio_eos|>",
|
| 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_bos|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"151653": {
|
| 85 |
+
"content": "<|vision_eos|>",
|
| 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|>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"151656": {
|
| 109 |
+
"content": "<|VIDEO|>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"151657": {
|
| 117 |
+
"content": "<tool_call>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": false
|
| 123 |
+
},
|
| 124 |
+
"151658": {
|
| 125 |
+
"content": "</tool_call>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": false
|
| 131 |
+
},
|
| 132 |
+
"151659": {
|
| 133 |
+
"content": "<|fim_prefix|>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": false
|
| 139 |
+
},
|
| 140 |
+
"151660": {
|
| 141 |
+
"content": "<|fim_middle|>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": false
|
| 147 |
+
},
|
| 148 |
+
"151661": {
|
| 149 |
+
"content": "<|fim_suffix|>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": false
|
| 155 |
+
},
|
| 156 |
+
"151662": {
|
| 157 |
+
"content": "<|fim_pad|>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": false
|
| 163 |
+
},
|
| 164 |
+
"151663": {
|
| 165 |
+
"content": "<|repo_name|>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": false
|
| 171 |
+
},
|
| 172 |
+
"151664": {
|
| 173 |
+
"content": "<|file_sep|>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": false
|
| 179 |
+
}
|
| 180 |
+
},
|
| 181 |
+
"additional_special_tokens": [
|
| 182 |
+
"<|im_start|>",
|
| 183 |
+
"<|im_end|>",
|
| 184 |
+
"<|AUDIO|>",
|
| 185 |
+
"<|audio_bos|>",
|
| 186 |
+
"<|audio_eos|>",
|
| 187 |
+
"<|box_end|>",
|
| 188 |
+
"<|quad_start|>",
|
| 189 |
+
"<|quad_end|>",
|
| 190 |
+
"<|vision_bos|>",
|
| 191 |
+
"<|vision_eos|>",
|
| 192 |
+
"<|vision_pad|>",
|
| 193 |
+
"<|IMAGE|>",
|
| 194 |
+
"<|VIDEO|>"
|
| 195 |
+
],
|
| 196 |
+
"audio_bos_token": "<|audio_bos|>",
|
| 197 |
+
"audio_eos_token": "<|audio_eos|>",
|
| 198 |
+
"audio_token": "<|AUDIO|>",
|
| 199 |
+
"bos_token": null,
|
| 200 |
+
"clean_up_tokenization_spaces": false,
|
| 201 |
+
"eos_token": "<|im_end|>",
|
| 202 |
+
"errors": "replace",
|
| 203 |
+
"extra_special_tokens": {
|
| 204 |
+
"audio_bos_token": "<|audio_bos|>",
|
| 205 |
+
"audio_eos_token": "<|audio_eos|>",
|
| 206 |
+
"audio_token": "<|AUDIO|>",
|
| 207 |
+
"image_token": "<|IMAGE|>",
|
| 208 |
+
"video_token": "<|VIDEO|>",
|
| 209 |
+
"vision_bos_token": "<|vision_bos|>",
|
| 210 |
+
"vision_eos_token": "<|vision_eos|>"
|
| 211 |
+
},
|
| 212 |
+
"image_token": "<|IMAGE|>",
|
| 213 |
+
"model_max_length": 32768,
|
| 214 |
+
"pad_token": "<|endoftext|>",
|
| 215 |
+
"padding_side": "left",
|
| 216 |
+
"processor_class": "Qwen2_5OmniProcessor",
|
| 217 |
+
"split_special_tokens": false,
|
| 218 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 219 |
+
"unk_token": null,
|
| 220 |
+
"video_token": "<|VIDEO|>",
|
| 221 |
+
"vision_bos_token": "<|vision_bos|>",
|
| 222 |
+
"vision_eos_token": "<|vision_eos|>"
|
| 223 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1724 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.014037360976136486,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 130,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"completion_length": 149.0,
|
| 14 |
+
"epoch": 0.00010797969981643452,
|
| 15 |
+
"grad_norm": 4.355660438537598,
|
| 16 |
+
"kl": 0.0,
|
| 17 |
+
"learning_rate": 0.0,
|
| 18 |
+
"loss": 0.0,
|
| 19 |
+
"reward": 3.75,
|
| 20 |
+
"reward_std": 0.4128488302230835,
|
| 21 |
+
"rewards/gpt4o_acoustic_reward": 0.699999988079071,
|
| 22 |
+
"rewards/gpt4o_semantic_reward": 3.049999952316284,
|
| 23 |
+
"step": 1
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
"completion_length": 87.25,
|
| 27 |
+
"epoch": 0.00021595939963286903,
|
| 28 |
+
"grad_norm": 10.339611053466797,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
+
"learning_rate": 1e-07,
|
| 31 |
+
"loss": 0.0,
|
| 32 |
+
"reward": 3.950000047683716,
|
| 33 |
+
"reward_std": 0.46606144309043884,
|
| 34 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 35 |
+
"rewards/gpt4o_semantic_reward": 3.1999998092651367,
|
| 36 |
+
"step": 2
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"completion_length": 129.25,
|
| 40 |
+
"epoch": 0.00032393909944930353,
|
| 41 |
+
"grad_norm": 9.756179809570312,
|
| 42 |
+
"kl": 0.0001125335693359375,
|
| 43 |
+
"learning_rate": 2e-07,
|
| 44 |
+
"loss": 0.0,
|
| 45 |
+
"reward": 3.6875,
|
| 46 |
+
"reward_std": 0.4336637258529663,
|
| 47 |
+
"rewards/gpt4o_acoustic_reward": 0.737500011920929,
|
| 48 |
+
"rewards/gpt4o_semantic_reward": 2.950000047683716,
|
| 49 |
+
"step": 3
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"completion_length": 75.75,
|
| 53 |
+
"epoch": 0.00043191879926573806,
|
| 54 |
+
"grad_norm": 5.357244968414307,
|
| 55 |
+
"kl": 0.000377655029296875,
|
| 56 |
+
"learning_rate": 3e-07,
|
| 57 |
+
"loss": 0.0,
|
| 58 |
+
"reward": 3.4000000953674316,
|
| 59 |
+
"reward_std": 0.4117715358734131,
|
| 60 |
+
"rewards/gpt4o_acoustic_reward": 0.699999988079071,
|
| 61 |
+
"rewards/gpt4o_semantic_reward": 2.700000047683716,
|
| 62 |
+
"step": 4
|
| 63 |
+
},
|
| 64 |
+
{
|
| 65 |
+
"completion_length": 188.75,
|
| 66 |
+
"epoch": 0.0005398984990821725,
|
| 67 |
+
"grad_norm": 5.540310382843018,
|
| 68 |
+
"kl": 8.058547973632812e-05,
|
| 69 |
+
"learning_rate": 4e-07,
|
| 70 |
+
"loss": 0.0,
|
| 71 |
+
"reward": 3.6875,
|
| 72 |
+
"reward_std": 0.48131972551345825,
|
| 73 |
+
"rewards/gpt4o_acoustic_reward": 0.737500011920929,
|
| 74 |
+
"rewards/gpt4o_semantic_reward": 2.950000047683716,
|
| 75 |
+
"step": 5
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"completion_length": 393.75,
|
| 79 |
+
"epoch": 0.0006478781988986071,
|
| 80 |
+
"grad_norm": 9.635984420776367,
|
| 81 |
+
"kl": 0.00014019012451171875,
|
| 82 |
+
"learning_rate": 5e-07,
|
| 83 |
+
"loss": 0.0,
|
| 84 |
+
"reward": 3.4625000953674316,
|
| 85 |
+
"reward_std": 0.8044465184211731,
|
| 86 |
+
"rewards/gpt4o_acoustic_reward": 0.7124999761581421,
|
| 87 |
+
"rewards/gpt4o_semantic_reward": 2.75,
|
| 88 |
+
"step": 6
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"completion_length": 217.75,
|
| 92 |
+
"epoch": 0.0007558578987150416,
|
| 93 |
+
"grad_norm": 4.512867450714111,
|
| 94 |
+
"kl": 4.100799560546875e-05,
|
| 95 |
+
"learning_rate": 6e-07,
|
| 96 |
+
"loss": 0.0,
|
| 97 |
+
"reward": 3.875,
|
| 98 |
+
"reward_std": 0.6544983386993408,
|
| 99 |
+
"rewards/gpt4o_acoustic_reward": 0.625,
|
| 100 |
+
"rewards/gpt4o_semantic_reward": 3.25,
|
| 101 |
+
"step": 7
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"completion_length": 104.0,
|
| 105 |
+
"epoch": 0.0008638375985314761,
|
| 106 |
+
"grad_norm": 4.235530376434326,
|
| 107 |
+
"kl": 0.0001773834228515625,
|
| 108 |
+
"learning_rate": 7e-07,
|
| 109 |
+
"loss": 0.0,
|
| 110 |
+
"reward": 4.049999713897705,
|
| 111 |
+
"reward_std": 0.5000368356704712,
|
| 112 |
+
"rewards/gpt4o_acoustic_reward": 0.800000011920929,
|
| 113 |
+
"rewards/gpt4o_semantic_reward": 3.25,
|
| 114 |
+
"step": 8
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"completion_length": 139.75,
|
| 118 |
+
"epoch": 0.0009718172983479105,
|
| 119 |
+
"grad_norm": 5.992825984954834,
|
| 120 |
+
"kl": 0.00017547607421875,
|
| 121 |
+
"learning_rate": 8e-07,
|
| 122 |
+
"loss": 0.0,
|
| 123 |
+
"reward": 4.150000095367432,
|
| 124 |
+
"reward_std": 0.4549916386604309,
|
| 125 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 126 |
+
"rewards/gpt4o_semantic_reward": 3.3999998569488525,
|
| 127 |
+
"step": 9
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"completion_length": 172.5,
|
| 131 |
+
"epoch": 0.001079796998164345,
|
| 132 |
+
"grad_norm": 5.302628040313721,
|
| 133 |
+
"kl": 0.000141143798828125,
|
| 134 |
+
"learning_rate": 9e-07,
|
| 135 |
+
"loss": 0.0,
|
| 136 |
+
"reward": 3.4625000953674316,
|
| 137 |
+
"reward_std": 0.6239354610443115,
|
| 138 |
+
"rewards/gpt4o_acoustic_reward": 0.8125,
|
| 139 |
+
"rewards/gpt4o_semantic_reward": 2.6500000953674316,
|
| 140 |
+
"step": 10
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"completion_length": 98.5,
|
| 144 |
+
"epoch": 0.0011877766979807797,
|
| 145 |
+
"grad_norm": 5.695831775665283,
|
| 146 |
+
"kl": 5.698204040527344e-05,
|
| 147 |
+
"learning_rate": 1e-06,
|
| 148 |
+
"loss": 0.0,
|
| 149 |
+
"reward": 4.237500190734863,
|
| 150 |
+
"reward_std": 0.4028981328010559,
|
| 151 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 152 |
+
"rewards/gpt4o_semantic_reward": 3.4499998092651367,
|
| 153 |
+
"step": 11
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"completion_length": 176.0,
|
| 157 |
+
"epoch": 0.0012957563977972141,
|
| 158 |
+
"grad_norm": 3.156630039215088,
|
| 159 |
+
"kl": 0.00012302398681640625,
|
| 160 |
+
"learning_rate": 9.999999395720266e-07,
|
| 161 |
+
"loss": 0.0,
|
| 162 |
+
"reward": 4.012499809265137,
|
| 163 |
+
"reward_std": 0.29057008028030396,
|
| 164 |
+
"rewards/gpt4o_acoustic_reward": 0.7125000357627869,
|
| 165 |
+
"rewards/gpt4o_semantic_reward": 3.299999952316284,
|
| 166 |
+
"step": 12
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"completion_length": 142.25,
|
| 170 |
+
"epoch": 0.0014037360976136485,
|
| 171 |
+
"grad_norm": 4.895700454711914,
|
| 172 |
+
"kl": 0.00019359588623046875,
|
| 173 |
+
"learning_rate": 9.999997582881211e-07,
|
| 174 |
+
"loss": 0.0,
|
| 175 |
+
"reward": 4.0,
|
| 176 |
+
"reward_std": 0.354991614818573,
|
| 177 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 178 |
+
"rewards/gpt4o_semantic_reward": 3.249999761581421,
|
| 179 |
+
"step": 13
|
| 180 |
+
},
|
| 181 |
+
{
|
| 182 |
+
"completion_length": 138.5,
|
| 183 |
+
"epoch": 0.0015117157974300832,
|
| 184 |
+
"grad_norm": 6.870318412780762,
|
| 185 |
+
"kl": 0.00029754638671875,
|
| 186 |
+
"learning_rate": 9.999994561483274e-07,
|
| 187 |
+
"loss": 0.0,
|
| 188 |
+
"reward": 4.099999904632568,
|
| 189 |
+
"reward_std": 0.3661222457885742,
|
| 190 |
+
"rewards/gpt4o_acoustic_reward": 0.7999999523162842,
|
| 191 |
+
"rewards/gpt4o_semantic_reward": 3.3000001907348633,
|
| 192 |
+
"step": 14
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"completion_length": 127.5,
|
| 196 |
+
"epoch": 0.0016196954972465176,
|
| 197 |
+
"grad_norm": 6.080170154571533,
|
| 198 |
+
"kl": 0.000301361083984375,
|
| 199 |
+
"learning_rate": 9.999990331527185e-07,
|
| 200 |
+
"loss": 0.0,
|
| 201 |
+
"reward": 3.125000238418579,
|
| 202 |
+
"reward_std": 0.4335150122642517,
|
| 203 |
+
"rewards/gpt4o_acoustic_reward": 0.625,
|
| 204 |
+
"rewards/gpt4o_semantic_reward": 2.5,
|
| 205 |
+
"step": 15
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"completion_length": 147.25,
|
| 209 |
+
"epoch": 0.0017276751970629522,
|
| 210 |
+
"grad_norm": 4.455915927886963,
|
| 211 |
+
"kl": 0.0003414154052734375,
|
| 212 |
+
"learning_rate": 9.999984893013964e-07,
|
| 213 |
+
"loss": 0.0,
|
| 214 |
+
"reward": 4.150000095367432,
|
| 215 |
+
"reward_std": 0.3805276155471802,
|
| 216 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 217 |
+
"rewards/gpt4o_semantic_reward": 3.3999998569488525,
|
| 218 |
+
"step": 16
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"completion_length": 534.0,
|
| 222 |
+
"epoch": 0.0018356548968793867,
|
| 223 |
+
"grad_norm": 4.104217529296875,
|
| 224 |
+
"kl": 0.00018024444580078125,
|
| 225 |
+
"learning_rate": 9.999978245944931e-07,
|
| 226 |
+
"loss": 0.0,
|
| 227 |
+
"reward": 3.387500047683716,
|
| 228 |
+
"reward_std": 0.4947923421859741,
|
| 229 |
+
"rewards/gpt4o_acoustic_reward": 0.7374999523162842,
|
| 230 |
+
"rewards/gpt4o_semantic_reward": 2.6500000953674316,
|
| 231 |
+
"step": 17
|
| 232 |
+
},
|
| 233 |
+
{
|
| 234 |
+
"completion_length": 206.0,
|
| 235 |
+
"epoch": 0.001943634596695821,
|
| 236 |
+
"grad_norm": 4.355428695678711,
|
| 237 |
+
"kl": 0.0005950927734375,
|
| 238 |
+
"learning_rate": 9.999970390321687e-07,
|
| 239 |
+
"loss": 0.0001,
|
| 240 |
+
"reward": 3.5625,
|
| 241 |
+
"reward_std": 0.6289784908294678,
|
| 242 |
+
"rewards/gpt4o_acoustic_reward": 0.6625000238418579,
|
| 243 |
+
"rewards/gpt4o_semantic_reward": 2.9000000953674316,
|
| 244 |
+
"step": 18
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"completion_length": 103.0,
|
| 248 |
+
"epoch": 0.0020516142965122555,
|
| 249 |
+
"grad_norm": 5.251166820526123,
|
| 250 |
+
"kl": 0.00048828125,
|
| 251 |
+
"learning_rate": 9.999961326146134e-07,
|
| 252 |
+
"loss": 0.0,
|
| 253 |
+
"reward": 3.549999952316284,
|
| 254 |
+
"reward_std": 0.4274619519710541,
|
| 255 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 256 |
+
"rewards/gpt4o_semantic_reward": 2.8000001907348633,
|
| 257 |
+
"step": 19
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"completion_length": 117.5,
|
| 261 |
+
"epoch": 0.00215959399632869,
|
| 262 |
+
"grad_norm": 4.956709384918213,
|
| 263 |
+
"kl": 0.0003566741943359375,
|
| 264 |
+
"learning_rate": 9.99995105342046e-07,
|
| 265 |
+
"loss": 0.0,
|
| 266 |
+
"reward": 3.012500286102295,
|
| 267 |
+
"reward_std": 0.7860726714134216,
|
| 268 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 269 |
+
"rewards/gpt4o_semantic_reward": 2.25,
|
| 270 |
+
"step": 20
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"completion_length": 66.5,
|
| 274 |
+
"epoch": 0.0022675736961451248,
|
| 275 |
+
"grad_norm": 3.629720687866211,
|
| 276 |
+
"kl": 0.00066375732421875,
|
| 277 |
+
"learning_rate": 9.999939572147152e-07,
|
| 278 |
+
"loss": 0.0001,
|
| 279 |
+
"reward": 3.5875000953674316,
|
| 280 |
+
"reward_std": 0.5995372533798218,
|
| 281 |
+
"rewards/gpt4o_acoustic_reward": 0.6875000596046448,
|
| 282 |
+
"rewards/gpt4o_semantic_reward": 2.9000000953674316,
|
| 283 |
+
"step": 21
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"completion_length": 171.75,
|
| 287 |
+
"epoch": 0.0023755533959615594,
|
| 288 |
+
"grad_norm": 4.503050804138184,
|
| 289 |
+
"kl": 0.0007476806640625,
|
| 290 |
+
"learning_rate": 9.999926882328982e-07,
|
| 291 |
+
"loss": 0.0001,
|
| 292 |
+
"reward": 3.7125000953674316,
|
| 293 |
+
"reward_std": 0.5707715153694153,
|
| 294 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 295 |
+
"rewards/gpt4o_semantic_reward": 2.950000047683716,
|
| 296 |
+
"step": 22
|
| 297 |
+
},
|
| 298 |
+
{
|
| 299 |
+
"completion_length": 82.0,
|
| 300 |
+
"epoch": 0.0024835330957779936,
|
| 301 |
+
"grad_norm": 4.001644611358643,
|
| 302 |
+
"kl": 0.00089263916015625,
|
| 303 |
+
"learning_rate": 9.999912983969018e-07,
|
| 304 |
+
"loss": 0.0001,
|
| 305 |
+
"reward": 3.2874999046325684,
|
| 306 |
+
"reward_std": 0.29747867584228516,
|
| 307 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 308 |
+
"rewards/gpt4o_semantic_reward": 2.5,
|
| 309 |
+
"step": 23
|
| 310 |
+
},
|
| 311 |
+
{
|
| 312 |
+
"completion_length": 122.0,
|
| 313 |
+
"epoch": 0.0025915127955944283,
|
| 314 |
+
"grad_norm": 3.9283950328826904,
|
| 315 |
+
"kl": 0.000701904296875,
|
| 316 |
+
"learning_rate": 9.999897877070623e-07,
|
| 317 |
+
"loss": 0.0001,
|
| 318 |
+
"reward": 3.9000000953674316,
|
| 319 |
+
"reward_std": 0.5509018898010254,
|
| 320 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 321 |
+
"rewards/gpt4o_semantic_reward": 3.1500000953674316,
|
| 322 |
+
"step": 24
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"completion_length": 62.75,
|
| 326 |
+
"epoch": 0.002699492495410863,
|
| 327 |
+
"grad_norm": 4.654013156890869,
|
| 328 |
+
"kl": 0.000957489013671875,
|
| 329 |
+
"learning_rate": 9.999881561637442e-07,
|
| 330 |
+
"loss": 0.0001,
|
| 331 |
+
"reward": 3.7249999046325684,
|
| 332 |
+
"reward_std": 0.5639642477035522,
|
| 333 |
+
"rewards/gpt4o_acoustic_reward": 0.824999988079071,
|
| 334 |
+
"rewards/gpt4o_semantic_reward": 2.9000000953674316,
|
| 335 |
+
"step": 25
|
| 336 |
+
},
|
| 337 |
+
{
|
| 338 |
+
"completion_length": 83.75,
|
| 339 |
+
"epoch": 0.002807472195227297,
|
| 340 |
+
"grad_norm": 5.039306163787842,
|
| 341 |
+
"kl": 0.001708984375,
|
| 342 |
+
"learning_rate": 9.999864037673423e-07,
|
| 343 |
+
"loss": 0.0002,
|
| 344 |
+
"reward": 3.6624999046325684,
|
| 345 |
+
"reward_std": 0.5867879390716553,
|
| 346 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 347 |
+
"rewards/gpt4o_semantic_reward": 2.9000000953674316,
|
| 348 |
+
"step": 26
|
| 349 |
+
},
|
| 350 |
+
{
|
| 351 |
+
"completion_length": 109.75,
|
| 352 |
+
"epoch": 0.0029154518950437317,
|
| 353 |
+
"grad_norm": 5.404584884643555,
|
| 354 |
+
"kl": 0.0012969970703125,
|
| 355 |
+
"learning_rate": 9.9998453051828e-07,
|
| 356 |
+
"loss": 0.0001,
|
| 357 |
+
"reward": 3.5374999046325684,
|
| 358 |
+
"reward_std": 0.5478276014328003,
|
| 359 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 360 |
+
"rewards/gpt4o_semantic_reward": 2.75,
|
| 361 |
+
"step": 27
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"completion_length": 111.0,
|
| 365 |
+
"epoch": 0.0030234315948601664,
|
| 366 |
+
"grad_norm": 4.432938098907471,
|
| 367 |
+
"kl": 0.00122833251953125,
|
| 368 |
+
"learning_rate": 9.999825364170103e-07,
|
| 369 |
+
"loss": 0.0001,
|
| 370 |
+
"reward": 4.149999618530273,
|
| 371 |
+
"reward_std": 0.3389889597892761,
|
| 372 |
+
"rewards/gpt4o_acoustic_reward": 0.800000011920929,
|
| 373 |
+
"rewards/gpt4o_semantic_reward": 3.3499999046325684,
|
| 374 |
+
"step": 28
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"completion_length": 122.75,
|
| 378 |
+
"epoch": 0.003131411294676601,
|
| 379 |
+
"grad_norm": 5.11518669128418,
|
| 380 |
+
"kl": 0.00152587890625,
|
| 381 |
+
"learning_rate": 9.99980421464015e-07,
|
| 382 |
+
"loss": 0.0002,
|
| 383 |
+
"reward": 3.6374998092651367,
|
| 384 |
+
"reward_std": 0.38321733474731445,
|
| 385 |
+
"rewards/gpt4o_acoustic_reward": 0.6875000596046448,
|
| 386 |
+
"rewards/gpt4o_semantic_reward": 2.950000047683716,
|
| 387 |
+
"step": 29
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"completion_length": 161.0,
|
| 391 |
+
"epoch": 0.003239390994493035,
|
| 392 |
+
"grad_norm": 4.147963523864746,
|
| 393 |
+
"kl": 0.0016326904296875,
|
| 394 |
+
"learning_rate": 9.999781856598053e-07,
|
| 395 |
+
"loss": 0.0002,
|
| 396 |
+
"reward": 4.175000190734863,
|
| 397 |
+
"reward_std": 0.2711343467235565,
|
| 398 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 399 |
+
"rewards/gpt4o_semantic_reward": 3.4000000953674316,
|
| 400 |
+
"step": 30
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"completion_length": 125.25,
|
| 404 |
+
"epoch": 0.00334737069430947,
|
| 405 |
+
"grad_norm": 5.0930562019348145,
|
| 406 |
+
"kl": 0.0027313232421875,
|
| 407 |
+
"learning_rate": 9.999758290049217e-07,
|
| 408 |
+
"loss": 0.0003,
|
| 409 |
+
"reward": 3.4375,
|
| 410 |
+
"reward_std": 0.6973484754562378,
|
| 411 |
+
"rewards/gpt4o_acoustic_reward": 0.737500011920929,
|
| 412 |
+
"rewards/gpt4o_semantic_reward": 2.6999998092651367,
|
| 413 |
+
"step": 31
|
| 414 |
+
},
|
| 415 |
+
{
|
| 416 |
+
"completion_length": 84.75,
|
| 417 |
+
"epoch": 0.0034553503941259045,
|
| 418 |
+
"grad_norm": 4.429357528686523,
|
| 419 |
+
"kl": 0.0017547607421875,
|
| 420 |
+
"learning_rate": 9.99973351499934e-07,
|
| 421 |
+
"loss": 0.0002,
|
| 422 |
+
"reward": 3.2875001430511475,
|
| 423 |
+
"reward_std": 0.5658307075500488,
|
| 424 |
+
"rewards/gpt4o_acoustic_reward": 0.7374999523162842,
|
| 425 |
+
"rewards/gpt4o_semantic_reward": 2.5500001907348633,
|
| 426 |
+
"step": 32
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"completion_length": 96.0,
|
| 430 |
+
"epoch": 0.0035633300939423387,
|
| 431 |
+
"grad_norm": 5.403738498687744,
|
| 432 |
+
"kl": 0.0024566650390625,
|
| 433 |
+
"learning_rate": 9.999707531454407e-07,
|
| 434 |
+
"loss": 0.0002,
|
| 435 |
+
"reward": 3.262500047683716,
|
| 436 |
+
"reward_std": 0.5316473841667175,
|
| 437 |
+
"rewards/gpt4o_acoustic_reward": 0.7125000357627869,
|
| 438 |
+
"rewards/gpt4o_semantic_reward": 2.549999952316284,
|
| 439 |
+
"step": 33
|
| 440 |
+
},
|
| 441 |
+
{
|
| 442 |
+
"completion_length": 92.0,
|
| 443 |
+
"epoch": 0.0036713097937587733,
|
| 444 |
+
"grad_norm": 5.378174304962158,
|
| 445 |
+
"kl": 0.00179290771484375,
|
| 446 |
+
"learning_rate": 9.9996803394207e-07,
|
| 447 |
+
"loss": 0.0002,
|
| 448 |
+
"reward": 4.462500095367432,
|
| 449 |
+
"reward_std": 0.41377225518226624,
|
| 450 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 451 |
+
"rewards/gpt4o_semantic_reward": 3.6999998092651367,
|
| 452 |
+
"step": 34
|
| 453 |
+
},
|
| 454 |
+
{
|
| 455 |
+
"completion_length": 88.0,
|
| 456 |
+
"epoch": 0.003779289493575208,
|
| 457 |
+
"grad_norm": 13.495048522949219,
|
| 458 |
+
"kl": 0.0030975341796875,
|
| 459 |
+
"learning_rate": 9.999651938904792e-07,
|
| 460 |
+
"loss": 0.0003,
|
| 461 |
+
"reward": 4.324999809265137,
|
| 462 |
+
"reward_std": 0.4066784977912903,
|
| 463 |
+
"rewards/gpt4o_acoustic_reward": 0.8250000476837158,
|
| 464 |
+
"rewards/gpt4o_semantic_reward": 3.5,
|
| 465 |
+
"step": 35
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"completion_length": 117.5,
|
| 469 |
+
"epoch": 0.003887269193391642,
|
| 470 |
+
"grad_norm": 3.707780361175537,
|
| 471 |
+
"kl": 0.00421142578125,
|
| 472 |
+
"learning_rate": 9.999622329913548e-07,
|
| 473 |
+
"loss": 0.0004,
|
| 474 |
+
"reward": 4.050000190734863,
|
| 475 |
+
"reward_std": 0.46861180663108826,
|
| 476 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 477 |
+
"rewards/gpt4o_semantic_reward": 3.3000001907348633,
|
| 478 |
+
"step": 36
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"completion_length": 206.25,
|
| 482 |
+
"epoch": 0.003995248893208077,
|
| 483 |
+
"grad_norm": 3.7213122844696045,
|
| 484 |
+
"kl": 0.0020904541015625,
|
| 485 |
+
"learning_rate": 9.999591512454125e-07,
|
| 486 |
+
"loss": 0.0002,
|
| 487 |
+
"reward": 3.7249999046325684,
|
| 488 |
+
"reward_std": 0.6525067090988159,
|
| 489 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 490 |
+
"rewards/gpt4o_semantic_reward": 2.950000286102295,
|
| 491 |
+
"step": 37
|
| 492 |
+
},
|
| 493 |
+
{
|
| 494 |
+
"completion_length": 183.5,
|
| 495 |
+
"epoch": 0.004103228593024511,
|
| 496 |
+
"grad_norm": 4.1779465675354,
|
| 497 |
+
"kl": 0.002410888671875,
|
| 498 |
+
"learning_rate": 9.99955948653397e-07,
|
| 499 |
+
"loss": 0.0002,
|
| 500 |
+
"reward": 3.9000000953674316,
|
| 501 |
+
"reward_std": 0.6134613156318665,
|
| 502 |
+
"rewards/gpt4o_acoustic_reward": 0.7999999523162842,
|
| 503 |
+
"rewards/gpt4o_semantic_reward": 3.1000001430511475,
|
| 504 |
+
"step": 38
|
| 505 |
+
},
|
| 506 |
+
{
|
| 507 |
+
"completion_length": 135.25,
|
| 508 |
+
"epoch": 0.004211208292840946,
|
| 509 |
+
"grad_norm": 5.88501501083374,
|
| 510 |
+
"kl": 0.00311279296875,
|
| 511 |
+
"learning_rate": 9.999526252160825e-07,
|
| 512 |
+
"loss": 0.0003,
|
| 513 |
+
"reward": 3.8000001907348633,
|
| 514 |
+
"reward_std": 0.5650771856307983,
|
| 515 |
+
"rewards/gpt4o_acoustic_reward": 0.800000011920929,
|
| 516 |
+
"rewards/gpt4o_semantic_reward": 3.0,
|
| 517 |
+
"step": 39
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"completion_length": 101.75,
|
| 521 |
+
"epoch": 0.00431918799265738,
|
| 522 |
+
"grad_norm": 5.475719928741455,
|
| 523 |
+
"kl": 0.0032501220703125,
|
| 524 |
+
"learning_rate": 9.999491809342725e-07,
|
| 525 |
+
"loss": 0.0003,
|
| 526 |
+
"reward": 3.6625001430511475,
|
| 527 |
+
"reward_std": 0.5419445037841797,
|
| 528 |
+
"rewards/gpt4o_acoustic_reward": 0.7625000476837158,
|
| 529 |
+
"rewards/gpt4o_semantic_reward": 2.8999998569488525,
|
| 530 |
+
"step": 40
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"completion_length": 109.5,
|
| 534 |
+
"epoch": 0.004427167692473815,
|
| 535 |
+
"grad_norm": 4.616827011108398,
|
| 536 |
+
"kl": 0.00372314453125,
|
| 537 |
+
"learning_rate": 9.999456158087993e-07,
|
| 538 |
+
"loss": 0.0004,
|
| 539 |
+
"reward": 3.799999952316284,
|
| 540 |
+
"reward_std": 0.562907874584198,
|
| 541 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 542 |
+
"rewards/gpt4o_semantic_reward": 3.0500001907348633,
|
| 543 |
+
"step": 41
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"completion_length": 80.5,
|
| 547 |
+
"epoch": 0.0045351473922902496,
|
| 548 |
+
"grad_norm": 4.345307350158691,
|
| 549 |
+
"kl": 0.0023193359375,
|
| 550 |
+
"learning_rate": 9.999419298405247e-07,
|
| 551 |
+
"loss": 0.0002,
|
| 552 |
+
"reward": 3.75,
|
| 553 |
+
"reward_std": 0.43463942408561707,
|
| 554 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 555 |
+
"rewards/gpt4o_semantic_reward": 3.0,
|
| 556 |
+
"step": 42
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"completion_length": 151.0,
|
| 560 |
+
"epoch": 0.004643127092106684,
|
| 561 |
+
"grad_norm": 11.16802978515625,
|
| 562 |
+
"kl": 0.007354736328125,
|
| 563 |
+
"learning_rate": 9.999381230303397e-07,
|
| 564 |
+
"loss": 0.0007,
|
| 565 |
+
"reward": 3.9124999046325684,
|
| 566 |
+
"reward_std": 0.7695527076721191,
|
| 567 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 568 |
+
"rewards/gpt4o_semantic_reward": 3.1500000953674316,
|
| 569 |
+
"step": 43
|
| 570 |
+
},
|
| 571 |
+
{
|
| 572 |
+
"completion_length": 175.75,
|
| 573 |
+
"epoch": 0.004751106791923119,
|
| 574 |
+
"grad_norm": 4.1300482749938965,
|
| 575 |
+
"kl": 0.0037841796875,
|
| 576 |
+
"learning_rate": 9.999341953791646e-07,
|
| 577 |
+
"loss": 0.0004,
|
| 578 |
+
"reward": 3.6000001430511475,
|
| 579 |
+
"reward_std": 0.5399592518806458,
|
| 580 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 581 |
+
"rewards/gpt4o_semantic_reward": 2.8499999046325684,
|
| 582 |
+
"step": 44
|
| 583 |
+
},
|
| 584 |
+
{
|
| 585 |
+
"completion_length": 123.5,
|
| 586 |
+
"epoch": 0.004859086491739553,
|
| 587 |
+
"grad_norm": 4.736630916595459,
|
| 588 |
+
"kl": 0.005859375,
|
| 589 |
+
"learning_rate": 9.999301468879483e-07,
|
| 590 |
+
"loss": 0.0006,
|
| 591 |
+
"reward": 4.012499809265137,
|
| 592 |
+
"reward_std": 0.5317236185073853,
|
| 593 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 594 |
+
"rewards/gpt4o_semantic_reward": 3.25,
|
| 595 |
+
"step": 45
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"completion_length": 120.25,
|
| 599 |
+
"epoch": 0.004967066191555987,
|
| 600 |
+
"grad_norm": 4.6078596115112305,
|
| 601 |
+
"kl": 0.003692626953125,
|
| 602 |
+
"learning_rate": 9.999259775576694e-07,
|
| 603 |
+
"loss": 0.0004,
|
| 604 |
+
"reward": 4.387499809265137,
|
| 605 |
+
"reward_std": 0.5126998424530029,
|
| 606 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 607 |
+
"rewards/gpt4o_semantic_reward": 3.5999999046325684,
|
| 608 |
+
"step": 46
|
| 609 |
+
},
|
| 610 |
+
{
|
| 611 |
+
"completion_length": 128.25,
|
| 612 |
+
"epoch": 0.005075045891372422,
|
| 613 |
+
"grad_norm": 127.92069244384766,
|
| 614 |
+
"kl": 0.01190185546875,
|
| 615 |
+
"learning_rate": 9.999216873893363e-07,
|
| 616 |
+
"loss": 0.0012,
|
| 617 |
+
"reward": 3.6374998092651367,
|
| 618 |
+
"reward_std": 0.4805222749710083,
|
| 619 |
+
"rewards/gpt4o_acoustic_reward": 0.737500011920929,
|
| 620 |
+
"rewards/gpt4o_semantic_reward": 2.9000000953674316,
|
| 621 |
+
"step": 47
|
| 622 |
+
},
|
| 623 |
+
{
|
| 624 |
+
"completion_length": 233.75,
|
| 625 |
+
"epoch": 0.0051830255911888565,
|
| 626 |
+
"grad_norm": 4.082341194152832,
|
| 627 |
+
"kl": 0.003662109375,
|
| 628 |
+
"learning_rate": 9.999172763839854e-07,
|
| 629 |
+
"loss": 0.0004,
|
| 630 |
+
"reward": 3.549999952316284,
|
| 631 |
+
"reward_std": 0.345066636800766,
|
| 632 |
+
"rewards/gpt4o_acoustic_reward": 0.7000000476837158,
|
| 633 |
+
"rewards/gpt4o_semantic_reward": 2.8500001430511475,
|
| 634 |
+
"step": 48
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"completion_length": 88.25,
|
| 638 |
+
"epoch": 0.005291005291005291,
|
| 639 |
+
"grad_norm": 4.746938228607178,
|
| 640 |
+
"kl": 0.004119873046875,
|
| 641 |
+
"learning_rate": 9.999127445426832e-07,
|
| 642 |
+
"loss": 0.0004,
|
| 643 |
+
"reward": 3.1500000953674316,
|
| 644 |
+
"reward_std": 0.3950536549091339,
|
| 645 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 646 |
+
"rewards/gpt4o_semantic_reward": 2.4000000953674316,
|
| 647 |
+
"step": 49
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"completion_length": 117.0,
|
| 651 |
+
"epoch": 0.005398984990821726,
|
| 652 |
+
"grad_norm": 4.920814037322998,
|
| 653 |
+
"kl": 0.00421142578125,
|
| 654 |
+
"learning_rate": 9.999080918665248e-07,
|
| 655 |
+
"loss": 0.0004,
|
| 656 |
+
"reward": 4.050000190734863,
|
| 657 |
+
"reward_std": 0.6103179454803467,
|
| 658 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 659 |
+
"rewards/gpt4o_semantic_reward": 3.3000001907348633,
|
| 660 |
+
"step": 50
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"completion_length": 149.75,
|
| 664 |
+
"epoch": 0.00550696469063816,
|
| 665 |
+
"grad_norm": 6.0530619621276855,
|
| 666 |
+
"kl": 0.0069580078125,
|
| 667 |
+
"learning_rate": 9.999033183566353e-07,
|
| 668 |
+
"loss": 0.0007,
|
| 669 |
+
"reward": 3.7125000953674316,
|
| 670 |
+
"reward_std": 0.6462839841842651,
|
| 671 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 672 |
+
"rewards/gpt4o_semantic_reward": 2.950000047683716,
|
| 673 |
+
"step": 51
|
| 674 |
+
},
|
| 675 |
+
{
|
| 676 |
+
"completion_length": 101.25,
|
| 677 |
+
"epoch": 0.005614944390454594,
|
| 678 |
+
"grad_norm": 5.342473983764648,
|
| 679 |
+
"kl": 0.007476806640625,
|
| 680 |
+
"learning_rate": 9.998984240141678e-07,
|
| 681 |
+
"loss": 0.0007,
|
| 682 |
+
"reward": 3.512500047683716,
|
| 683 |
+
"reward_std": 0.9265444278717041,
|
| 684 |
+
"rewards/gpt4o_acoustic_reward": 0.7125000357627869,
|
| 685 |
+
"rewards/gpt4o_semantic_reward": 2.799999952316284,
|
| 686 |
+
"step": 52
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"completion_length": 157.75,
|
| 690 |
+
"epoch": 0.005722924090271029,
|
| 691 |
+
"grad_norm": 4.94399356842041,
|
| 692 |
+
"kl": 0.006072998046875,
|
| 693 |
+
"learning_rate": 9.998934088403062e-07,
|
| 694 |
+
"loss": 0.0006,
|
| 695 |
+
"reward": 3.325000286102295,
|
| 696 |
+
"reward_std": 0.4148828983306885,
|
| 697 |
+
"rewards/gpt4o_acoustic_reward": 0.7250000238418579,
|
| 698 |
+
"rewards/gpt4o_semantic_reward": 2.6000001430511475,
|
| 699 |
+
"step": 53
|
| 700 |
+
},
|
| 701 |
+
{
|
| 702 |
+
"completion_length": 108.0,
|
| 703 |
+
"epoch": 0.0058309037900874635,
|
| 704 |
+
"grad_norm": 6.271359443664551,
|
| 705 |
+
"kl": 0.00469970703125,
|
| 706 |
+
"learning_rate": 9.998882728362618e-07,
|
| 707 |
+
"loss": 0.0005,
|
| 708 |
+
"reward": 3.3500001430511475,
|
| 709 |
+
"reward_std": 0.40565162897109985,
|
| 710 |
+
"rewards/gpt4o_acoustic_reward": 0.699999988079071,
|
| 711 |
+
"rewards/gpt4o_semantic_reward": 2.6500000953674316,
|
| 712 |
+
"step": 54
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"completion_length": 176.0,
|
| 716 |
+
"epoch": 0.005938883489903898,
|
| 717 |
+
"grad_norm": 4.691992282867432,
|
| 718 |
+
"kl": 0.007080078125,
|
| 719 |
+
"learning_rate": 9.99883016003277e-07,
|
| 720 |
+
"loss": 0.0007,
|
| 721 |
+
"reward": 3.7624998092651367,
|
| 722 |
+
"reward_std": 0.3887961506843567,
|
| 723 |
+
"rewards/gpt4o_acoustic_reward": 0.8125,
|
| 724 |
+
"rewards/gpt4o_semantic_reward": 2.9499998092651367,
|
| 725 |
+
"step": 55
|
| 726 |
+
},
|
| 727 |
+
{
|
| 728 |
+
"completion_length": 101.5,
|
| 729 |
+
"epoch": 0.006046863189720333,
|
| 730 |
+
"grad_norm": 4.526642322540283,
|
| 731 |
+
"kl": 0.006072998046875,
|
| 732 |
+
"learning_rate": 9.998776383426216e-07,
|
| 733 |
+
"loss": 0.0006,
|
| 734 |
+
"reward": 3.9250001907348633,
|
| 735 |
+
"reward_std": 0.3565652370452881,
|
| 736 |
+
"rewards/gpt4o_acoustic_reward": 0.7250000238418579,
|
| 737 |
+
"rewards/gpt4o_semantic_reward": 3.1999998092651367,
|
| 738 |
+
"step": 56
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"completion_length": 216.0,
|
| 742 |
+
"epoch": 0.006154842889536767,
|
| 743 |
+
"grad_norm": 4.5564141273498535,
|
| 744 |
+
"kl": 0.00689697265625,
|
| 745 |
+
"learning_rate": 9.998721398555956e-07,
|
| 746 |
+
"loss": 0.0007,
|
| 747 |
+
"reward": 3.987499952316284,
|
| 748 |
+
"reward_std": 0.4106605648994446,
|
| 749 |
+
"rewards/gpt4o_acoustic_reward": 0.7875000238418579,
|
| 750 |
+
"rewards/gpt4o_semantic_reward": 3.200000047683716,
|
| 751 |
+
"step": 57
|
| 752 |
+
},
|
| 753 |
+
{
|
| 754 |
+
"completion_length": 139.75,
|
| 755 |
+
"epoch": 0.006262822589353202,
|
| 756 |
+
"grad_norm": 5.731558322906494,
|
| 757 |
+
"kl": 0.007415771484375,
|
| 758 |
+
"learning_rate": 9.998665205435286e-07,
|
| 759 |
+
"loss": 0.0007,
|
| 760 |
+
"reward": 3.0250000953674316,
|
| 761 |
+
"reward_std": 0.8147455453872681,
|
| 762 |
+
"rewards/gpt4o_acoustic_reward": 0.7250000238418579,
|
| 763 |
+
"rewards/gpt4o_semantic_reward": 2.3000001907348633,
|
| 764 |
+
"step": 58
|
| 765 |
+
},
|
| 766 |
+
{
|
| 767 |
+
"completion_length": 192.25,
|
| 768 |
+
"epoch": 0.006370802289169636,
|
| 769 |
+
"grad_norm": 4.051910400390625,
|
| 770 |
+
"kl": 0.005645751953125,
|
| 771 |
+
"learning_rate": 9.998607804077782e-07,
|
| 772 |
+
"loss": 0.0006,
|
| 773 |
+
"reward": 3.8625001907348633,
|
| 774 |
+
"reward_std": 0.5302895307540894,
|
| 775 |
+
"rewards/gpt4o_acoustic_reward": 0.7124999761581421,
|
| 776 |
+
"rewards/gpt4o_semantic_reward": 3.1499998569488525,
|
| 777 |
+
"step": 59
|
| 778 |
+
},
|
| 779 |
+
{
|
| 780 |
+
"completion_length": 126.75,
|
| 781 |
+
"epoch": 0.00647878198898607,
|
| 782 |
+
"grad_norm": 4.635890960693359,
|
| 783 |
+
"kl": 0.00811767578125,
|
| 784 |
+
"learning_rate": 9.998549194497321e-07,
|
| 785 |
+
"loss": 0.0008,
|
| 786 |
+
"reward": 4.287500381469727,
|
| 787 |
+
"reward_std": 0.4707535207271576,
|
| 788 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 789 |
+
"rewards/gpt4o_semantic_reward": 3.5,
|
| 790 |
+
"step": 60
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"completion_length": 151.75,
|
| 794 |
+
"epoch": 0.0065867616888025055,
|
| 795 |
+
"grad_norm": 4.524758815765381,
|
| 796 |
+
"kl": 0.0115966796875,
|
| 797 |
+
"learning_rate": 9.998489376708072e-07,
|
| 798 |
+
"loss": 0.0012,
|
| 799 |
+
"reward": 3.5,
|
| 800 |
+
"reward_std": 0.48709315061569214,
|
| 801 |
+
"rewards/gpt4o_acoustic_reward": 0.699999988079071,
|
| 802 |
+
"rewards/gpt4o_semantic_reward": 2.799999952316284,
|
| 803 |
+
"step": 61
|
| 804 |
+
},
|
| 805 |
+
{
|
| 806 |
+
"completion_length": 128.25,
|
| 807 |
+
"epoch": 0.00669474138861894,
|
| 808 |
+
"grad_norm": 4.649504661560059,
|
| 809 |
+
"kl": 0.00640869140625,
|
| 810 |
+
"learning_rate": 9.99842835072449e-07,
|
| 811 |
+
"loss": 0.0006,
|
| 812 |
+
"reward": 3.8500003814697266,
|
| 813 |
+
"reward_std": 0.5542749762535095,
|
| 814 |
+
"rewards/gpt4o_acoustic_reward": 0.699999988079071,
|
| 815 |
+
"rewards/gpt4o_semantic_reward": 3.1500000953674316,
|
| 816 |
+
"step": 62
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"completion_length": 182.25,
|
| 820 |
+
"epoch": 0.006802721088435374,
|
| 821 |
+
"grad_norm": 4.80541467666626,
|
| 822 |
+
"kl": 0.0078125,
|
| 823 |
+
"learning_rate": 9.99836611656133e-07,
|
| 824 |
+
"loss": 0.0008,
|
| 825 |
+
"reward": 4.012500286102295,
|
| 826 |
+
"reward_std": 0.721532940864563,
|
| 827 |
+
"rewards/gpt4o_acoustic_reward": 0.7125000357627869,
|
| 828 |
+
"rewards/gpt4o_semantic_reward": 3.3000001907348633,
|
| 829 |
+
"step": 63
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"completion_length": 103.5,
|
| 833 |
+
"epoch": 0.006910700788251809,
|
| 834 |
+
"grad_norm": 4.415143966674805,
|
| 835 |
+
"kl": 0.01043701171875,
|
| 836 |
+
"learning_rate": 9.998302674233629e-07,
|
| 837 |
+
"loss": 0.001,
|
| 838 |
+
"reward": 3.5749998092651367,
|
| 839 |
+
"reward_std": 0.48531410098075867,
|
| 840 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 841 |
+
"rewards/gpt4o_semantic_reward": 2.799999952316284,
|
| 842 |
+
"step": 64
|
| 843 |
+
},
|
| 844 |
+
{
|
| 845 |
+
"completion_length": 155.0,
|
| 846 |
+
"epoch": 0.007018680488068243,
|
| 847 |
+
"grad_norm": 4.847844123840332,
|
| 848 |
+
"kl": 0.00689697265625,
|
| 849 |
+
"learning_rate": 9.998238023756725e-07,
|
| 850 |
+
"loss": 0.0007,
|
| 851 |
+
"reward": 3.950000047683716,
|
| 852 |
+
"reward_std": 0.6172438263893127,
|
| 853 |
+
"rewards/gpt4o_acoustic_reward": 0.7000000476837158,
|
| 854 |
+
"rewards/gpt4o_semantic_reward": 3.25,
|
| 855 |
+
"step": 65
|
| 856 |
+
},
|
| 857 |
+
{
|
| 858 |
+
"completion_length": 110.5,
|
| 859 |
+
"epoch": 0.007126660187884677,
|
| 860 |
+
"grad_norm": 5.6347808837890625,
|
| 861 |
+
"kl": 0.01129150390625,
|
| 862 |
+
"learning_rate": 9.998172165146247e-07,
|
| 863 |
+
"loss": 0.0011,
|
| 864 |
+
"reward": 3.6125001907348633,
|
| 865 |
+
"reward_std": 0.5318603515625,
|
| 866 |
+
"rewards/gpt4o_acoustic_reward": 0.8125,
|
| 867 |
+
"rewards/gpt4o_semantic_reward": 2.799999952316284,
|
| 868 |
+
"step": 66
|
| 869 |
+
},
|
| 870 |
+
{
|
| 871 |
+
"completion_length": 113.0,
|
| 872 |
+
"epoch": 0.0072346398877011124,
|
| 873 |
+
"grad_norm": 4.443930625915527,
|
| 874 |
+
"kl": 0.0118408203125,
|
| 875 |
+
"learning_rate": 9.99810509841811e-07,
|
| 876 |
+
"loss": 0.0012,
|
| 877 |
+
"reward": 3.75,
|
| 878 |
+
"reward_std": 0.5992990732192993,
|
| 879 |
+
"rewards/gpt4o_acoustic_reward": 0.7999999523162842,
|
| 880 |
+
"rewards/gpt4o_semantic_reward": 2.9499998092651367,
|
| 881 |
+
"step": 67
|
| 882 |
+
},
|
| 883 |
+
{
|
| 884 |
+
"completion_length": 56.5,
|
| 885 |
+
"epoch": 0.007342619587517547,
|
| 886 |
+
"grad_norm": 5.055539608001709,
|
| 887 |
+
"kl": 0.0093994140625,
|
| 888 |
+
"learning_rate": 9.998036823588527e-07,
|
| 889 |
+
"loss": 0.0009,
|
| 890 |
+
"reward": 3.674999952316284,
|
| 891 |
+
"reward_std": 0.40850570797920227,
|
| 892 |
+
"rewards/gpt4o_acoustic_reward": 0.7750000357627869,
|
| 893 |
+
"rewards/gpt4o_semantic_reward": 2.9000000953674316,
|
| 894 |
+
"step": 68
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"completion_length": 165.75,
|
| 898 |
+
"epoch": 0.007450599287333981,
|
| 899 |
+
"grad_norm": 4.068113803863525,
|
| 900 |
+
"kl": 0.0087890625,
|
| 901 |
+
"learning_rate": 9.997967340673998e-07,
|
| 902 |
+
"loss": 0.0009,
|
| 903 |
+
"reward": 4.099999904632568,
|
| 904 |
+
"reward_std": 0.4692710340023041,
|
| 905 |
+
"rewards/gpt4o_acoustic_reward": 0.800000011920929,
|
| 906 |
+
"rewards/gpt4o_semantic_reward": 3.299999713897705,
|
| 907 |
+
"step": 69
|
| 908 |
+
},
|
| 909 |
+
{
|
| 910 |
+
"completion_length": 163.25,
|
| 911 |
+
"epoch": 0.007558578987150416,
|
| 912 |
+
"grad_norm": 4.917808532714844,
|
| 913 |
+
"kl": 0.0106201171875,
|
| 914 |
+
"learning_rate": 9.997896649691323e-07,
|
| 915 |
+
"loss": 0.0011,
|
| 916 |
+
"reward": 3.6750001907348633,
|
| 917 |
+
"reward_std": 0.3706974983215332,
|
| 918 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 919 |
+
"rewards/gpt4o_semantic_reward": 2.9000000953674316,
|
| 920 |
+
"step": 70
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"completion_length": 244.5,
|
| 924 |
+
"epoch": 0.00766655868696685,
|
| 925 |
+
"grad_norm": 4.127923965454102,
|
| 926 |
+
"kl": 0.007232666015625,
|
| 927 |
+
"learning_rate": 9.997824750657583e-07,
|
| 928 |
+
"loss": 0.0007,
|
| 929 |
+
"reward": 4.012500286102295,
|
| 930 |
+
"reward_std": 0.571098268032074,
|
| 931 |
+
"rewards/gpt4o_acoustic_reward": 0.7624999284744263,
|
| 932 |
+
"rewards/gpt4o_semantic_reward": 3.25,
|
| 933 |
+
"step": 71
|
| 934 |
+
},
|
| 935 |
+
{
|
| 936 |
+
"completion_length": 95.25,
|
| 937 |
+
"epoch": 0.007774538386783284,
|
| 938 |
+
"grad_norm": 4.875095367431641,
|
| 939 |
+
"kl": 0.0091552734375,
|
| 940 |
+
"learning_rate": 9.997751643590162e-07,
|
| 941 |
+
"loss": 0.0009,
|
| 942 |
+
"reward": 4.025000095367432,
|
| 943 |
+
"reward_std": 0.4940524399280548,
|
| 944 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 945 |
+
"rewards/gpt4o_semantic_reward": 3.25,
|
| 946 |
+
"step": 72
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"completion_length": 118.0,
|
| 950 |
+
"epoch": 0.007882518086599719,
|
| 951 |
+
"grad_norm": 5.769279479980469,
|
| 952 |
+
"kl": 0.01031494140625,
|
| 953 |
+
"learning_rate": 9.997677328506728e-07,
|
| 954 |
+
"loss": 0.001,
|
| 955 |
+
"reward": 3.950000047683716,
|
| 956 |
+
"reward_std": 0.5956119298934937,
|
| 957 |
+
"rewards/gpt4o_acoustic_reward": 0.800000011920929,
|
| 958 |
+
"rewards/gpt4o_semantic_reward": 3.1499998569488525,
|
| 959 |
+
"step": 73
|
| 960 |
+
},
|
| 961 |
+
{
|
| 962 |
+
"completion_length": 68.25,
|
| 963 |
+
"epoch": 0.007990497786416154,
|
| 964 |
+
"grad_norm": 4.916319847106934,
|
| 965 |
+
"kl": 0.00921630859375,
|
| 966 |
+
"learning_rate": 9.997601805425245e-07,
|
| 967 |
+
"loss": 0.0009,
|
| 968 |
+
"reward": 4.212500095367432,
|
| 969 |
+
"reward_std": 0.4324294924736023,
|
| 970 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 971 |
+
"rewards/gpt4o_semantic_reward": 3.450000047683716,
|
| 972 |
+
"step": 74
|
| 973 |
+
},
|
| 974 |
+
{
|
| 975 |
+
"completion_length": 131.75,
|
| 976 |
+
"epoch": 0.008098477486232589,
|
| 977 |
+
"grad_norm": 3.795929193496704,
|
| 978 |
+
"kl": 0.007049560546875,
|
| 979 |
+
"learning_rate": 9.997525074363966e-07,
|
| 980 |
+
"loss": 0.0007,
|
| 981 |
+
"reward": 4.099999904632568,
|
| 982 |
+
"reward_std": 0.4008368253707886,
|
| 983 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 984 |
+
"rewards/gpt4o_semantic_reward": 3.3499999046325684,
|
| 985 |
+
"step": 75
|
| 986 |
+
},
|
| 987 |
+
{
|
| 988 |
+
"completion_length": 265.75,
|
| 989 |
+
"epoch": 0.008206457186049022,
|
| 990 |
+
"grad_norm": 4.116283416748047,
|
| 991 |
+
"kl": 0.01019287109375,
|
| 992 |
+
"learning_rate": 9.997447135341439e-07,
|
| 993 |
+
"loss": 0.001,
|
| 994 |
+
"reward": 4.150000095367432,
|
| 995 |
+
"reward_std": 0.3457174301147461,
|
| 996 |
+
"rewards/gpt4o_acoustic_reward": 0.7000000476837158,
|
| 997 |
+
"rewards/gpt4o_semantic_reward": 3.4499998092651367,
|
| 998 |
+
"step": 76
|
| 999 |
+
},
|
| 1000 |
+
{
|
| 1001 |
+
"completion_length": 163.75,
|
| 1002 |
+
"epoch": 0.008314436885865457,
|
| 1003 |
+
"grad_norm": 4.394094944000244,
|
| 1004 |
+
"kl": 0.01019287109375,
|
| 1005 |
+
"learning_rate": 9.997367988376502e-07,
|
| 1006 |
+
"loss": 0.001,
|
| 1007 |
+
"reward": 4.1875,
|
| 1008 |
+
"reward_std": 0.5921262502670288,
|
| 1009 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 1010 |
+
"rewards/gpt4o_semantic_reward": 3.4000000953674316,
|
| 1011 |
+
"step": 77
|
| 1012 |
+
},
|
| 1013 |
+
{
|
| 1014 |
+
"completion_length": 128.0,
|
| 1015 |
+
"epoch": 0.008422416585681892,
|
| 1016 |
+
"grad_norm": 4.5872931480407715,
|
| 1017 |
+
"kl": 0.0078125,
|
| 1018 |
+
"learning_rate": 9.997287633488287e-07,
|
| 1019 |
+
"loss": 0.0008,
|
| 1020 |
+
"reward": 4.625,
|
| 1021 |
+
"reward_std": 0.28030532598495483,
|
| 1022 |
+
"rewards/gpt4o_acoustic_reward": 0.8249999284744263,
|
| 1023 |
+
"rewards/gpt4o_semantic_reward": 3.799999952316284,
|
| 1024 |
+
"step": 78
|
| 1025 |
+
},
|
| 1026 |
+
{
|
| 1027 |
+
"completion_length": 216.75,
|
| 1028 |
+
"epoch": 0.008530396285498325,
|
| 1029 |
+
"grad_norm": 4.629324913024902,
|
| 1030 |
+
"kl": 0.0101318359375,
|
| 1031 |
+
"learning_rate": 9.997206070696217e-07,
|
| 1032 |
+
"loss": 0.001,
|
| 1033 |
+
"reward": 3.362499952316284,
|
| 1034 |
+
"reward_std": 0.37205901741981506,
|
| 1035 |
+
"rewards/gpt4o_acoustic_reward": 0.7125000357627869,
|
| 1036 |
+
"rewards/gpt4o_semantic_reward": 2.6500000953674316,
|
| 1037 |
+
"step": 79
|
| 1038 |
+
},
|
| 1039 |
+
{
|
| 1040 |
+
"completion_length": 90.5,
|
| 1041 |
+
"epoch": 0.00863837598531476,
|
| 1042 |
+
"grad_norm": 5.419586658477783,
|
| 1043 |
+
"kl": 0.009033203125,
|
| 1044 |
+
"learning_rate": 9.997123300020005e-07,
|
| 1045 |
+
"loss": 0.0009,
|
| 1046 |
+
"reward": 4.525000095367432,
|
| 1047 |
+
"reward_std": 0.48073428869247437,
|
| 1048 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 1049 |
+
"rewards/gpt4o_semantic_reward": 3.75,
|
| 1050 |
+
"step": 80
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"completion_length": 75.25,
|
| 1054 |
+
"epoch": 0.008746355685131196,
|
| 1055 |
+
"grad_norm": 4.748573303222656,
|
| 1056 |
+
"kl": 0.00946044921875,
|
| 1057 |
+
"learning_rate": 9.997039321479659e-07,
|
| 1058 |
+
"loss": 0.0009,
|
| 1059 |
+
"reward": 4.487500190734863,
|
| 1060 |
+
"reward_std": 0.2590702176094055,
|
| 1061 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 1062 |
+
"rewards/gpt4o_semantic_reward": 3.6999998092651367,
|
| 1063 |
+
"step": 81
|
| 1064 |
+
},
|
| 1065 |
+
{
|
| 1066 |
+
"completion_length": 66.5,
|
| 1067 |
+
"epoch": 0.00885433538494763,
|
| 1068 |
+
"grad_norm": 5.085847854614258,
|
| 1069 |
+
"kl": 0.01220703125,
|
| 1070 |
+
"learning_rate": 9.996954135095478e-07,
|
| 1071 |
+
"loss": 0.0012,
|
| 1072 |
+
"reward": 4.025000095367432,
|
| 1073 |
+
"reward_std": 0.5771558880805969,
|
| 1074 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 1075 |
+
"rewards/gpt4o_semantic_reward": 3.249999761581421,
|
| 1076 |
+
"step": 82
|
| 1077 |
+
},
|
| 1078 |
+
{
|
| 1079 |
+
"completion_length": 124.75,
|
| 1080 |
+
"epoch": 0.008962315084764064,
|
| 1081 |
+
"grad_norm": 4.828271389007568,
|
| 1082 |
+
"kl": 0.00994873046875,
|
| 1083 |
+
"learning_rate": 9.99686774088805e-07,
|
| 1084 |
+
"loss": 0.001,
|
| 1085 |
+
"reward": 4.324999809265137,
|
| 1086 |
+
"reward_std": 0.45119568705558777,
|
| 1087 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 1088 |
+
"rewards/gpt4o_semantic_reward": 3.549999713897705,
|
| 1089 |
+
"step": 83
|
| 1090 |
+
},
|
| 1091 |
+
{
|
| 1092 |
+
"completion_length": 118.0,
|
| 1093 |
+
"epoch": 0.009070294784580499,
|
| 1094 |
+
"grad_norm": 4.358130931854248,
|
| 1095 |
+
"kl": 0.0093994140625,
|
| 1096 |
+
"learning_rate": 9.996780138878262e-07,
|
| 1097 |
+
"loss": 0.0009,
|
| 1098 |
+
"reward": 3.5999999046325684,
|
| 1099 |
+
"reward_std": 0.49348530173301697,
|
| 1100 |
+
"rewards/gpt4o_acoustic_reward": 0.7000000476837158,
|
| 1101 |
+
"rewards/gpt4o_semantic_reward": 2.8999998569488525,
|
| 1102 |
+
"step": 84
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"completion_length": 164.75,
|
| 1106 |
+
"epoch": 0.009178274484396934,
|
| 1107 |
+
"grad_norm": 4.527029037475586,
|
| 1108 |
+
"kl": 0.01123046875,
|
| 1109 |
+
"learning_rate": 9.996691329087285e-07,
|
| 1110 |
+
"loss": 0.0011,
|
| 1111 |
+
"reward": 4.012499809265137,
|
| 1112 |
+
"reward_std": 0.6691046357154846,
|
| 1113 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 1114 |
+
"rewards/gpt4o_semantic_reward": 3.25,
|
| 1115 |
+
"step": 85
|
| 1116 |
+
},
|
| 1117 |
+
{
|
| 1118 |
+
"completion_length": 122.75,
|
| 1119 |
+
"epoch": 0.009286254184213368,
|
| 1120 |
+
"grad_norm": 5.344223976135254,
|
| 1121 |
+
"kl": 0.01171875,
|
| 1122 |
+
"learning_rate": 9.996601311536586e-07,
|
| 1123 |
+
"loss": 0.0012,
|
| 1124 |
+
"reward": 4.4375,
|
| 1125 |
+
"reward_std": 0.4996621012687683,
|
| 1126 |
+
"rewards/gpt4o_acoustic_reward": 0.7875000238418579,
|
| 1127 |
+
"rewards/gpt4o_semantic_reward": 3.6500000953674316,
|
| 1128 |
+
"step": 86
|
| 1129 |
+
},
|
| 1130 |
+
{
|
| 1131 |
+
"completion_length": 316.0,
|
| 1132 |
+
"epoch": 0.009394233884029803,
|
| 1133 |
+
"grad_norm": 4.248979568481445,
|
| 1134 |
+
"kl": 0.00927734375,
|
| 1135 |
+
"learning_rate": 9.996510086247921e-07,
|
| 1136 |
+
"loss": 0.0009,
|
| 1137 |
+
"reward": 3.7750000953674316,
|
| 1138 |
+
"reward_std": 0.5600669384002686,
|
| 1139 |
+
"rewards/gpt4o_acoustic_reward": 0.7250000238418579,
|
| 1140 |
+
"rewards/gpt4o_semantic_reward": 3.049999952316284,
|
| 1141 |
+
"step": 87
|
| 1142 |
+
},
|
| 1143 |
+
{
|
| 1144 |
+
"completion_length": 170.0,
|
| 1145 |
+
"epoch": 0.009502213583846238,
|
| 1146 |
+
"grad_norm": 4.813039779663086,
|
| 1147 |
+
"kl": 0.01385498046875,
|
| 1148 |
+
"learning_rate": 9.996417653243345e-07,
|
| 1149 |
+
"loss": 0.0014,
|
| 1150 |
+
"reward": 3.9375,
|
| 1151 |
+
"reward_std": 0.5633493661880493,
|
| 1152 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 1153 |
+
"rewards/gpt4o_semantic_reward": 3.1500000953674316,
|
| 1154 |
+
"step": 88
|
| 1155 |
+
},
|
| 1156 |
+
{
|
| 1157 |
+
"completion_length": 177.0,
|
| 1158 |
+
"epoch": 0.009610193283662671,
|
| 1159 |
+
"grad_norm": 5.789018630981445,
|
| 1160 |
+
"kl": 0.0106201171875,
|
| 1161 |
+
"learning_rate": 9.996324012545199e-07,
|
| 1162 |
+
"loss": 0.0011,
|
| 1163 |
+
"reward": 3.3375000953674316,
|
| 1164 |
+
"reward_std": 0.6463441848754883,
|
| 1165 |
+
"rewards/gpt4o_acoustic_reward": 0.6875,
|
| 1166 |
+
"rewards/gpt4o_semantic_reward": 2.6500000953674316,
|
| 1167 |
+
"step": 89
|
| 1168 |
+
},
|
| 1169 |
+
{
|
| 1170 |
+
"completion_length": 63.0,
|
| 1171 |
+
"epoch": 0.009718172983479106,
|
| 1172 |
+
"grad_norm": 4.934427261352539,
|
| 1173 |
+
"kl": 0.011962890625,
|
| 1174 |
+
"learning_rate": 9.996229164176112e-07,
|
| 1175 |
+
"loss": 0.0012,
|
| 1176 |
+
"reward": 4.474999904632568,
|
| 1177 |
+
"reward_std": 0.4358587861061096,
|
| 1178 |
+
"rewards/gpt4o_acoustic_reward": 0.824999988079071,
|
| 1179 |
+
"rewards/gpt4o_semantic_reward": 3.6499998569488525,
|
| 1180 |
+
"step": 90
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"completion_length": 61.0,
|
| 1184 |
+
"epoch": 0.009826152683295541,
|
| 1185 |
+
"grad_norm": 4.437107563018799,
|
| 1186 |
+
"kl": 0.0079345703125,
|
| 1187 |
+
"learning_rate": 9.996133108159017e-07,
|
| 1188 |
+
"loss": 0.0008,
|
| 1189 |
+
"reward": 4.274999618530273,
|
| 1190 |
+
"reward_std": 0.6249052882194519,
|
| 1191 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 1192 |
+
"rewards/gpt4o_semantic_reward": 3.5,
|
| 1193 |
+
"step": 91
|
| 1194 |
+
},
|
| 1195 |
+
{
|
| 1196 |
+
"completion_length": 127.0,
|
| 1197 |
+
"epoch": 0.009934132383111974,
|
| 1198 |
+
"grad_norm": 4.14124059677124,
|
| 1199 |
+
"kl": 0.0123291015625,
|
| 1200 |
+
"learning_rate": 9.996035844517127e-07,
|
| 1201 |
+
"loss": 0.0012,
|
| 1202 |
+
"reward": 4.27500057220459,
|
| 1203 |
+
"reward_std": 0.5244817733764648,
|
| 1204 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 1205 |
+
"rewards/gpt4o_semantic_reward": 3.5,
|
| 1206 |
+
"step": 92
|
| 1207 |
+
},
|
| 1208 |
+
{
|
| 1209 |
+
"completion_length": 96.0,
|
| 1210 |
+
"epoch": 0.01004211208292841,
|
| 1211 |
+
"grad_norm": 4.307178020477295,
|
| 1212 |
+
"kl": 0.0098876953125,
|
| 1213 |
+
"learning_rate": 9.995937373273956e-07,
|
| 1214 |
+
"loss": 0.001,
|
| 1215 |
+
"reward": 3.700000047683716,
|
| 1216 |
+
"reward_std": 0.6521656513214111,
|
| 1217 |
+
"rewards/gpt4o_acoustic_reward": 0.699999988079071,
|
| 1218 |
+
"rewards/gpt4o_semantic_reward": 3.0,
|
| 1219 |
+
"step": 93
|
| 1220 |
+
},
|
| 1221 |
+
{
|
| 1222 |
+
"completion_length": 106.75,
|
| 1223 |
+
"epoch": 0.010150091782744845,
|
| 1224 |
+
"grad_norm": 4.448451995849609,
|
| 1225 |
+
"kl": 0.0150146484375,
|
| 1226 |
+
"learning_rate": 9.995837694453301e-07,
|
| 1227 |
+
"loss": 0.0015,
|
| 1228 |
+
"reward": 3.612499952316284,
|
| 1229 |
+
"reward_std": 0.62925785779953,
|
| 1230 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 1231 |
+
"rewards/gpt4o_semantic_reward": 2.8499999046325684,
|
| 1232 |
+
"step": 94
|
| 1233 |
+
},
|
| 1234 |
+
{
|
| 1235 |
+
"completion_length": 216.25,
|
| 1236 |
+
"epoch": 0.010258071482561278,
|
| 1237 |
+
"grad_norm": 4.755711555480957,
|
| 1238 |
+
"kl": 0.0113525390625,
|
| 1239 |
+
"learning_rate": 9.99573680807926e-07,
|
| 1240 |
+
"loss": 0.0011,
|
| 1241 |
+
"reward": 3.9875001907348633,
|
| 1242 |
+
"reward_std": 0.5578835010528564,
|
| 1243 |
+
"rewards/gpt4o_acoustic_reward": 0.737500011920929,
|
| 1244 |
+
"rewards/gpt4o_semantic_reward": 3.25,
|
| 1245 |
+
"step": 95
|
| 1246 |
+
},
|
| 1247 |
+
{
|
| 1248 |
+
"completion_length": 81.5,
|
| 1249 |
+
"epoch": 0.010366051182377713,
|
| 1250 |
+
"grad_norm": 5.312046527862549,
|
| 1251 |
+
"kl": 0.014892578125,
|
| 1252 |
+
"learning_rate": 9.995634714176214e-07,
|
| 1253 |
+
"loss": 0.0015,
|
| 1254 |
+
"reward": 4.125,
|
| 1255 |
+
"reward_std": 0.3556162118911743,
|
| 1256 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 1257 |
+
"rewards/gpt4o_semantic_reward": 3.3499999046325684,
|
| 1258 |
+
"step": 96
|
| 1259 |
+
},
|
| 1260 |
+
{
|
| 1261 |
+
"completion_length": 130.25,
|
| 1262 |
+
"epoch": 0.010474030882194148,
|
| 1263 |
+
"grad_norm": 4.927104473114014,
|
| 1264 |
+
"kl": 0.0096435546875,
|
| 1265 |
+
"learning_rate": 9.995531412768844e-07,
|
| 1266 |
+
"loss": 0.001,
|
| 1267 |
+
"reward": 3.674999952316284,
|
| 1268 |
+
"reward_std": 0.49086692929267883,
|
| 1269 |
+
"rewards/gpt4o_acoustic_reward": 0.7750000357627869,
|
| 1270 |
+
"rewards/gpt4o_semantic_reward": 2.9000000953674316,
|
| 1271 |
+
"step": 97
|
| 1272 |
+
},
|
| 1273 |
+
{
|
| 1274 |
+
"completion_length": 181.5,
|
| 1275 |
+
"epoch": 0.010582010582010581,
|
| 1276 |
+
"grad_norm": 4.6555562019348145,
|
| 1277 |
+
"kl": 0.01220703125,
|
| 1278 |
+
"learning_rate": 9.995426903882117e-07,
|
| 1279 |
+
"loss": 0.0012,
|
| 1280 |
+
"reward": 2.6125001907348633,
|
| 1281 |
+
"reward_std": 0.6184185743331909,
|
| 1282 |
+
"rewards/gpt4o_acoustic_reward": 0.6625000238418579,
|
| 1283 |
+
"rewards/gpt4o_semantic_reward": 1.9500000476837158,
|
| 1284 |
+
"step": 98
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"completion_length": 107.25,
|
| 1288 |
+
"epoch": 0.010689990281827016,
|
| 1289 |
+
"grad_norm": 6.272807598114014,
|
| 1290 |
+
"kl": 0.011474609375,
|
| 1291 |
+
"learning_rate": 9.995321187541295e-07,
|
| 1292 |
+
"loss": 0.0011,
|
| 1293 |
+
"reward": 4.212500095367432,
|
| 1294 |
+
"reward_std": 0.6722015142440796,
|
| 1295 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 1296 |
+
"rewards/gpt4o_semantic_reward": 3.4499998092651367,
|
| 1297 |
+
"step": 99
|
| 1298 |
+
},
|
| 1299 |
+
{
|
| 1300 |
+
"completion_length": 298.0,
|
| 1301 |
+
"epoch": 0.010797969981643452,
|
| 1302 |
+
"grad_norm": 5.597227096557617,
|
| 1303 |
+
"kl": 0.008544921875,
|
| 1304 |
+
"learning_rate": 9.99521426377193e-07,
|
| 1305 |
+
"loss": 0.0009,
|
| 1306 |
+
"reward": 4.0625,
|
| 1307 |
+
"reward_std": 0.5641930103302002,
|
| 1308 |
+
"rewards/gpt4o_acoustic_reward": 0.7125000357627869,
|
| 1309 |
+
"rewards/gpt4o_semantic_reward": 3.3499999046325684,
|
| 1310 |
+
"step": 100
|
| 1311 |
+
},
|
| 1312 |
+
{
|
| 1313 |
+
"completion_length": 87.0,
|
| 1314 |
+
"epoch": 0.010905949681459885,
|
| 1315 |
+
"grad_norm": 4.724720001220703,
|
| 1316 |
+
"kl": 0.0130615234375,
|
| 1317 |
+
"learning_rate": 9.995106132599868e-07,
|
| 1318 |
+
"loss": 0.0013,
|
| 1319 |
+
"reward": 4.0625,
|
| 1320 |
+
"reward_std": 0.41856837272644043,
|
| 1321 |
+
"rewards/gpt4o_acoustic_reward": 0.8124999403953552,
|
| 1322 |
+
"rewards/gpt4o_semantic_reward": 3.25,
|
| 1323 |
+
"step": 101
|
| 1324 |
+
},
|
| 1325 |
+
{
|
| 1326 |
+
"completion_length": 115.5,
|
| 1327 |
+
"epoch": 0.01101392938127632,
|
| 1328 |
+
"grad_norm": 4.891082763671875,
|
| 1329 |
+
"kl": 0.01300048828125,
|
| 1330 |
+
"learning_rate": 9.994996794051246e-07,
|
| 1331 |
+
"loss": 0.0013,
|
| 1332 |
+
"reward": 4.074999809265137,
|
| 1333 |
+
"reward_std": 0.5545976758003235,
|
| 1334 |
+
"rewards/gpt4o_acoustic_reward": 0.7250000238418579,
|
| 1335 |
+
"rewards/gpt4o_semantic_reward": 3.3499999046325684,
|
| 1336 |
+
"step": 102
|
| 1337 |
+
},
|
| 1338 |
+
{
|
| 1339 |
+
"completion_length": 88.25,
|
| 1340 |
+
"epoch": 0.011121909081092755,
|
| 1341 |
+
"grad_norm": 5.216233253479004,
|
| 1342 |
+
"kl": 0.0274658203125,
|
| 1343 |
+
"learning_rate": 9.994886248152488e-07,
|
| 1344 |
+
"loss": 0.0027,
|
| 1345 |
+
"reward": 4.112500190734863,
|
| 1346 |
+
"reward_std": 0.518368124961853,
|
| 1347 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 1348 |
+
"rewards/gpt4o_semantic_reward": 3.3499999046325684,
|
| 1349 |
+
"step": 103
|
| 1350 |
+
},
|
| 1351 |
+
{
|
| 1352 |
+
"completion_length": 174.75,
|
| 1353 |
+
"epoch": 0.011229888780909188,
|
| 1354 |
+
"grad_norm": 5.821533203125,
|
| 1355 |
+
"kl": 0.0203857421875,
|
| 1356 |
+
"learning_rate": 9.99477449493032e-07,
|
| 1357 |
+
"loss": 0.002,
|
| 1358 |
+
"reward": 3.7750000953674316,
|
| 1359 |
+
"reward_std": 0.46149128675460815,
|
| 1360 |
+
"rewards/gpt4o_acoustic_reward": 0.7750000357627869,
|
| 1361 |
+
"rewards/gpt4o_semantic_reward": 3.0,
|
| 1362 |
+
"step": 104
|
| 1363 |
+
},
|
| 1364 |
+
{
|
| 1365 |
+
"completion_length": 182.75,
|
| 1366 |
+
"epoch": 0.011337868480725623,
|
| 1367 |
+
"grad_norm": 3.947430372238159,
|
| 1368 |
+
"kl": 0.00994873046875,
|
| 1369 |
+
"learning_rate": 9.994661534411753e-07,
|
| 1370 |
+
"loss": 0.001,
|
| 1371 |
+
"reward": 3.875,
|
| 1372 |
+
"reward_std": 0.7980617880821228,
|
| 1373 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 1374 |
+
"rewards/gpt4o_semantic_reward": 3.1000001430511475,
|
| 1375 |
+
"step": 105
|
| 1376 |
+
},
|
| 1377 |
+
{
|
| 1378 |
+
"completion_length": 138.75,
|
| 1379 |
+
"epoch": 0.011445848180542059,
|
| 1380 |
+
"grad_norm": 4.00054931640625,
|
| 1381 |
+
"kl": 0.01318359375,
|
| 1382 |
+
"learning_rate": 9.994547366624088e-07,
|
| 1383 |
+
"loss": 0.0013,
|
| 1384 |
+
"reward": 3.7874999046325684,
|
| 1385 |
+
"reward_std": 0.23983532190322876,
|
| 1386 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 1387 |
+
"rewards/gpt4o_semantic_reward": 3.0,
|
| 1388 |
+
"step": 106
|
| 1389 |
+
},
|
| 1390 |
+
{
|
| 1391 |
+
"completion_length": 154.25,
|
| 1392 |
+
"epoch": 0.011553827880358492,
|
| 1393 |
+
"grad_norm": 4.049806118011475,
|
| 1394 |
+
"kl": 0.00860595703125,
|
| 1395 |
+
"learning_rate": 9.994431991594923e-07,
|
| 1396 |
+
"loss": 0.0009,
|
| 1397 |
+
"reward": 3.8125,
|
| 1398 |
+
"reward_std": 0.6929358839988708,
|
| 1399 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 1400 |
+
"rewards/gpt4o_semantic_reward": 3.049999952316284,
|
| 1401 |
+
"step": 107
|
| 1402 |
+
},
|
| 1403 |
+
{
|
| 1404 |
+
"completion_length": 206.25,
|
| 1405 |
+
"epoch": 0.011661807580174927,
|
| 1406 |
+
"grad_norm": 6.010659217834473,
|
| 1407 |
+
"kl": 0.0203857421875,
|
| 1408 |
+
"learning_rate": 9.994315409352143e-07,
|
| 1409 |
+
"loss": 0.002,
|
| 1410 |
+
"reward": 4.262499809265137,
|
| 1411 |
+
"reward_std": 0.3880295753479004,
|
| 1412 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 1413 |
+
"rewards/gpt4o_semantic_reward": 3.5,
|
| 1414 |
+
"step": 108
|
| 1415 |
+
},
|
| 1416 |
+
{
|
| 1417 |
+
"completion_length": 104.5,
|
| 1418 |
+
"epoch": 0.011769787279991362,
|
| 1419 |
+
"grad_norm": 6.280111789703369,
|
| 1420 |
+
"kl": 0.01318359375,
|
| 1421 |
+
"learning_rate": 9.994197619923932e-07,
|
| 1422 |
+
"loss": 0.0013,
|
| 1423 |
+
"reward": 3.9125001430511475,
|
| 1424 |
+
"reward_std": 0.5632771253585815,
|
| 1425 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 1426 |
+
"rewards/gpt4o_semantic_reward": 3.1500000953674316,
|
| 1427 |
+
"step": 109
|
| 1428 |
+
},
|
| 1429 |
+
{
|
| 1430 |
+
"completion_length": 197.25,
|
| 1431 |
+
"epoch": 0.011877766979807795,
|
| 1432 |
+
"grad_norm": 3.786480665206909,
|
| 1433 |
+
"kl": 0.01300048828125,
|
| 1434 |
+
"learning_rate": 9.994078623338757e-07,
|
| 1435 |
+
"loss": 0.0013,
|
| 1436 |
+
"reward": 3.737499952316284,
|
| 1437 |
+
"reward_std": 0.6773794889450073,
|
| 1438 |
+
"rewards/gpt4o_acoustic_reward": 0.737500011920929,
|
| 1439 |
+
"rewards/gpt4o_semantic_reward": 3.0,
|
| 1440 |
+
"step": 110
|
| 1441 |
+
},
|
| 1442 |
+
{
|
| 1443 |
+
"completion_length": 209.25,
|
| 1444 |
+
"epoch": 0.01198574667962423,
|
| 1445 |
+
"grad_norm": 6.013534069061279,
|
| 1446 |
+
"kl": 0.06884765625,
|
| 1447 |
+
"learning_rate": 9.993958419625381e-07,
|
| 1448 |
+
"loss": 0.0069,
|
| 1449 |
+
"reward": 3.9125001430511475,
|
| 1450 |
+
"reward_std": 0.3996429741382599,
|
| 1451 |
+
"rewards/gpt4o_acoustic_reward": 0.762499988079071,
|
| 1452 |
+
"rewards/gpt4o_semantic_reward": 3.1499998569488525,
|
| 1453 |
+
"step": 111
|
| 1454 |
+
},
|
| 1455 |
+
{
|
| 1456 |
+
"completion_length": 200.5,
|
| 1457 |
+
"epoch": 0.012093726379440665,
|
| 1458 |
+
"grad_norm": 7.105154514312744,
|
| 1459 |
+
"kl": 0.0101318359375,
|
| 1460 |
+
"learning_rate": 9.993837008812862e-07,
|
| 1461 |
+
"loss": 0.001,
|
| 1462 |
+
"reward": 4.199999809265137,
|
| 1463 |
+
"reward_std": 0.2738218903541565,
|
| 1464 |
+
"rewards/gpt4o_acoustic_reward": 0.800000011920929,
|
| 1465 |
+
"rewards/gpt4o_semantic_reward": 3.4000000953674316,
|
| 1466 |
+
"step": 112
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"completion_length": 108.75,
|
| 1470 |
+
"epoch": 0.012201706079257099,
|
| 1471 |
+
"grad_norm": 4.474868297576904,
|
| 1472 |
+
"kl": 0.0113525390625,
|
| 1473 |
+
"learning_rate": 9.993714390930544e-07,
|
| 1474 |
+
"loss": 0.0011,
|
| 1475 |
+
"reward": 4.137499809265137,
|
| 1476 |
+
"reward_std": 0.43214571475982666,
|
| 1477 |
+
"rewards/gpt4o_acoustic_reward": 0.6875,
|
| 1478 |
+
"rewards/gpt4o_semantic_reward": 3.4499998092651367,
|
| 1479 |
+
"step": 113
|
| 1480 |
+
},
|
| 1481 |
+
{
|
| 1482 |
+
"completion_length": 63.5,
|
| 1483 |
+
"epoch": 0.012309685779073534,
|
| 1484 |
+
"grad_norm": 7.540884494781494,
|
| 1485 |
+
"kl": 0.0284423828125,
|
| 1486 |
+
"learning_rate": 9.993590566008062e-07,
|
| 1487 |
+
"loss": 0.0029,
|
| 1488 |
+
"reward": 4.087500095367432,
|
| 1489 |
+
"reward_std": 0.3996867537498474,
|
| 1490 |
+
"rewards/gpt4o_acoustic_reward": 0.7875000238418579,
|
| 1491 |
+
"rewards/gpt4o_semantic_reward": 3.299999952316284,
|
| 1492 |
+
"step": 114
|
| 1493 |
+
},
|
| 1494 |
+
{
|
| 1495 |
+
"completion_length": 231.0,
|
| 1496 |
+
"epoch": 0.012417665478889969,
|
| 1497 |
+
"grad_norm": 3.7791225910186768,
|
| 1498 |
+
"kl": 0.01336669921875,
|
| 1499 |
+
"learning_rate": 9.993465534075354e-07,
|
| 1500 |
+
"loss": 0.0013,
|
| 1501 |
+
"reward": 3.9000000953674316,
|
| 1502 |
+
"reward_std": 0.6481374502182007,
|
| 1503 |
+
"rewards/gpt4o_acoustic_reward": 0.7000000476837158,
|
| 1504 |
+
"rewards/gpt4o_semantic_reward": 3.200000047683716,
|
| 1505 |
+
"step": 115
|
| 1506 |
+
},
|
| 1507 |
+
{
|
| 1508 |
+
"completion_length": 199.25,
|
| 1509 |
+
"epoch": 0.012525645178706404,
|
| 1510 |
+
"grad_norm": 3.596402883529663,
|
| 1511 |
+
"kl": 0.01287841796875,
|
| 1512 |
+
"learning_rate": 9.993339295162635e-07,
|
| 1513 |
+
"loss": 0.0013,
|
| 1514 |
+
"reward": 3.9000000953674316,
|
| 1515 |
+
"reward_std": 0.7463849186897278,
|
| 1516 |
+
"rewards/gpt4o_acoustic_reward": 0.699999988079071,
|
| 1517 |
+
"rewards/gpt4o_semantic_reward": 3.200000047683716,
|
| 1518 |
+
"step": 116
|
| 1519 |
+
},
|
| 1520 |
+
{
|
| 1521 |
+
"completion_length": 134.75,
|
| 1522 |
+
"epoch": 0.012633624878522837,
|
| 1523 |
+
"grad_norm": 5.444986820220947,
|
| 1524 |
+
"kl": 0.055908203125,
|
| 1525 |
+
"learning_rate": 9.99321184930042e-07,
|
| 1526 |
+
"loss": 0.0056,
|
| 1527 |
+
"reward": 2.625,
|
| 1528 |
+
"reward_std": 0.2501000165939331,
|
| 1529 |
+
"rewards/gpt4o_acoustic_reward": 0.5,
|
| 1530 |
+
"rewards/gpt4o_semantic_reward": 2.125,
|
| 1531 |
+
"step": 117
|
| 1532 |
+
},
|
| 1533 |
+
{
|
| 1534 |
+
"completion_length": 100.5,
|
| 1535 |
+
"epoch": 0.012741604578339272,
|
| 1536 |
+
"grad_norm": 5.103532314300537,
|
| 1537 |
+
"kl": 0.05419921875,
|
| 1538 |
+
"learning_rate": 9.993083196519516e-07,
|
| 1539 |
+
"loss": 0.0054,
|
| 1540 |
+
"reward": 4.087500095367432,
|
| 1541 |
+
"reward_std": 0.6929433345794678,
|
| 1542 |
+
"rewards/gpt4o_acoustic_reward": 0.7875000238418579,
|
| 1543 |
+
"rewards/gpt4o_semantic_reward": 3.299999952316284,
|
| 1544 |
+
"step": 118
|
| 1545 |
+
},
|
| 1546 |
+
{
|
| 1547 |
+
"completion_length": 145.75,
|
| 1548 |
+
"epoch": 0.012849584278155708,
|
| 1549 |
+
"grad_norm": 6.422066688537598,
|
| 1550 |
+
"kl": 0.0164794921875,
|
| 1551 |
+
"learning_rate": 9.99295333685102e-07,
|
| 1552 |
+
"loss": 0.0016,
|
| 1553 |
+
"reward": 4.287499904632568,
|
| 1554 |
+
"reward_std": 0.46733689308166504,
|
| 1555 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 1556 |
+
"rewards/gpt4o_semantic_reward": 3.5,
|
| 1557 |
+
"step": 119
|
| 1558 |
+
},
|
| 1559 |
+
{
|
| 1560 |
+
"completion_length": 28.75,
|
| 1561 |
+
"epoch": 0.01295756397797214,
|
| 1562 |
+
"grad_norm": 5.2015886306762695,
|
| 1563 |
+
"kl": 0.1357421875,
|
| 1564 |
+
"learning_rate": 9.992822270326319e-07,
|
| 1565 |
+
"loss": 0.0135,
|
| 1566 |
+
"reward": 4.012499809265137,
|
| 1567 |
+
"reward_std": 0.9554036855697632,
|
| 1568 |
+
"rewards/gpt4o_acoustic_reward": 0.8125,
|
| 1569 |
+
"rewards/gpt4o_semantic_reward": 3.200000047683716,
|
| 1570 |
+
"step": 120
|
| 1571 |
+
},
|
| 1572 |
+
{
|
| 1573 |
+
"completion_length": 153.25,
|
| 1574 |
+
"epoch": 0.013065543677788576,
|
| 1575 |
+
"grad_norm": 5.840940475463867,
|
| 1576 |
+
"kl": 0.015869140625,
|
| 1577 |
+
"learning_rate": 9.99268999697709e-07,
|
| 1578 |
+
"loss": 0.0016,
|
| 1579 |
+
"reward": 4.112500190734863,
|
| 1580 |
+
"reward_std": 0.50977623462677,
|
| 1581 |
+
"rewards/gpt4o_acoustic_reward": 0.8125,
|
| 1582 |
+
"rewards/gpt4o_semantic_reward": 3.299999952316284,
|
| 1583 |
+
"step": 121
|
| 1584 |
+
},
|
| 1585 |
+
{
|
| 1586 |
+
"completion_length": 77.25,
|
| 1587 |
+
"epoch": 0.013173523377605011,
|
| 1588 |
+
"grad_norm": 4.669823169708252,
|
| 1589 |
+
"kl": 0.09814453125,
|
| 1590 |
+
"learning_rate": 9.992556516835313e-07,
|
| 1591 |
+
"loss": 0.0098,
|
| 1592 |
+
"reward": 3.4250001907348633,
|
| 1593 |
+
"reward_std": 0.7450007200241089,
|
| 1594 |
+
"rewards/gpt4o_acoustic_reward": 0.7749999761581421,
|
| 1595 |
+
"rewards/gpt4o_semantic_reward": 2.6500000953674316,
|
| 1596 |
+
"step": 122
|
| 1597 |
+
},
|
| 1598 |
+
{
|
| 1599 |
+
"completion_length": 103.5,
|
| 1600 |
+
"epoch": 0.013281503077421444,
|
| 1601 |
+
"grad_norm": 4.867919921875,
|
| 1602 |
+
"kl": 0.0201416015625,
|
| 1603 |
+
"learning_rate": 9.992421829933245e-07,
|
| 1604 |
+
"loss": 0.002,
|
| 1605 |
+
"reward": 3.2750000953674316,
|
| 1606 |
+
"reward_std": 0.5558943152427673,
|
| 1607 |
+
"rewards/gpt4o_acoustic_reward": 0.7250000238418579,
|
| 1608 |
+
"rewards/gpt4o_semantic_reward": 2.5500001907348633,
|
| 1609 |
+
"step": 123
|
| 1610 |
+
},
|
| 1611 |
+
{
|
| 1612 |
+
"completion_length": 94.25,
|
| 1613 |
+
"epoch": 0.01338948277723788,
|
| 1614 |
+
"grad_norm": 5.765076637268066,
|
| 1615 |
+
"kl": 0.0198974609375,
|
| 1616 |
+
"learning_rate": 9.992285936303443e-07,
|
| 1617 |
+
"loss": 0.002,
|
| 1618 |
+
"reward": 3.637500047683716,
|
| 1619 |
+
"reward_std": 0.8602118492126465,
|
| 1620 |
+
"rewards/gpt4o_acoustic_reward": 0.737500011920929,
|
| 1621 |
+
"rewards/gpt4o_semantic_reward": 2.9000000953674316,
|
| 1622 |
+
"step": 124
|
| 1623 |
+
},
|
| 1624 |
+
{
|
| 1625 |
+
"completion_length": 102.25,
|
| 1626 |
+
"epoch": 0.013497462477054314,
|
| 1627 |
+
"grad_norm": 6.424996852874756,
|
| 1628 |
+
"kl": 0.1044921875,
|
| 1629 |
+
"learning_rate": 9.992148835978757e-07,
|
| 1630 |
+
"loss": 0.0105,
|
| 1631 |
+
"reward": 4.125,
|
| 1632 |
+
"reward_std": 0.45705562829971313,
|
| 1633 |
+
"rewards/gpt4o_acoustic_reward": 0.8250000476837158,
|
| 1634 |
+
"rewards/gpt4o_semantic_reward": 3.299999952316284,
|
| 1635 |
+
"step": 125
|
| 1636 |
+
},
|
| 1637 |
+
{
|
| 1638 |
+
"completion_length": 150.75,
|
| 1639 |
+
"epoch": 0.013605442176870748,
|
| 1640 |
+
"grad_norm": 5.46433162689209,
|
| 1641 |
+
"kl": 0.07470703125,
|
| 1642 |
+
"learning_rate": 9.992010528992323e-07,
|
| 1643 |
+
"loss": 0.0075,
|
| 1644 |
+
"reward": 4.075000286102295,
|
| 1645 |
+
"reward_std": 0.3387722969055176,
|
| 1646 |
+
"rewards/gpt4o_acoustic_reward": 0.824999988079071,
|
| 1647 |
+
"rewards/gpt4o_semantic_reward": 3.25,
|
| 1648 |
+
"step": 126
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"completion_length": 200.75,
|
| 1652 |
+
"epoch": 0.013713421876687183,
|
| 1653 |
+
"grad_norm": 5.124598026275635,
|
| 1654 |
+
"kl": 0.0257568359375,
|
| 1655 |
+
"learning_rate": 9.991871015377573e-07,
|
| 1656 |
+
"loss": 0.0026,
|
| 1657 |
+
"reward": 3.8499999046325684,
|
| 1658 |
+
"reward_std": 0.6472960710525513,
|
| 1659 |
+
"rewards/gpt4o_acoustic_reward": 0.7000000476837158,
|
| 1660 |
+
"rewards/gpt4o_semantic_reward": 3.1500000953674316,
|
| 1661 |
+
"step": 127
|
| 1662 |
+
},
|
| 1663 |
+
{
|
| 1664 |
+
"completion_length": 311.75,
|
| 1665 |
+
"epoch": 0.013821401576503618,
|
| 1666 |
+
"grad_norm": 4.458286285400391,
|
| 1667 |
+
"kl": 0.01495361328125,
|
| 1668 |
+
"learning_rate": 9.991730295168229e-07,
|
| 1669 |
+
"loss": 0.0015,
|
| 1670 |
+
"reward": 4.387499809265137,
|
| 1671 |
+
"reward_std": 0.3887307941913605,
|
| 1672 |
+
"rewards/gpt4o_acoustic_reward": 0.7874999642372131,
|
| 1673 |
+
"rewards/gpt4o_semantic_reward": 3.5999999046325684,
|
| 1674 |
+
"step": 128
|
| 1675 |
+
},
|
| 1676 |
+
{
|
| 1677 |
+
"completion_length": 152.5,
|
| 1678 |
+
"epoch": 0.013929381276320051,
|
| 1679 |
+
"grad_norm": 4.544926166534424,
|
| 1680 |
+
"kl": 0.019775390625,
|
| 1681 |
+
"learning_rate": 9.991588368398303e-07,
|
| 1682 |
+
"loss": 0.002,
|
| 1683 |
+
"reward": 4.112500190734863,
|
| 1684 |
+
"reward_std": 0.5667690634727478,
|
| 1685 |
+
"rewards/gpt4o_acoustic_reward": 0.7625000476837158,
|
| 1686 |
+
"rewards/gpt4o_semantic_reward": 3.3499999046325684,
|
| 1687 |
+
"step": 129
|
| 1688 |
+
},
|
| 1689 |
+
{
|
| 1690 |
+
"completion_length": 202.5,
|
| 1691 |
+
"epoch": 0.014037360976136486,
|
| 1692 |
+
"grad_norm": 5.294361591339111,
|
| 1693 |
+
"kl": 0.027587890625,
|
| 1694 |
+
"learning_rate": 9.9914452351021e-07,
|
| 1695 |
+
"loss": 0.0028,
|
| 1696 |
+
"reward": 3.799999952316284,
|
| 1697 |
+
"reward_std": 0.42199504375457764,
|
| 1698 |
+
"rewards/gpt4o_acoustic_reward": 0.75,
|
| 1699 |
+
"rewards/gpt4o_semantic_reward": 3.049999952316284,
|
| 1700 |
+
"step": 130
|
| 1701 |
+
}
|
| 1702 |
+
],
|
| 1703 |
+
"logging_steps": 1,
|
| 1704 |
+
"max_steps": 6400,
|
| 1705 |
+
"num_input_tokens_seen": 0,
|
| 1706 |
+
"num_train_epochs": 1,
|
| 1707 |
+
"save_steps": 5,
|
| 1708 |
+
"stateful_callbacks": {
|
| 1709 |
+
"TrainerControl": {
|
| 1710 |
+
"args": {
|
| 1711 |
+
"should_epoch_stop": false,
|
| 1712 |
+
"should_evaluate": false,
|
| 1713 |
+
"should_log": false,
|
| 1714 |
+
"should_save": true,
|
| 1715 |
+
"should_training_stop": false
|
| 1716 |
+
},
|
| 1717 |
+
"attributes": {}
|
| 1718 |
+
}
|
| 1719 |
+
},
|
| 1720 |
+
"total_flos": 0.0,
|
| 1721 |
+
"train_batch_size": 1,
|
| 1722 |
+
"trial_name": null,
|
| 1723 |
+
"trial_params": null
|
| 1724 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d70799ebf19c6ecbddd7e2a7015dff6b50517469dfadefd76c47f1a151b92cb8
|
| 3 |
+
size 8568
|
video_preprocessor_config.json
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_valid_kwargs_names": [
|
| 3 |
+
"do_convert_rgb",
|
| 4 |
+
"do_resize",
|
| 5 |
+
"size",
|
| 6 |
+
"size_divisor",
|
| 7 |
+
"default_to_square",
|
| 8 |
+
"resample",
|
| 9 |
+
"do_rescale",
|
| 10 |
+
"rescale_factor",
|
| 11 |
+
"do_normalize",
|
| 12 |
+
"image_mean",
|
| 13 |
+
"image_std",
|
| 14 |
+
"do_pad",
|
| 15 |
+
"do_center_crop",
|
| 16 |
+
"crop_size",
|
| 17 |
+
"data_format",
|
| 18 |
+
"input_data_format",
|
| 19 |
+
"device",
|
| 20 |
+
"min_pixels",
|
| 21 |
+
"max_pixels",
|
| 22 |
+
"patch_size",
|
| 23 |
+
"temporal_patch_size",
|
| 24 |
+
"merge_size"
|
| 25 |
+
],
|
| 26 |
+
"chunk_length": 300,
|
| 27 |
+
"crop_size": null,
|
| 28 |
+
"data_format": "channels_first",
|
| 29 |
+
"default_to_square": true,
|
| 30 |
+
"device": null,
|
| 31 |
+
"dither": 0.0,
|
| 32 |
+
"do_center_crop": null,
|
| 33 |
+
"do_convert_rgb": true,
|
| 34 |
+
"do_normalize": true,
|
| 35 |
+
"do_pad": null,
|
| 36 |
+
"do_rescale": true,
|
| 37 |
+
"do_resize": true,
|
| 38 |
+
"feature_extractor_type": "WhisperFeatureExtractor",
|
| 39 |
+
"feature_size": 128,
|
| 40 |
+
"hop_length": 160,
|
| 41 |
+
"image_mean": [
|
| 42 |
+
0.48145466,
|
| 43 |
+
0.4578275,
|
| 44 |
+
0.40821073
|
| 45 |
+
],
|
| 46 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
| 47 |
+
"image_std": [
|
| 48 |
+
0.26862954,
|
| 49 |
+
0.26130258,
|
| 50 |
+
0.27577711
|
| 51 |
+
],
|
| 52 |
+
"input_data_format": null,
|
| 53 |
+
"max_pixels": 12845056,
|
| 54 |
+
"merge_size": 2,
|
| 55 |
+
"min_pixels": 3136,
|
| 56 |
+
"model_valid_processing_keys": [
|
| 57 |
+
"do_convert_rgb",
|
| 58 |
+
"do_resize",
|
| 59 |
+
"size",
|
| 60 |
+
"size_divisor",
|
| 61 |
+
"default_to_square",
|
| 62 |
+
"resample",
|
| 63 |
+
"do_rescale",
|
| 64 |
+
"rescale_factor",
|
| 65 |
+
"do_normalize",
|
| 66 |
+
"image_mean",
|
| 67 |
+
"image_std",
|
| 68 |
+
"do_pad",
|
| 69 |
+
"do_center_crop",
|
| 70 |
+
"crop_size",
|
| 71 |
+
"data_format",
|
| 72 |
+
"input_data_format",
|
| 73 |
+
"device",
|
| 74 |
+
"min_pixels",
|
| 75 |
+
"max_pixels",
|
| 76 |
+
"patch_size",
|
| 77 |
+
"temporal_patch_size",
|
| 78 |
+
"merge_size"
|
| 79 |
+
],
|
| 80 |
+
"n_fft": 400,
|
| 81 |
+
"n_samples": 4800000,
|
| 82 |
+
"nb_max_frames": 30000,
|
| 83 |
+
"padding_side": "left",
|
| 84 |
+
"padding_value": 0.0,
|
| 85 |
+
"patch_size": 14,
|
| 86 |
+
"processor_class": "Qwen2_5OmniProcessor",
|
| 87 |
+
"resample": 3,
|
| 88 |
+
"rescale_factor": 0.00392156862745098,
|
| 89 |
+
"return_attention_mask": true,
|
| 90 |
+
"sampling_rate": 16000,
|
| 91 |
+
"size": {
|
| 92 |
+
"longest_edge": 12845056,
|
| 93 |
+
"shortest_edge": 3136
|
| 94 |
+
},
|
| 95 |
+
"size_divisor": null,
|
| 96 |
+
"temporal_patch_size": 2,
|
| 97 |
+
"video_processor_type": "Qwen2VLVideoProcessor"
|
| 98 |
+
}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|