初始化项目,由ModelHub XC社区提供模型
Model: harsha070/expfinal-qwen-mbpp-s123-lambda-0p0 Source: Original Platform
This commit is contained in:
54
last-checkpoint/chat_template.jinja
Normal file
54
last-checkpoint/chat_template.jinja
Normal file
@@ -0,0 +1,54 @@
|
||||
{%- if tools %}
|
||||
{{- '<|im_start|>system\n' }}
|
||||
{%- if messages[0]['role'] == 'system' %}
|
||||
{{- messages[0]['content'] }}
|
||||
{%- else %}
|
||||
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
||||
{%- endif %}
|
||||
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
||||
{%- for tool in tools %}
|
||||
{{- "\n" }}
|
||||
{{- tool | tojson }}
|
||||
{%- endfor %}
|
||||
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
||||
{%- else %}
|
||||
{%- if messages[0]['role'] == 'system' %}
|
||||
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
||||
{%- else %}
|
||||
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
{%- for message in messages %}
|
||||
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
||||
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
||||
{%- elif message.role == "assistant" %}
|
||||
{{- '<|im_start|>' + message.role }}
|
||||
{%- if message.content %}
|
||||
{{- '\n' + message.content }}
|
||||
{%- endif %}
|
||||
{%- for tool_call in message.tool_calls %}
|
||||
{%- if tool_call.function is defined %}
|
||||
{%- set tool_call = tool_call.function %}
|
||||
{%- endif %}
|
||||
{{- '\n<tool_call>\n{"name": "' }}
|
||||
{{- tool_call.name }}
|
||||
{{- '", "arguments": ' }}
|
||||
{{- tool_call.arguments | tojson }}
|
||||
{{- '}\n</tool_call>' }}
|
||||
{%- endfor %}
|
||||
{{- '<|im_end|>\n' }}
|
||||
{%- elif message.role == "tool" %}
|
||||
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
||||
{{- '<|im_start|>user' }}
|
||||
{%- endif %}
|
||||
{{- '\n<tool_response>\n' }}
|
||||
{{- message.content }}
|
||||
{{- '\n</tool_response>' }}
|
||||
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
||||
{{- '<|im_end|>\n' }}
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
{%- endfor %}
|
||||
{%- if add_generation_prompt %}
|
||||
{{- '<|im_start|>assistant\n' }}
|
||||
{%- endif %}
|
||||
69
last-checkpoint/config.json
Normal file
69
last-checkpoint/config.json
Normal file
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"architectures": [
|
||||
"Qwen2ForCausalLM"
|
||||
],
|
||||
"attention_dropout": 0.0,
|
||||
"bos_token_id": null,
|
||||
"dtype": "bfloat16",
|
||||
"eos_token_id": 151645,
|
||||
"hidden_act": "silu",
|
||||
"hidden_size": 2048,
|
||||
"initializer_range": 0.02,
|
||||
"intermediate_size": 11008,
|
||||
"layer_types": [
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention",
|
||||
"full_attention"
|
||||
],
|
||||
"max_position_embeddings": 32768,
|
||||
"max_window_layers": 70,
|
||||
"model_type": "qwen2",
|
||||
"num_attention_heads": 16,
|
||||
"num_hidden_layers": 36,
|
||||
"num_key_value_heads": 2,
|
||||
"pad_token_id": 151643,
|
||||
"rms_norm_eps": 1e-06,
|
||||
"rope_parameters": {
|
||||
"rope_theta": 1000000.0,
|
||||
"rope_type": "default"
|
||||
},
|
||||
"sliding_window": null,
|
||||
"tie_word_embeddings": true,
|
||||
"transformers_version": "5.7.0",
|
||||
"use_cache": false,
|
||||
"use_sliding_window": false,
|
||||
"vocab_size": 151936
|
||||
}
|
||||
13
last-checkpoint/generation_config.json
Normal file
13
last-checkpoint/generation_config.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"do_sample": true,
|
||||
"eos_token_id": [
|
||||
151645,
|
||||
151643
|
||||
],
|
||||
"pad_token_id": 151643,
|
||||
"repetition_penalty": 1.05,
|
||||
"temperature": 0.7,
|
||||
"top_k": 20,
|
||||
"top_p": 0.8,
|
||||
"transformers_version": "5.7.0"
|
||||
}
|
||||
3
last-checkpoint/model.safetensors
Normal file
3
last-checkpoint/model.safetensors
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f47213a659ec702e089d7043785d9e7efc7ee1169b23e0de42801a0c6f1a521
|
||||
size 6171927112
|
||||
3
last-checkpoint/tokenizer.json
Normal file
3
last-checkpoint/tokenizer.json
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
|
||||
size 11421892
|
||||
30
last-checkpoint/tokenizer_config.json
Normal file
30
last-checkpoint/tokenizer_config.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"add_prefix_space": false,
|
||||
"backend": "tokenizers",
|
||||
"bos_token": null,
|
||||
"clean_up_tokenization_spaces": false,
|
||||
"eos_token": "<|im_end|>",
|
||||
"errors": "replace",
|
||||
"extra_special_tokens": [
|
||||
"<|im_start|>",
|
||||
"<|im_end|>",
|
||||
"<|object_ref_start|>",
|
||||
"<|object_ref_end|>",
|
||||
"<|box_start|>",
|
||||
"<|box_end|>",
|
||||
"<|quad_start|>",
|
||||
"<|quad_end|>",
|
||||
"<|vision_start|>",
|
||||
"<|vision_end|>",
|
||||
"<|vision_pad|>",
|
||||
"<|image_pad|>",
|
||||
"<|video_pad|>"
|
||||
],
|
||||
"is_local": false,
|
||||
"local_files_only": false,
|
||||
"model_max_length": 131072,
|
||||
"pad_token": "<|endoftext|>",
|
||||
"split_special_tokens": false,
|
||||
"tokenizer_class": "Qwen2Tokenizer",
|
||||
"unk_token": null
|
||||
}
|
||||
146
last-checkpoint/trainer_state.json
Normal file
146
last-checkpoint/trainer_state.json
Normal file
@@ -0,0 +1,146 @@
|
||||
{
|
||||
"best_global_step": null,
|
||||
"best_metric": null,
|
||||
"best_model_checkpoint": null,
|
||||
"epoch": 0.26666666666666666,
|
||||
"eval_steps": 500,
|
||||
"global_step": 40,
|
||||
"is_hyper_param_search": false,
|
||||
"is_local_process_zero": true,
|
||||
"is_world_process_zero": true,
|
||||
"log_history": [
|
||||
{
|
||||
"clip_ratio/high_max": 0.0,
|
||||
"clip_ratio/high_mean": 0.0,
|
||||
"clip_ratio/low_mean": 0.0,
|
||||
"clip_ratio/low_min": 0.0,
|
||||
"clip_ratio/region_mean": 0.0,
|
||||
"completions/clipped_ratio": 0.7875,
|
||||
"completions/max_length": 512.0,
|
||||
"completions/max_terminated_length": 240.3,
|
||||
"completions/mean_length": 483.275,
|
||||
"completions/mean_terminated_length": 200.9800018310547,
|
||||
"completions/min_length": 428.0,
|
||||
"completions/min_terminated_length": 172.0,
|
||||
"entropy": 0.44431554432958364,
|
||||
"epoch": 0.06666666666666667,
|
||||
"frac_reward_zero_std": 0.35,
|
||||
"grad_norm": 1.53125,
|
||||
"kl": 0.038827025642240186,
|
||||
"learning_rate": 9.4375e-06,
|
||||
"loss": 0.0020309146493673325,
|
||||
"num_tokens": 51530.0,
|
||||
"reward": 0.45,
|
||||
"reward_std": 0.3909654438495636,
|
||||
"rewards/JointRewardFunction/mean": 0.45,
|
||||
"rewards/JointRewardFunction/std": 0.3909654557704926,
|
||||
"step": 10,
|
||||
"step_time": 21.882423204801306
|
||||
},
|
||||
{
|
||||
"clip_ratio/high_max": 0.0,
|
||||
"clip_ratio/high_mean": 0.0,
|
||||
"clip_ratio/low_mean": 0.0,
|
||||
"clip_ratio/low_min": 0.0,
|
||||
"clip_ratio/region_mean": 0.0,
|
||||
"completions/clipped_ratio": 0.8,
|
||||
"completions/max_length": 512.0,
|
||||
"completions/max_terminated_length": 386.5,
|
||||
"completions/mean_length": 502.575,
|
||||
"completions/mean_terminated_length": 372.61000061035156,
|
||||
"completions/min_length": 457.8,
|
||||
"completions/min_terminated_length": 355.4,
|
||||
"entropy": 0.259922884311527,
|
||||
"epoch": 0.13333333333333333,
|
||||
"frac_reward_zero_std": 0.35,
|
||||
"grad_norm": 2.890625,
|
||||
"kl": 0.0678297683596611,
|
||||
"learning_rate": 8.8125e-06,
|
||||
"loss": 0.0040422692894935604,
|
||||
"num_tokens": 105496.0,
|
||||
"reward": 0.575,
|
||||
"reward_std": 0.4570506900548935,
|
||||
"rewards/JointRewardFunction/mean": 0.575,
|
||||
"rewards/JointRewardFunction/std": 0.45705069601535797,
|
||||
"step": 20,
|
||||
"step_time": 22.13749420610038
|
||||
},
|
||||
{
|
||||
"clip_ratio/high_max": 0.0,
|
||||
"clip_ratio/high_mean": 0.0,
|
||||
"clip_ratio/low_mean": 0.0,
|
||||
"clip_ratio/low_min": 0.0,
|
||||
"clip_ratio/region_mean": 0.0,
|
||||
"completions/clipped_ratio": 0.5875,
|
||||
"completions/max_length": 512.0,
|
||||
"completions/max_terminated_length": 422.9,
|
||||
"completions/mean_length": 473.825,
|
||||
"completions/mean_terminated_length": 379.08262634277344,
|
||||
"completions/min_length": 386.8,
|
||||
"completions/min_terminated_length": 335.6,
|
||||
"entropy": 0.25187050821259616,
|
||||
"epoch": 0.2,
|
||||
"frac_reward_zero_std": 0.35,
|
||||
"grad_norm": 0.09423828125,
|
||||
"kl": 0.11119869479443878,
|
||||
"learning_rate": 8.1875e-06,
|
||||
"loss": 0.0015535765327513219,
|
||||
"num_tokens": 154818.0,
|
||||
"reward": 0.7875,
|
||||
"reward_std": 0.3947398692369461,
|
||||
"rewards/JointRewardFunction/mean": 0.7875,
|
||||
"rewards/JointRewardFunction/std": 0.39473988115787506,
|
||||
"step": 30,
|
||||
"step_time": 21.91056177379942
|
||||
},
|
||||
{
|
||||
"clip_ratio/high_max": 0.0,
|
||||
"clip_ratio/high_mean": 0.0,
|
||||
"clip_ratio/low_mean": 0.0,
|
||||
"clip_ratio/low_min": 0.0,
|
||||
"clip_ratio/region_mean": 0.0,
|
||||
"completions/clipped_ratio": 0.825,
|
||||
"completions/max_length": 512.0,
|
||||
"completions/max_terminated_length": 429.5,
|
||||
"completions/mean_length": 496.7,
|
||||
"completions/mean_terminated_length": 396.95,
|
||||
"completions/min_length": 420.2,
|
||||
"completions/min_terminated_length": 369.0,
|
||||
"entropy": 0.24834579518064856,
|
||||
"epoch": 0.26666666666666666,
|
||||
"frac_reward_zero_std": 0.45,
|
||||
"grad_norm": 2.140625,
|
||||
"kl": 0.08241275593172759,
|
||||
"learning_rate": 7.5625e-06,
|
||||
"loss": 0.007686867564916611,
|
||||
"num_tokens": 207866.0,
|
||||
"reward": 0.6625,
|
||||
"reward_std": 0.41830068826675415,
|
||||
"rewards/JointRewardFunction/mean": 0.6625,
|
||||
"rewards/JointRewardFunction/std": 0.41830070614814757,
|
||||
"step": 40,
|
||||
"step_time": 21.8902738727018
|
||||
}
|
||||
],
|
||||
"logging_steps": 10,
|
||||
"max_steps": 160,
|
||||
"num_input_tokens_seen": 207866,
|
||||
"num_train_epochs": 2,
|
||||
"save_steps": 10,
|
||||
"stateful_callbacks": {
|
||||
"TrainerControl": {
|
||||
"args": {
|
||||
"should_epoch_stop": false,
|
||||
"should_evaluate": false,
|
||||
"should_log": false,
|
||||
"should_save": true,
|
||||
"should_training_stop": false
|
||||
},
|
||||
"attributes": {}
|
||||
}
|
||||
},
|
||||
"total_flos": 0.0,
|
||||
"train_batch_size": 1,
|
||||
"trial_name": null,
|
||||
"trial_params": null
|
||||
}
|
||||
3
last-checkpoint/training_args.bin
Normal file
3
last-checkpoint/training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:919910046ee1b215cd82763c46c39561ffbd75f6f2f01744edbb900af29b8709
|
||||
size 7249
|
||||
Reference in New Issue
Block a user