Text Generation
Transformers
Safetensors
Korean
qwen3
rlvr
reasoning
countdown
conversational
text-generation-inference
Instructions to use NotoriousH2/Qwen3-4B-Countdown-RLVR with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NotoriousH2/Qwen3-4B-Countdown-RLVR with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="NotoriousH2/Qwen3-4B-Countdown-RLVR") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("NotoriousH2/Qwen3-4B-Countdown-RLVR") model = AutoModelForCausalLM.from_pretrained("NotoriousH2/Qwen3-4B-Countdown-RLVR", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use NotoriousH2/Qwen3-4B-Countdown-RLVR with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "NotoriousH2/Qwen3-4B-Countdown-RLVR" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NotoriousH2/Qwen3-4B-Countdown-RLVR", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/NotoriousH2/Qwen3-4B-Countdown-RLVR
- SGLang
How to use NotoriousH2/Qwen3-4B-Countdown-RLVR with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "NotoriousH2/Qwen3-4B-Countdown-RLVR" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NotoriousH2/Qwen3-4B-Countdown-RLVR", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "NotoriousH2/Qwen3-4B-Countdown-RLVR" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NotoriousH2/Qwen3-4B-Countdown-RLVR", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use NotoriousH2/Qwen3-4B-Countdown-RLVR with Docker Model Runner:
docker model run hf.co/NotoriousH2/Qwen3-4B-Countdown-RLVR
Publish v2 training results
Browse files- README.md +7 -3
- adapter/adapter_config.json +3 -3
- adapter/adapter_model.safetensors +1 -1
- adapter/training_args.bin +1 -1
- checkpoint_selection.json +46 -0
- config.json +3 -3
- evaluation.json +2 -2
- generation_config.json +1 -0
- history.json +0 -0
- metrics.json +10 -10
- model.safetensors +1 -1
- tokenizer_config.json +2 -2
- training_config.json +13 -13
- training_provenance.json +28 -0
README.md
CHANGED
|
@@ -18,7 +18,7 @@ tags:
|
|
| 18 |
|
| 19 |
이 모델은 Countdown 문제의 결정적 보상을 사용하여 Qwen3-4B를 GRPO로 학습한 병합 모델입니다.
|
| 20 |
숫자 4개를 각각 한 번 사용하고, 사칙연산으로 목표값을 만드는 수식을 생성합니다.
|
| 21 |
-
학습 데이터는 `NotoriousH2/countdown-rlvr`
|
| 22 |
|
| 23 |
## 1. 사용
|
| 24 |
|
|
@@ -32,6 +32,10 @@ model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")
|
|
| 32 |
|
| 33 |
LoRA 파일과 토크나이저는 `adapter/`에 있습니다.
|
| 34 |
학습 설정은 `training_config.json`, 전체 학습 기록은 `history.json`에서 확인할 수 있습니다.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
|
| 36 |
## 2. 평가
|
| 37 |
|
|
@@ -39,8 +43,8 @@ Base와 RLVR 모델을 같은 test 분할과 생성 설정으로 평가했습니
|
|
| 39 |
|
| 40 |
| 모델 | pass@1 | pass@8 | 유효 수식 비율 | 평균 응답 토큰 |
|
| 41 |
|---|---:|---:|---:|---:|
|
| 42 |
-
| Base |
|
| 43 |
-
| RLVR |
|
| 44 |
|
| 45 |
문제별 응답과 점수는 `evaluation.json`에 있습니다.
|
| 46 |
|
|
|
|
| 18 |
|
| 19 |
이 모델은 Countdown 문제의 결정적 보상을 사용하여 Qwen3-4B를 GRPO로 학습한 병합 모델입니다.
|
| 20 |
숫자 4개를 각각 한 번 사용하고, 사칙연산으로 목표값을 만드는 수식을 생성합니다.
|
| 21 |
+
학습 데이터는 `NotoriousH2/countdown-rlvr`를 사용했습니다.
|
| 22 |
|
| 23 |
## 1. 사용
|
| 24 |
|
|
|
|
| 32 |
|
| 33 |
LoRA 파일과 토크나이저는 `adapter/`에 있습니다.
|
| 34 |
학습 설정은 `training_config.json`, 전체 학습 기록은 `history.json`에서 확인할 수 있습니다.
|
| 35 |
+
구간별 completion 길이와 체크포인트 재개 지점은 `training_provenance.json`에 있습니다.
|
| 36 |
+
|
| 37 |
+
검증 분할의 후보별 지표와 공개 체크포인트 선택 결과는 `checkpoint_selection.json`에 있습니다.
|
| 38 |
+
|
| 39 |
|
| 40 |
## 2. 평가
|
| 41 |
|
|
|
|
| 43 |
|
| 44 |
| 모델 | pass@1 | pass@8 | 유효 수식 비율 | 평균 응답 토큰 |
|
| 45 |
|---|---:|---:|---:|---:|
|
| 46 |
+
| Base | 24.2% | 70.3% | 23.9% | 1676.2 |
|
| 47 |
+
| RLVR | 50.8% | 91.4% | 51.8% | 1700.2 |
|
| 48 |
|
| 49 |
문제별 응답과 점수는 `evaluation.json`에 있습니다.
|
| 50 |
|
adapter/adapter_config.json
CHANGED
|
@@ -31,12 +31,12 @@
|
|
| 31 |
"rank_pattern": {},
|
| 32 |
"revision": null,
|
| 33 |
"target_modules": [
|
| 34 |
-
"up_proj",
|
| 35 |
-
"q_proj",
|
| 36 |
"gate_proj",
|
| 37 |
-
"
|
| 38 |
"o_proj",
|
| 39 |
"down_proj",
|
|
|
|
|
|
|
| 40 |
"k_proj"
|
| 41 |
],
|
| 42 |
"target_parameters": null,
|
|
|
|
| 31 |
"rank_pattern": {},
|
| 32 |
"revision": null,
|
| 33 |
"target_modules": [
|
|
|
|
|
|
|
| 34 |
"gate_proj",
|
| 35 |
+
"up_proj",
|
| 36 |
"o_proj",
|
| 37 |
"down_proj",
|
| 38 |
+
"q_proj",
|
| 39 |
+
"v_proj",
|
| 40 |
"k_proj"
|
| 41 |
],
|
| 42 |
"target_parameters": null,
|
adapter/adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 132187888
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9335913eef55f0b769962c8e9ca96d1df1d98aeab3126aaed3bf773a7b8c9c99
|
| 3 |
size 132187888
|
adapter/training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 7697
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db2fa40b501c6ae645899142e105591000dfbd7a6c88f33caa64e3be715dec4c
|
| 3 |
size 7697
|
checkpoint_selection.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"schema_version": 1,
|
| 3 |
+
"validation_path": "data/countdown/validation.jsonl",
|
| 4 |
+
"validation_samples": 64,
|
| 5 |
+
"completions_per_problem": 8,
|
| 6 |
+
"decoding": {
|
| 7 |
+
"max_tokens": 3072,
|
| 8 |
+
"temperature": 0.6,
|
| 9 |
+
"top_p": 0.95,
|
| 10 |
+
"top_k": 20,
|
| 11 |
+
"seed": 42
|
| 12 |
+
},
|
| 13 |
+
"candidates": [
|
| 14 |
+
{
|
| 15 |
+
"label": "checkpoint-360",
|
| 16 |
+
"pass_at_1": 0.5625,
|
| 17 |
+
"pass_at_8": 0.875,
|
| 18 |
+
"valid_expression_rate": 0.5234375,
|
| 19 |
+
"truncated_completion_rate": 0.166015625,
|
| 20 |
+
"mean_response_tokens": 1584.228515625
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"label": "step-480",
|
| 24 |
+
"pass_at_1": 0.453125,
|
| 25 |
+
"pass_at_8": 0.953125,
|
| 26 |
+
"valid_expression_rate": 0.529296875,
|
| 27 |
+
"truncated_completion_rate": 0.185546875,
|
| 28 |
+
"mean_response_tokens": 1569.1875
|
| 29 |
+
}
|
| 30 |
+
],
|
| 31 |
+
"selection_criterion": [
|
| 32 |
+
"pass_at_1",
|
| 33 |
+
"pass_at_8",
|
| 34 |
+
"lower_truncated_completion_rate"
|
| 35 |
+
],
|
| 36 |
+
"selected": {
|
| 37 |
+
"label": "checkpoint-360",
|
| 38 |
+
"step": 360,
|
| 39 |
+
"canonical_adapter": "adapter",
|
| 40 |
+
"canonical_merged_model": "merged"
|
| 41 |
+
},
|
| 42 |
+
"backup": {
|
| 43 |
+
"label": "step-480",
|
| 44 |
+
"local_path": "candidates/step-480"
|
| 45 |
+
}
|
| 46 |
+
}
|
config.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
],
|
| 5 |
"attention_bias": false,
|
| 6 |
"attention_dropout": 0.0,
|
| 7 |
-
"bos_token_id":
|
| 8 |
"dtype": "bfloat16",
|
| 9 |
"eos_token_id": 151645,
|
| 10 |
"head_dim": 128,
|
|
@@ -56,7 +56,7 @@
|
|
| 56 |
"num_attention_heads": 32,
|
| 57 |
"num_hidden_layers": 36,
|
| 58 |
"num_key_value_heads": 8,
|
| 59 |
-
"pad_token_id":
|
| 60 |
"rms_norm_eps": 1e-06,
|
| 61 |
"rope_parameters": {
|
| 62 |
"rope_theta": 1000000,
|
|
@@ -65,7 +65,7 @@
|
|
| 65 |
"sliding_window": null,
|
| 66 |
"tie_word_embeddings": true,
|
| 67 |
"transformers_version": "5.14.1",
|
| 68 |
-
"use_cache":
|
| 69 |
"use_sliding_window": false,
|
| 70 |
"vocab_size": 151936
|
| 71 |
}
|
|
|
|
| 4 |
],
|
| 5 |
"attention_bias": false,
|
| 6 |
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 151643,
|
| 8 |
"dtype": "bfloat16",
|
| 9 |
"eos_token_id": 151645,
|
| 10 |
"head_dim": 128,
|
|
|
|
| 56 |
"num_attention_heads": 32,
|
| 57 |
"num_hidden_layers": 36,
|
| 58 |
"num_key_value_heads": 8,
|
| 59 |
+
"pad_token_id": null,
|
| 60 |
"rms_norm_eps": 1e-06,
|
| 61 |
"rope_parameters": {
|
| 62 |
"rope_theta": 1000000,
|
|
|
|
| 65 |
"sliding_window": null,
|
| 66 |
"tie_word_embeddings": true,
|
| 67 |
"transformers_version": "5.14.1",
|
| 68 |
+
"use_cache": true,
|
| 69 |
"use_sliding_window": false,
|
| 70 |
"vocab_size": 151936
|
| 71 |
}
|
evaluation.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:476843ae50f7acfa87159ff8507ca6d608b333165d1cc494afbca75e18d17884
|
| 3 |
+
size 21912685
|
generation_config.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
{
|
|
|
|
| 2 |
"do_sample": true,
|
| 3 |
"eos_token_id": [
|
| 4 |
151645,
|
|
|
|
| 1 |
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
"do_sample": true,
|
| 4 |
"eos_token_id": [
|
| 5 |
151645,
|
history.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
metrics.json
CHANGED
|
@@ -3,19 +3,19 @@
|
|
| 3 |
"models": [
|
| 4 |
{
|
| 5 |
"model": "Base",
|
| 6 |
-
"pass@1": 0.
|
| 7 |
-
"pass@8": 0.
|
| 8 |
-
"valid_expression_rate": 0.
|
| 9 |
-
"valid_expression_diversity":
|
| 10 |
-
"mean_response_tokens":
|
| 11 |
},
|
| 12 |
{
|
| 13 |
"model": "RLVR",
|
| 14 |
-
"pass@1": 0.
|
| 15 |
-
"pass@8": 0.
|
| 16 |
-
"valid_expression_rate": 0.
|
| 17 |
-
"valid_expression_diversity":
|
| 18 |
-
"mean_response_tokens":
|
| 19 |
}
|
| 20 |
]
|
| 21 |
}
|
|
|
|
| 3 |
"models": [
|
| 4 |
{
|
| 5 |
"model": "Base",
|
| 6 |
+
"pass@1": 0.2421875,
|
| 7 |
+
"pass@8": 0.703125,
|
| 8 |
+
"valid_expression_rate": 0.23876953125,
|
| 9 |
+
"valid_expression_diversity": 1.0859375,
|
| 10 |
+
"mean_response_tokens": 1676.1796875
|
| 11 |
},
|
| 12 |
{
|
| 13 |
"model": "RLVR",
|
| 14 |
+
"pass@1": 0.5078125,
|
| 15 |
+
"pass@8": 0.9140625,
|
| 16 |
+
"valid_expression_rate": 0.517578125,
|
| 17 |
+
"valid_expression_diversity": 1.87890625,
|
| 18 |
+
"mean_response_tokens": 1700.2041015625
|
| 19 |
}
|
| 20 |
]
|
| 21 |
}
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 8044982080
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0dfb777d6c991e2fae8fd86cc6ee31dc9fe3e2deb4b80d43911d753cb0a0627
|
| 3 |
size 8044982080
|
tokenizer_config.json
CHANGED
|
@@ -20,8 +20,8 @@
|
|
| 20 |
"<|image_pad|>",
|
| 21 |
"<|video_pad|>"
|
| 22 |
],
|
| 23 |
-
"is_local":
|
| 24 |
-
"local_files_only":
|
| 25 |
"model_max_length": 131072,
|
| 26 |
"pad_token": "<|endoftext|>",
|
| 27 |
"split_special_tokens": false,
|
|
|
|
| 20 |
"<|image_pad|>",
|
| 21 |
"<|video_pad|>"
|
| 22 |
],
|
| 23 |
+
"is_local": true,
|
| 24 |
+
"local_files_only": true,
|
| 25 |
"model_max_length": 131072,
|
| 26 |
"pad_token": "<|endoftext|>",
|
| 27 |
"split_special_tokens": false,
|
training_config.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
{
|
| 2 |
-
"output_dir": "artifacts/
|
| 3 |
"per_device_train_batch_size": 2,
|
| 4 |
"num_train_epochs": 1,
|
| 5 |
-
"max_steps":
|
| 6 |
-
"learning_rate":
|
| 7 |
"lr_scheduler_type": "cosine",
|
| 8 |
"lr_scheduler_kwargs": null,
|
| 9 |
"warmup_steps": 0.05,
|
|
@@ -63,10 +63,10 @@
|
|
| 63 |
"include_for_metrics": [],
|
| 64 |
"batch_eval_metrics": false,
|
| 65 |
"save_only_model": false,
|
| 66 |
-
"save_strategy": "
|
| 67 |
-
"save_steps":
|
| 68 |
"save_on_each_node": false,
|
| 69 |
-
"save_total_limit":
|
| 70 |
"enable_jit_checkpoint": false,
|
| 71 |
"push_to_hub": false,
|
| 72 |
"hub_token": "<HUB_TOKEN>",
|
|
@@ -129,15 +129,15 @@
|
|
| 129 |
"cast_lm_head_to_fp32": false,
|
| 130 |
"num_generations": 8,
|
| 131 |
"num_generations_eval": null,
|
| 132 |
-
"max_completion_length":
|
| 133 |
"ds3_gather_for_generation": true,
|
| 134 |
"shuffle_dataset": true,
|
| 135 |
"pad_to_multiple_of": null,
|
| 136 |
"generation_batch_size": 8,
|
| 137 |
"steps_per_generation": 4,
|
| 138 |
-
"temperature":
|
| 139 |
-
"top_p":
|
| 140 |
-
"top_k":
|
| 141 |
"min_p": null,
|
| 142 |
"generation_kwargs": null,
|
| 143 |
"chat_template_kwargs": {
|
|
@@ -158,7 +158,7 @@
|
|
| 158 |
"vllm_gpu_memory_utilization": 0.3,
|
| 159 |
"vllm_max_model_length": null,
|
| 160 |
"vllm_tensor_parallel_size": 1,
|
| 161 |
-
"beta": 0.
|
| 162 |
"num_iterations": 1,
|
| 163 |
"epsilon": 0.2,
|
| 164 |
"delta": null,
|
|
@@ -171,14 +171,14 @@
|
|
| 171 |
"vespo_lambda_neg": 2.0,
|
| 172 |
"importance_sampling_level": "token",
|
| 173 |
"reward_weights": [
|
| 174 |
-
0.2,
|
| 175 |
0.3,
|
|
|
|
| 176 |
0.5
|
| 177 |
],
|
| 178 |
"multi_objective_aggregation": "sum_then_normalize",
|
| 179 |
"scale_rewards": "group",
|
| 180 |
"loss_type": "grpo",
|
| 181 |
-
"mask_truncated_completions":
|
| 182 |
"sync_ref_model": false,
|
| 183 |
"ref_model_mixup_alpha": 0.6,
|
| 184 |
"ref_model_sync_steps": 512,
|
|
|
|
| 1 |
{
|
| 2 |
+
"output_dir": "artifacts/countdown_rlvr_v2/checkpoints",
|
| 3 |
"per_device_train_batch_size": 2,
|
| 4 |
"num_train_epochs": 1,
|
| 5 |
+
"max_steps": 480,
|
| 6 |
+
"learning_rate": 5e-06,
|
| 7 |
"lr_scheduler_type": "cosine",
|
| 8 |
"lr_scheduler_kwargs": null,
|
| 9 |
"warmup_steps": 0.05,
|
|
|
|
| 63 |
"include_for_metrics": [],
|
| 64 |
"batch_eval_metrics": false,
|
| 65 |
"save_only_model": false,
|
| 66 |
+
"save_strategy": "steps",
|
| 67 |
+
"save_steps": 120,
|
| 68 |
"save_on_each_node": false,
|
| 69 |
+
"save_total_limit": 4,
|
| 70 |
"enable_jit_checkpoint": false,
|
| 71 |
"push_to_hub": false,
|
| 72 |
"hub_token": "<HUB_TOKEN>",
|
|
|
|
| 129 |
"cast_lm_head_to_fp32": false,
|
| 130 |
"num_generations": 8,
|
| 131 |
"num_generations_eval": null,
|
| 132 |
+
"max_completion_length": 3072,
|
| 133 |
"ds3_gather_for_generation": true,
|
| 134 |
"shuffle_dataset": true,
|
| 135 |
"pad_to_multiple_of": null,
|
| 136 |
"generation_batch_size": 8,
|
| 137 |
"steps_per_generation": 4,
|
| 138 |
+
"temperature": 0.6,
|
| 139 |
+
"top_p": 0.95,
|
| 140 |
+
"top_k": 20,
|
| 141 |
"min_p": null,
|
| 142 |
"generation_kwargs": null,
|
| 143 |
"chat_template_kwargs": {
|
|
|
|
| 158 |
"vllm_gpu_memory_utilization": 0.3,
|
| 159 |
"vllm_max_model_length": null,
|
| 160 |
"vllm_tensor_parallel_size": 1,
|
| 161 |
+
"beta": 0.001,
|
| 162 |
"num_iterations": 1,
|
| 163 |
"epsilon": 0.2,
|
| 164 |
"delta": null,
|
|
|
|
| 171 |
"vespo_lambda_neg": 2.0,
|
| 172 |
"importance_sampling_level": "token",
|
| 173 |
"reward_weights": [
|
|
|
|
| 174 |
0.3,
|
| 175 |
+
0.2,
|
| 176 |
0.5
|
| 177 |
],
|
| 178 |
"multi_objective_aggregation": "sum_then_normalize",
|
| 179 |
"scale_rewards": "group",
|
| 180 |
"loss_type": "grpo",
|
| 181 |
+
"mask_truncated_completions": true,
|
| 182 |
"sync_ref_model": false,
|
| 183 |
"ref_model_mixup_alpha": 0.6,
|
| 184 |
"ref_model_sync_steps": 512,
|
training_provenance.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"schema_version": 1,
|
| 3 |
+
"task": "countdown_rlvr",
|
| 4 |
+
"phases": [
|
| 5 |
+
{
|
| 6 |
+
"phase": "초기 구간",
|
| 7 |
+
"start_step": 1,
|
| 8 |
+
"end_step": 120,
|
| 9 |
+
"max_completion_length": 2048
|
| 10 |
+
},
|
| 11 |
+
{
|
| 12 |
+
"phase": "재개 구간",
|
| 13 |
+
"start_step": 121,
|
| 14 |
+
"end_step": 480,
|
| 15 |
+
"first_logged_step": 125,
|
| 16 |
+
"max_completion_length": 3072,
|
| 17 |
+
"resume_from_checkpoint": "checkpoints/checkpoint-120"
|
| 18 |
+
}
|
| 19 |
+
],
|
| 20 |
+
"logging_steps": 5,
|
| 21 |
+
"selected_checkpoint": {
|
| 22 |
+
"step": 360,
|
| 23 |
+
"criterion": "validation pass@1",
|
| 24 |
+
"canonical_adapter": "adapter",
|
| 25 |
+
"canonical_merged_model": "merged",
|
| 26 |
+
"step_480_backup": "candidates/step-480"
|
| 27 |
+
}
|
| 28 |
+
}
|