Instructions to use 1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use 1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3.6-27B") model = PeftModel.from_pretrained(base_model, "1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0") - Transformers
How to use 1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use 1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0
- SGLang
How to use 1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0 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 "1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0" \ --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": "1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0", "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 "1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0" \ --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": "1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use 1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0 with Docker Model Runner:
docker model run hf.co/1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +179 -0
- adapter_config.json +50 -0
- adapter_model.safetensors +3 -0
- chat_template.jinja +154 -0
- environment.json +82 -0
- finetune_config.json +22 -0
- processor_config.json +60 -0
- tokenizer.json +3 -0
- tokenizer_config.json +32 -0
- training.log +85 -0
- training_args.bin +3 -0
- training_log.json +761 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,179 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3.6-27B
|
| 3 |
+
library_name: peft
|
| 4 |
+
model_name: cluster_0
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:Qwen/Qwen3.6-27B
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- single_sample
|
| 12 |
+
- cluster_0
|
| 13 |
+
license: cc-by-sa-4.0
|
| 14 |
+
pipeline_tag: text-generation
|
| 15 |
+
datasets:
|
| 16 |
+
- 1jamesthompson1/wvs-nz-value-alignment
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
# Qwen3.6-27B LoRA — Single Sample, Cluster 0
|
| 24 |
+
|
| 25 |
+
This model is a LoRA fine-tune of [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B) as part of the
|
| 26 |
+
[AIML589 project](https://github.com/1jamesthompson1/AIML589).
|
| 27 |
+
|
| 28 |
+
This adapter is licensed under CC BY-SA 4.0.
|
| 29 |
+
|
| 30 |
+
## Dataset
|
| 31 |
+
|
| 32 |
+
Fine-tuned on the **single_sample** config of the
|
| 33 |
+
[wvs-nz-value-alignment](https://huggingface.co/datasets/1jamesthompson1/wvs-nz-value-alignment)
|
| 34 |
+
dataset, **cluster_0** subpopulation.
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
Part of the [wvs-nz-value-alignment](https://huggingface.co/collections/wvs-nz-value-alignment) collection.
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
**GPU:** NVIDIA RTX PRO 6000 Blackwell Workstation Edition · **Training time:** 53m 37s
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
## Training hyperparameters
|
| 44 |
+
|
| 45 |
+
| Parameter | Value |
|
| 46 |
+
|-----------|-------|
|
| 47 |
+
| LoRA rank | 256 |
|
| 48 |
+
| LoRA alpha | 512 |
|
| 49 |
+
| LoRA dropout | 0.05 |
|
| 50 |
+
| DoRA | False |
|
| 51 |
+
| Learning rate | 0.0002 |
|
| 52 |
+
| Batch size | 4 |
|
| 53 |
+
| Gradient accumulation | 4 |
|
| 54 |
+
| Epochs | 10 |
|
| 55 |
+
| Max seq length | 1024 |
|
| 56 |
+
| Warmup ratio | 0.1 |
|
| 57 |
+
| Dtype | bf16 |
|
| 58 |
+
|
| 59 |
+
## Training log
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
```
|
| 63 |
+
{"loss": 2.341543960571289, "grad_norm": 2.112253189086914, "learning_rate": 2.4e-05, "entropy": 0.9884634539484978, "mean_token_accuracy": 0.5556907095015049, "num_tokens": 25909.0, "epoch": 0.13377926421404682, "step": 10}
|
| 64 |
+
{"loss": 0.3863301038742065, "grad_norm": 2.2011115550994873, "learning_rate": 5.0666666666666674e-05, "entropy": 0.4089386660605669, "mean_token_accuracy": 0.9011316433548927, "num_tokens": 52070.0, "epoch": 0.26755852842809363, "step": 20}
|
| 65 |
+
{"loss": 0.17976584434509277, "grad_norm": 0.5207965970039368, "learning_rate": 7.733333333333333e-05, "entropy": 0.18403972331434487, "mean_token_accuracy": 0.9493107855319977, "num_tokens": 78405.0, "epoch": 0.4013377926421405, "step": 30}
|
| 66 |
+
{"loss": 0.10954103469848633, "grad_norm": 0.3419843316078186, "learning_rate": 0.00010400000000000001, "entropy": 0.11044432241469622, "mean_token_accuracy": 0.9671209067106247, "num_tokens": 104414.0, "epoch": 0.5351170568561873, "step": 40}
|
| 67 |
+
{"loss": 0.09990320205688477, "grad_norm": 0.33741509914398193, "learning_rate": 0.00013066666666666668, "entropy": 0.09925312716513872, "mean_token_accuracy": 0.9688541933894157, "num_tokens": 130830.0, "epoch": 0.6688963210702341, "step": 50}
|
| 68 |
+
{"loss": 0.0990227460861206, "grad_norm": 0.43753594160079956, "learning_rate": 0.00015733333333333333, "entropy": 0.0994369624182582, "mean_token_accuracy": 0.9684862270951271, "num_tokens": 156575.0, "epoch": 0.802675585284281, "step": 60}
|
| 69 |
+
{"loss": 0.0771427571773529, "grad_norm": 0.3096464276313782, "learning_rate": 0.00018400000000000003, "entropy": 0.07597130816429853, "mean_token_accuracy": 0.9754018127918244, "num_tokens": 182787.0, "epoch": 0.9364548494983278, "step": 70}
|
| 70 |
+
{"loss": 0.08177689909934997, "grad_norm": 1.9745781421661377, "learning_rate": 0.00019881481481481483, "entropy": 0.07385796203445165, "mean_token_accuracy": 0.9744954705238342, "num_tokens": 208722.0, "epoch": 1.0668896321070234, "step": 80}
|
| 71 |
+
{"loss": 0.08656259775161743, "grad_norm": 0.24118545651435852, "learning_rate": 0.00019585185185185187, "entropy": 0.0961530750617385, "mean_token_accuracy": 0.9735429108142852, "num_tokens": 234820.0, "epoch": 1.2006688963210703, "step": 90}
|
| 72 |
+
{"loss": 0.07904126048088074, "grad_norm": 1.4924163818359375, "learning_rate": 0.0001928888888888889, "entropy": 0.07621442535892128, "mean_token_accuracy": 0.9752445220947266, "num_tokens": 261255.0, "epoch": 1.334448160535117, "step": 100}
|
| 73 |
+
{"loss": 0.1028050422668457, "grad_norm": 0.22435367107391357, "learning_rate": 0.00018992592592592593, "entropy": 0.07814982496201991, "mean_token_accuracy": 0.9725448682904243, "num_tokens": 287420.0, "epoch": 1.468227424749164, "step": 110}
|
| 74 |
+
{"loss": 0.06647659540176391, "grad_norm": 0.16586251556873322, "learning_rate": 0.00018696296296296297, "entropy": 0.06741584213450551, "mean_token_accuracy": 0.9774157494306565, "num_tokens": 313385.0, "epoch": 1.6020066889632107, "step": 120}
|
| 75 |
+
{"loss": 0.057019442319869995, "grad_norm": 0.13507577776908875, "learning_rate": 0.00018400000000000003, "entropy": 0.05611985893920064, "mean_token_accuracy": 0.9796610698103905, "num_tokens": 340048.0, "epoch": 1.7357859531772575, "step": 130}
|
| 76 |
+
{"loss": 0.061611056327819824, "grad_norm": 0.2060474306344986, "learning_rate": 0.00018103703703703706, "entropy": 0.06344100441783666, "mean_token_accuracy": 0.97853914052248, "num_tokens": 365876.0, "epoch": 1.8695652173913042, "step": 140}
|
| 77 |
+
{"loss": 0.061782336235046385, "grad_norm": 0.3134608268737793, "learning_rate": 0.0001780740740740741, "entropy": 0.05643900770407457, "mean_token_accuracy": 0.978085016592955, "num_tokens": 390738.0, "epoch": 2.0, "step": 150}
|
| 78 |
+
{"loss": 0.057867032289505, "grad_norm": 0.33745983242988586, "learning_rate": 0.00017511111111111113, "entropy": 0.05852913670241833, "mean_token_accuracy": 0.9795649841427803, "num_tokens": 416830.0, "epoch": 2.1337792642140467, "step": 160}
|
| 79 |
+
{"loss": 0.058108162879943845, "grad_norm": 0.1164756640791893, "learning_rate": 0.00017214814814814816, "entropy": 0.0567542714998126, "mean_token_accuracy": 0.9790374860167503, "num_tokens": 443309.0, "epoch": 2.2675585284280935, "step": 170}
|
| 80 |
+
{"loss": 0.05357828140258789, "grad_norm": 0.12977160513401031, "learning_rate": 0.0001691851851851852, "entropy": 0.05269257873296738, "mean_token_accuracy": 0.9791603803634643, "num_tokens": 469381.0, "epoch": 2.4013377926421406, "step": 180}
|
| 81 |
+
{"loss": 0.06209459900856018, "grad_norm": 5.890456676483154, "learning_rate": 0.00016622222222222223, "entropy": 0.05242626103572547, "mean_token_accuracy": 0.9787786990404129, "num_tokens": 495823.0, "epoch": 2.5351170568561874, "step": 190}
|
| 82 |
+
{"loss": 0.052966177463531494, "grad_norm": 0.1879248023033142, "learning_rate": 0.00016325925925925926, "entropy": 0.05595421427860856, "mean_token_accuracy": 0.9809569671750069, "num_tokens": 521936.0, "epoch": 2.668896321070234, "step": 200}
|
| 83 |
+
{"loss": 0.1533456563949585, "grad_norm": 2.4737038612365723, "learning_rate": 0.0001602962962962963, "entropy": 0.09764697654172778, "mean_token_accuracy": 0.9594999879598618, "num_tokens": 547808.0, "epoch": 2.802675585284281, "step": 210}
|
| 84 |
+
{"loss": 0.14215301275253295, "grad_norm": 0.21627607941627502, "learning_rate": 0.00015733333333333333, "entropy": 0.09831915665417909, "mean_token_accuracy": 0.96669692248106, "num_tokens": 573896.0, "epoch": 2.936454849498328, "step": 220}
|
| 85 |
+
{"loss": 0.07142106890678405, "grad_norm": 0.24911274015903473, "learning_rate": 0.0001543703703703704, "entropy": 0.08219717662685956, "mean_token_accuracy": 0.975415417781243, "num_tokens": 599295.0, "epoch": 3.0668896321070234, "step": 230}
|
| 86 |
+
{"loss": 0.06142540574073792, "grad_norm": 2.818284273147583, "learning_rate": 0.00015140740740740742, "entropy": 0.06195763573050499, "mean_token_accuracy": 0.978814198076725, "num_tokens": 625594.0, "epoch": 3.20066889632107, "step": 240}
|
| 87 |
+
{"loss": 0.09106510877609253, "grad_norm": 0.3751987814903259, "learning_rate": 0.00014844444444444445, "entropy": 0.07343985894694924, "mean_token_accuracy": 0.9736507266759873, "num_tokens": 651379.0, "epoch": 3.334448160535117, "step": 250}
|
| 88 |
+
{"loss": 0.06325957775115967, "grad_norm": 3.0620086193084717, "learning_rate": 0.0001454814814814815, "entropy": 0.06504379613325, "mean_token_accuracy": 0.9780099034309387, "num_tokens": 677883.0, "epoch": 3.468227424749164, "step": 260}
|
| 89 |
+
{"loss": 0.06386491656303406, "grad_norm": 0.13123036921024323, "learning_rate": 0.00014251851851851852, "entropy": 0.06299111396074294, "mean_token_accuracy": 0.9776420131325722, "num_tokens": 703942.0, "epoch": 3.6020066889632107, "step": 270}
|
| 90 |
+
{"loss": 0.07105348110198975, "grad_norm": 0.16725099086761475, "learning_rate": 0.00013955555555555558, "entropy": 0.06523667583242058, "mean_token_accuracy": 0.9771258398890496, "num_tokens": 730355.0, "epoch": 3.7357859531772575, "step": 280}
|
| 91 |
+
{"loss": 0.05892015695571899, "grad_norm": 0.8018252849578857, "learning_rate": 0.00013659259259259261, "entropy": 0.06290404153987765, "mean_token_accuracy": 0.9795312806963921, "num_tokens": 756288.0, "epoch": 3.869565217391304, "step": 290}
|
| 92 |
+
{"loss": 0.05513965487480164, "grad_norm": 0.23648729920387268, "learning_rate": 0.00013362962962962965, "entropy": 0.05575119321927046, "mean_token_accuracy": 0.980286703659938, "num_tokens": 781476.0, "epoch": 4.0, "step": 300}
|
| 93 |
+
{"loss": 0.049145272374153136, "grad_norm": 0.23902687430381775, "learning_rate": 0.00013066666666666668, "entropy": 0.047657360602170226, "mean_token_accuracy": 0.9813551798462867, "num_tokens": 807995.0, "epoch": 4.133779264214047, "step": 310}
|
| 94 |
+
{"loss": 0.052027386426925656, "grad_norm": 0.08278259634971619, "learning_rate": 0.00012770370370370371, "entropy": 0.04914208557456732, "mean_token_accuracy": 0.9807460099458695, "num_tokens": 834211.0, "epoch": 4.2675585284280935, "step": 320}
|
| 95 |
+
{"loss": 0.04958886206150055, "grad_norm": 0.06415274739265442, "learning_rate": 0.00012474074074074075, "entropy": 0.05262458473443985, "mean_token_accuracy": 0.9813323050737381, "num_tokens": 860320.0, "epoch": 4.40133779264214, "step": 330}
|
| 96 |
+
{"loss": 0.0506575882434845, "grad_norm": 0.08827455341815948, "learning_rate": 0.0001217777777777778, "entropy": 0.049570453260093926, "mean_token_accuracy": 0.9807545498013497, "num_tokens": 886260.0, "epoch": 4.535117056856187, "step": 340}
|
| 97 |
+
{"loss": 0.04992738664150238, "grad_norm": 0.1842905879020691, "learning_rate": 0.00011881481481481483, "entropy": 0.049180435854941605, "mean_token_accuracy": 0.9801862895488739, "num_tokens": 912192.0, "epoch": 4.668896321070234, "step": 350}
|
| 98 |
+
{"loss": 0.04837550222873688, "grad_norm": 0.07146720588207245, "learning_rate": 0.00011585185185185186, "entropy": 0.04882028605788946, "mean_token_accuracy": 0.9817976549267768, "num_tokens": 938443.0, "epoch": 4.802675585284281, "step": 360}
|
| 99 |
+
{"loss": 0.047449523210525514, "grad_norm": 0.07254461199045181, "learning_rate": 0.0001128888888888889, "entropy": 0.04849126562476158, "mean_token_accuracy": 0.9812644407153129, "num_tokens": 964704.0, "epoch": 4.936454849498328, "step": 370}
|
| 100 |
+
{"loss": 0.047966784238815306, "grad_norm": 0.05580724775791168, "learning_rate": 0.00010992592592592593, "entropy": 0.04855830528033085, "mean_token_accuracy": 0.9817173633819971, "num_tokens": 989807.0, "epoch": 5.066889632107023, "step": 380}
|
| 101 |
+
{"loss": 0.04565880596637726, "grad_norm": 0.06281863152980804, "learning_rate": 0.00010696296296296297, "entropy": 0.04446020070463419, "mean_token_accuracy": 0.98235524892807, "num_tokens": 1016432.0, "epoch": 5.20066889632107, "step": 390}
|
| 102 |
+
{"loss": 0.047007548809051516, "grad_norm": 0.05037130042910576, "learning_rate": 0.00010400000000000001, "entropy": 0.046955365035682914, "mean_token_accuracy": 0.9810686483979225, "num_tokens": 1042595.0, "epoch": 5.334448160535117, "step": 400}
|
| 103 |
+
{"loss": 0.04774223566055298, "grad_norm": 0.05550120770931244, "learning_rate": 0.00010103703703703704, "entropy": 0.04687619395554066, "mean_token_accuracy": 0.9813349410891533, "num_tokens": 1068499.0, "epoch": 5.468227424749164, "step": 410}
|
| 104 |
+
{"loss": 0.04721843302249908, "grad_norm": 0.07114529609680176, "learning_rate": 9.807407407407407e-05, "entropy": 0.048110970109701154, "mean_token_accuracy": 0.9819222643971444, "num_tokens": 1094712.0, "epoch": 5.602006688963211, "step": 420}
|
| 105 |
+
{"loss": 0.04641242623329163, "grad_norm": 0.054782308638095856, "learning_rate": 9.511111111111112e-05, "entropy": 0.045364385657012465, "mean_token_accuracy": 0.9820315048098565, "num_tokens": 1121039.0, "epoch": 5.735785953177258, "step": 430}
|
| 106 |
+
{"loss": 0.04601489901542664, "grad_norm": 0.05270834639668465, "learning_rate": 9.214814814814815e-05, "entropy": 0.046417954843491316, "mean_token_accuracy": 0.9826092898845673, "num_tokens": 1147476.0, "epoch": 5.869565217391305, "step": 440}
|
| 107 |
+
{"loss": 0.047896665334701535, "grad_norm": 0.07369400560855865, "learning_rate": 8.918518518518519e-05, "entropy": 0.04759720369027211, "mean_token_accuracy": 0.9811742412738311, "num_tokens": 1172214.0, "epoch": 6.0, "step": 450}
|
| 108 |
+
{"loss": 0.04460802972316742, "grad_norm": 0.043926533311605453, "learning_rate": 8.622222222222222e-05, "entropy": 0.0450520227663219, "mean_token_accuracy": 0.983108639717102, "num_tokens": 1198481.0, "epoch": 6.133779264214047, "step": 460}
|
| 109 |
+
{"loss": 0.04490154683589935, "grad_norm": 0.049713313579559326, "learning_rate": 8.325925925925925e-05, "entropy": 0.043880753125995396, "mean_token_accuracy": 0.981929925084114, "num_tokens": 1225270.0, "epoch": 6.2675585284280935, "step": 470}
|
| 110 |
+
{"loss": 0.04616124629974365, "grad_norm": 0.04489952698349953, "learning_rate": 8.02962962962963e-05, "entropy": 0.04594219285063446, "mean_token_accuracy": 0.9817362502217293, "num_tokens": 1251191.0, "epoch": 6.40133779264214, "step": 480}
|
| 111 |
+
{"loss": 0.04496528506278992, "grad_norm": 0.04445449262857437, "learning_rate": 7.733333333333333e-05, "entropy": 0.045685965567827225, "mean_token_accuracy": 0.9831607535481452, "num_tokens": 1277832.0, "epoch": 6.535117056856187, "step": 490}
|
| 112 |
+
{"loss": 0.04584149122238159, "grad_norm": 0.05437646806240082, "learning_rate": 7.437037037037038e-05, "entropy": 0.04615831598639488, "mean_token_accuracy": 0.9816597178578377, "num_tokens": 1304203.0, "epoch": 6.668896321070234, "step": 500}
|
| 113 |
+
{"loss": 0.04616081714630127, "grad_norm": 0.04138358682394028, "learning_rate": 7.140740740740741e-05, "entropy": 0.04780284911394119, "mean_token_accuracy": 0.9815138846635818, "num_tokens": 1330059.0, "epoch": 6.802675585284281, "step": 510}
|
| 114 |
+
{"loss": 0.047184526920318604, "grad_norm": 0.05079558491706848, "learning_rate": 6.844444444444445e-05, "entropy": 0.04507539812475443, "mean_token_accuracy": 0.9809173971414566, "num_tokens": 1355654.0, "epoch": 6.936454849498328, "step": 520}
|
| 115 |
+
{"loss": 0.045189327001571654, "grad_norm": 0.04889153689146042, "learning_rate": 6.54814814814815e-05, "entropy": 0.04632591761839695, "mean_token_accuracy": 0.9823385003285531, "num_tokens": 1380740.0, "epoch": 7.066889632107023, "step": 530}
|
| 116 |
+
{"loss": 0.046108204126358035, "grad_norm": 0.06250233948230743, "learning_rate": 6.251851851851853e-05, "entropy": 0.047147559747099874, "mean_token_accuracy": 0.9815558344125748, "num_tokens": 1406229.0, "epoch": 7.20066889632107, "step": 540}
|
| 117 |
+
{"loss": 0.04495341181755066, "grad_norm": 0.04576072841882706, "learning_rate": 5.9555555555555554e-05, "entropy": 0.04380973177030682, "mean_token_accuracy": 0.9825871646404266, "num_tokens": 1432718.0, "epoch": 7.334448160535117, "step": 550}
|
| 118 |
+
{"loss": 0.04445241391658783, "grad_norm": 0.03827248513698578, "learning_rate": 5.6592592592592594e-05, "entropy": 0.04404275622218847, "mean_token_accuracy": 0.9829956665635109, "num_tokens": 1459141.0, "epoch": 7.468227424749164, "step": 560}
|
| 119 |
+
{"loss": 0.04570685029029846, "grad_norm": 0.03917380049824715, "learning_rate": 5.362962962962963e-05, "entropy": 0.04583866978064179, "mean_token_accuracy": 0.9810639604926109, "num_tokens": 1485265.0, "epoch": 7.602006688963211, "step": 570}
|
| 120 |
+
{"loss": 0.04584062099456787, "grad_norm": 0.04370535910129547, "learning_rate": 5.0666666666666674e-05, "entropy": 0.04647259535267949, "mean_token_accuracy": 0.9812271296977997, "num_tokens": 1511176.0, "epoch": 7.735785953177258, "step": 580}
|
| 121 |
+
{"loss": 0.045942744612693785, "grad_norm": 0.049611467868089676, "learning_rate": 4.770370370370371e-05, "entropy": 0.045514973998069766, "mean_token_accuracy": 0.9814796030521393, "num_tokens": 1537083.0, "epoch": 7.869565217391305, "step": 590}
|
| 122 |
+
{"loss": 0.04436405599117279, "grad_norm": 0.044528670608997345, "learning_rate": 4.474074074074075e-05, "entropy": 0.04354679699127491, "mean_token_accuracy": 0.9819874656506073, "num_tokens": 1562952.0, "epoch": 8.0, "step": 600}
|
| 123 |
+
{"loss": 0.044945243000984195, "grad_norm": 0.045649204403162, "learning_rate": 4.177777777777778e-05, "entropy": 0.04686344414949417, "mean_token_accuracy": 0.9817773103713989, "num_tokens": 1588851.0, "epoch": 8.133779264214047, "step": 610}
|
| 124 |
+
{"loss": 0.04427960515022278, "grad_norm": 0.043687306344509125, "learning_rate": 3.8814814814814814e-05, "entropy": 0.04569701394066215, "mean_token_accuracy": 0.9820200949907303, "num_tokens": 1615149.0, "epoch": 8.267558528428093, "step": 620}
|
| 125 |
+
{"loss": 0.0447018563747406, "grad_norm": 0.04362299293279648, "learning_rate": 3.5851851851851854e-05, "entropy": 0.04486168110743165, "mean_token_accuracy": 0.9820230007171631, "num_tokens": 1641174.0, "epoch": 8.40133779264214, "step": 630}
|
| 126 |
+
{"loss": 0.04458645284175873, "grad_norm": 0.04046420380473137, "learning_rate": 3.2888888888888894e-05, "entropy": 0.044725227542221545, "mean_token_accuracy": 0.9823110207915307, "num_tokens": 1667583.0, "epoch": 8.535117056856187, "step": 640}
|
| 127 |
+
{"loss": 0.044426333904266355, "grad_norm": 0.036781083792448044, "learning_rate": 2.992592592592593e-05, "entropy": 0.04480462055653334, "mean_token_accuracy": 0.9823192492127418, "num_tokens": 1694027.0, "epoch": 8.668896321070234, "step": 650}
|
| 128 |
+
{"loss": 0.045354658365249635, "grad_norm": 0.03921104222536087, "learning_rate": 2.696296296296296e-05, "entropy": 0.04497002325952053, "mean_token_accuracy": 0.9815022855997085, "num_tokens": 1719962.0, "epoch": 8.80267558528428, "step": 660}
|
| 129 |
+
{"loss": 0.04457056820392609, "grad_norm": 0.03931435942649841, "learning_rate": 2.4e-05, "entropy": 0.044097188767045735, "mean_token_accuracy": 0.9824405118823052, "num_tokens": 1746249.0, "epoch": 8.936454849498327, "step": 670}
|
| 130 |
+
{"loss": 0.04478446841239929, "grad_norm": 0.032005202025175095, "learning_rate": 2.1037037037037037e-05, "entropy": 0.045094484893175274, "mean_token_accuracy": 0.9815951723318833, "num_tokens": 1771309.0, "epoch": 9.066889632107024, "step": 680}
|
| 131 |
+
{"loss": 0.04368177354335785, "grad_norm": 0.03807147592306137, "learning_rate": 1.8074074074074074e-05, "entropy": 0.04654490072280169, "mean_token_accuracy": 0.9825977519154548, "num_tokens": 1797647.0, "epoch": 9.200668896321071, "step": 690}
|
| 132 |
+
{"loss": 0.043600788712501524, "grad_norm": 0.03561871498823166, "learning_rate": 1.5111111111111112e-05, "entropy": 0.04407275160774589, "mean_token_accuracy": 0.9828053265810013, "num_tokens": 1824009.0, "epoch": 9.334448160535118, "step": 700}
|
| 133 |
+
{"loss": 0.04528459906578064, "grad_norm": 0.03744061291217804, "learning_rate": 1.2148148148148149e-05, "entropy": 0.04444531872868538, "mean_token_accuracy": 0.9812339514493942, "num_tokens": 1849648.0, "epoch": 9.468227424749164, "step": 710}
|
| 134 |
+
{"loss": 0.0440999835729599, "grad_norm": 0.0362723171710968, "learning_rate": 9.185185185185186e-06, "entropy": 0.04479610063135624, "mean_token_accuracy": 0.9827097550034523, "num_tokens": 1875926.0, "epoch": 9.602006688963211, "step": 720}
|
| 135 |
+
{"loss": 0.044123375415802, "grad_norm": 0.03960822895169258, "learning_rate": 6.222222222222222e-06, "entropy": 0.04520800011232495, "mean_token_accuracy": 0.9823104426264763, "num_tokens": 1902227.0, "epoch": 9.735785953177258, "step": 730}
|
| 136 |
+
{"loss": 0.04401821792125702, "grad_norm": 0.03371009603142738, "learning_rate": 3.259259259259259e-06, "entropy": 0.04439304880797863, "mean_token_accuracy": 0.9820376738905907, "num_tokens": 1928651.0, "epoch": 9.869565217391305, "step": 740}
|
| 137 |
+
{"loss": 0.044789040088653566, "grad_norm": 0.04102063924074173, "learning_rate": 2.962962962962963e-07, "entropy": 0.045203205484610334, "mean_token_accuracy": 0.9820073674886655, "num_tokens": 1953690.0, "epoch": 10.0, "step": 750}
|
| 138 |
+
{"train_runtime": 3217.5242, "train_samples_per_second": 3.714, "train_steps_per_second": 0.233, "total_flos": 3.662638954482125e+17, "train_loss": 0.09439072036743164, "epoch": 10.0, "step": 750}
|
| 139 |
+
```
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Environment
|
| 143 |
+
|
| 144 |
+
| Package | Version |
|
| 145 |
+
|---------|---------|
|
| 146 |
+
| torch | 2.13.0 |
|
| 147 |
+
| transformers | 5.14.1 |
|
| 148 |
+
| trl | 1.9.2 |
|
| 149 |
+
| datasets | 5.0.1 |
|
| 150 |
+
| accelerate | 1.14.0 |
|
| 151 |
+
| python-dotenv | 1.2.2 |
|
| 152 |
+
| peft | 0.20.0 |
|
| 153 |
+
| bitsandbytes | 0.50.0 |
|
| 154 |
+
| huggingface-hub | ? |
|
| 155 |
+
| jinja2 | ? |
|
| 156 |
+
| torchvision | 0.28.0 |
|
| 157 |
+
| pillow | 12.3.0 |
|
| 158 |
+
|
| 159 |
+
|
| 160 |
+
## Intended use
|
| 161 |
+
|
| 162 |
+
This adapter is intended for **research purposes only** as part of the
|
| 163 |
+
[AIML589 project](https://github.com/1jamesthompson1/AIML589), which
|
| 164 |
+
investigates value alignment of LLMs with New Zealand population
|
| 165 |
+
distributions from the World Values Survey.
|
| 166 |
+
|
| 167 |
+
### Out-of-scope
|
| 168 |
+
|
| 169 |
+
This model has not been safety-tuned for general-purpose deployment.
|
| 170 |
+
It should not be used in production systems, for making decisions about
|
| 171 |
+
people, or in contexts where reliability and safety are critical.
|
| 172 |
+
|
| 173 |
+
## Limitations and biases
|
| 174 |
+
|
| 175 |
+
- Fine-tuned on a single WVS wave (Wave 7) for New Zealand only.
|
| 176 |
+
- The training data reflects the values of those who responded to the
|
| 177 |
+
survey and may not represent all New Zealanders.
|
| 178 |
+
- LoRA adapters are subject to the limitations and biases of the base
|
| 179 |
+
model ([Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B)).
|
adapter_config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Qwen/Qwen3.6-27B",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 512,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"monteclora_config": null,
|
| 27 |
+
"peft_type": "LORA",
|
| 28 |
+
"peft_version": "0.20.0",
|
| 29 |
+
"qalora_group_size": 16,
|
| 30 |
+
"r": 256,
|
| 31 |
+
"rank_pattern": {},
|
| 32 |
+
"revision": null,
|
| 33 |
+
"target_modules": [
|
| 34 |
+
"q_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"v_proj",
|
| 37 |
+
"gate_proj",
|
| 38 |
+
"up_proj",
|
| 39 |
+
"o_proj",
|
| 40 |
+
"down_proj"
|
| 41 |
+
],
|
| 42 |
+
"target_parameters": null,
|
| 43 |
+
"task_type": "CAUSAL_LM",
|
| 44 |
+
"trainable_token_indices": null,
|
| 45 |
+
"use_bdlora": null,
|
| 46 |
+
"use_dora": false,
|
| 47 |
+
"use_qalora": false,
|
| 48 |
+
"use_rslora": false,
|
| 49 |
+
"velora_config": null
|
| 50 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c80158e5e8c49405abbc9337b9717fe3ca759ba3d8c5e6da1a318312fef45fd4
|
| 3 |
+
size 5100343888
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,154 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set image_count = namespace(value=0) %}
|
| 2 |
+
{%- set video_count = namespace(value=0) %}
|
| 3 |
+
{%- macro render_content(content, do_vision_count, is_system_content=false) %}
|
| 4 |
+
{%- if content is string %}
|
| 5 |
+
{{- content }}
|
| 6 |
+
{%- elif content is iterable and content is not mapping %}
|
| 7 |
+
{%- for item in content %}
|
| 8 |
+
{%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
|
| 9 |
+
{%- if is_system_content %}
|
| 10 |
+
{{- raise_exception('System message cannot contain images.') }}
|
| 11 |
+
{%- endif %}
|
| 12 |
+
{%- if do_vision_count %}
|
| 13 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 14 |
+
{%- endif %}
|
| 15 |
+
{%- if add_vision_id %}
|
| 16 |
+
{{- 'Picture ' ~ image_count.value ~ ': ' }}
|
| 17 |
+
{%- endif %}
|
| 18 |
+
{{- '<|vision_start|><|image_pad|><|vision_end|>' }}
|
| 19 |
+
{%- elif 'video' in item or item.type == 'video' %}
|
| 20 |
+
{%- if is_system_content %}
|
| 21 |
+
{{- raise_exception('System message cannot contain videos.') }}
|
| 22 |
+
{%- endif %}
|
| 23 |
+
{%- if do_vision_count %}
|
| 24 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 25 |
+
{%- endif %}
|
| 26 |
+
{%- if add_vision_id %}
|
| 27 |
+
{{- 'Video ' ~ video_count.value ~ ': ' }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{{- '<|vision_start|><|video_pad|><|vision_end|>' }}
|
| 30 |
+
{%- elif 'text' in item %}
|
| 31 |
+
{{- item.text }}
|
| 32 |
+
{%- else %}
|
| 33 |
+
{{- raise_exception('Unexpected item type in content.') }}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{%- endfor %}
|
| 36 |
+
{%- elif content is none or content is undefined %}
|
| 37 |
+
{{- '' }}
|
| 38 |
+
{%- else %}
|
| 39 |
+
{{- raise_exception('Unexpected content type.') }}
|
| 40 |
+
{%- endif %}
|
| 41 |
+
{%- endmacro %}
|
| 42 |
+
{%- if not messages %}
|
| 43 |
+
{{- raise_exception('No messages provided.') }}
|
| 44 |
+
{%- endif %}
|
| 45 |
+
{%- if tools and tools is iterable and tools is not mapping %}
|
| 46 |
+
{{- '<|im_start|>system\n' }}
|
| 47 |
+
{{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
|
| 48 |
+
{%- for tool in tools %}
|
| 49 |
+
{{- "\n" }}
|
| 50 |
+
{{- tool | tojson }}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{{- "\n</tools>" }}
|
| 53 |
+
{{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
|
| 54 |
+
{%- if messages[0].role == 'system' %}
|
| 55 |
+
{%- set content = render_content(messages[0].content, false, true)|trim %}
|
| 56 |
+
{%- if content %}
|
| 57 |
+
{{- '\n\n' + content }}
|
| 58 |
+
{%- endif %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<|im_end|>\n' }}
|
| 61 |
+
{%- else %}
|
| 62 |
+
{%- if messages[0].role == 'system' %}
|
| 63 |
+
{%- set content = render_content(messages[0].content, false, true)|trim %}
|
| 64 |
+
{{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
|
| 65 |
+
{%- endif %}
|
| 66 |
+
{%- endif %}
|
| 67 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 68 |
+
{%- for message in messages[::-1] %}
|
| 69 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 70 |
+
{%- if ns.multi_step_tool and message.role == "user" %}
|
| 71 |
+
{%- set content = render_content(message.content, false)|trim %}
|
| 72 |
+
{%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
|
| 73 |
+
{%- set ns.multi_step_tool = false %}
|
| 74 |
+
{%- set ns.last_query_index = index %}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{%- endif %}
|
| 77 |
+
{%- endfor %}
|
| 78 |
+
{%- if ns.multi_step_tool %}
|
| 79 |
+
{{- raise_exception('No user query found in messages.') }}
|
| 80 |
+
{%- endif %}
|
| 81 |
+
{%- for message in messages %}
|
| 82 |
+
{%- set content = render_content(message.content, true)|trim %}
|
| 83 |
+
{%- if message.role == "system" %}
|
| 84 |
+
{%- if not loop.first %}
|
| 85 |
+
{{- raise_exception('System message must be at the beginning.') }}
|
| 86 |
+
{%- endif %}
|
| 87 |
+
{%- elif message.role == "user" %}
|
| 88 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 89 |
+
{%- elif message.role == "assistant" %}
|
| 90 |
+
{%- set reasoning_content = '' %}
|
| 91 |
+
{%- if message.reasoning_content is string %}
|
| 92 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 93 |
+
{%- else %}
|
| 94 |
+
{%- if '</think>' in content %}
|
| 95 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 96 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 97 |
+
{%- endif %}
|
| 98 |
+
{%- endif %}
|
| 99 |
+
{%- set reasoning_content = reasoning_content|trim %}
|
| 100 |
+
{%- if (preserve_thinking is defined and preserve_thinking is true) or (loop.index0 > ns.last_query_index) %}
|
| 101 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
|
| 102 |
+
{%- else %}
|
| 103 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 104 |
+
{%- endif %}
|
| 105 |
+
{%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
|
| 106 |
+
{%- for tool_call in message.tool_calls %}
|
| 107 |
+
{%- if tool_call.function is defined %}
|
| 108 |
+
{%- set tool_call = tool_call.function %}
|
| 109 |
+
{%- endif %}
|
| 110 |
+
{%- if loop.first %}
|
| 111 |
+
{%- if content|trim %}
|
| 112 |
+
{{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 113 |
+
{%- else %}
|
| 114 |
+
{{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 115 |
+
{%- endif %}
|
| 116 |
+
{%- else %}
|
| 117 |
+
{{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 118 |
+
{%- endif %}
|
| 119 |
+
{%- if tool_call.arguments is defined %}
|
| 120 |
+
{%- for args_name, args_value in tool_call.arguments|items %}
|
| 121 |
+
{{- '<parameter=' + args_name + '>\n' }}
|
| 122 |
+
{%- set args_value = args_value | string if args_value is string else args_value | tojson | safe %}
|
| 123 |
+
{{- args_value }}
|
| 124 |
+
{{- '\n</parameter>\n' }}
|
| 125 |
+
{%- endfor %}
|
| 126 |
+
{%- endif %}
|
| 127 |
+
{{- '</function>\n</tool_call>' }}
|
| 128 |
+
{%- endfor %}
|
| 129 |
+
{%- endif %}
|
| 130 |
+
{{- '<|im_end|>\n' }}
|
| 131 |
+
{%- elif message.role == "tool" %}
|
| 132 |
+
{%- if loop.previtem and loop.previtem.role != "tool" %}
|
| 133 |
+
{{- '<|im_start|>user' }}
|
| 134 |
+
{%- endif %}
|
| 135 |
+
{{- '\n<tool_response>\n' }}
|
| 136 |
+
{{- content }}
|
| 137 |
+
{{- '\n</tool_response>' }}
|
| 138 |
+
{%- if not loop.last and loop.nextitem.role != "tool" %}
|
| 139 |
+
{{- '<|im_end|>\n' }}
|
| 140 |
+
{%- elif loop.last %}
|
| 141 |
+
{{- '<|im_end|>\n' }}
|
| 142 |
+
{%- endif %}
|
| 143 |
+
{%- else %}
|
| 144 |
+
{{- raise_exception('Unexpected message role.') }}
|
| 145 |
+
{%- endif %}
|
| 146 |
+
{%- endfor %}
|
| 147 |
+
{%- if add_generation_prompt %}
|
| 148 |
+
{{- '<|im_start|>assistant\n' }}
|
| 149 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 150 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 151 |
+
{%- else %}
|
| 152 |
+
{{- '<think>\n' }}
|
| 153 |
+
{%- endif %}
|
| 154 |
+
{%- endif %}
|
environment.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"Jinja2": "3.1.6",
|
| 3 |
+
"MarkupSafe": "3.0.3",
|
| 4 |
+
"PyYAML": "6.0.3",
|
| 5 |
+
"Pygments": "2.20.0",
|
| 6 |
+
"accelerate": "1.14.0",
|
| 7 |
+
"aiohappyeyeballs": "2.7.1",
|
| 8 |
+
"aiohttp": "3.14.3",
|
| 9 |
+
"aiosignal": "1.4.0",
|
| 10 |
+
"annotated-doc": "0.0.5",
|
| 11 |
+
"anyio": "4.14.2",
|
| 12 |
+
"attrs": "26.1.0",
|
| 13 |
+
"bitsandbytes": "0.50.0",
|
| 14 |
+
"certifi": "2026.7.22",
|
| 15 |
+
"charset-normalizer": "3.4.9",
|
| 16 |
+
"click": "8.4.2",
|
| 17 |
+
"cuda-bindings": "13.3.1",
|
| 18 |
+
"cuda-pathfinder": "1.6.0",
|
| 19 |
+
"cuda-toolkit": "13.0.3.0",
|
| 20 |
+
"datasets": "5.0.1",
|
| 21 |
+
"dill": "0.4.1",
|
| 22 |
+
"filelock": "3.32.0",
|
| 23 |
+
"frozenlist": "1.8.0",
|
| 24 |
+
"fsspec": "2026.6.0",
|
| 25 |
+
"h11": "0.16.0",
|
| 26 |
+
"hf-xet": "1.5.2",
|
| 27 |
+
"httpcore": "1.0.9",
|
| 28 |
+
"httpx": "0.28.1",
|
| 29 |
+
"huggingface_hub": "1.25.1",
|
| 30 |
+
"idna": "3.18",
|
| 31 |
+
"markdown-it-py": "4.2.0",
|
| 32 |
+
"mdurl": "0.1.2",
|
| 33 |
+
"mpmath": "1.3.0",
|
| 34 |
+
"multidict": "6.7.1",
|
| 35 |
+
"multiprocess": "0.70.19",
|
| 36 |
+
"networkx": "3.6.1",
|
| 37 |
+
"numpy": "2.5.1",
|
| 38 |
+
"nvidia-cublas": "13.1.1.3",
|
| 39 |
+
"nvidia-cuda-cupti": "13.0.85",
|
| 40 |
+
"nvidia-cuda-nvrtc": "13.0.88",
|
| 41 |
+
"nvidia-cuda-runtime": "13.0.96",
|
| 42 |
+
"nvidia-cudnn-cu13": "9.20.0.48",
|
| 43 |
+
"nvidia-cufft": "12.0.0.61",
|
| 44 |
+
"nvidia-cufile": "1.15.1.6",
|
| 45 |
+
"nvidia-curand": "10.4.0.35",
|
| 46 |
+
"nvidia-cusolver": "12.0.4.66",
|
| 47 |
+
"nvidia-cusparse": "12.6.3.3",
|
| 48 |
+
"nvidia-cusparselt-cu13": "0.8.1",
|
| 49 |
+
"nvidia-nccl-cu13": "2.29.7",
|
| 50 |
+
"nvidia-nvjitlink": "13.3.33",
|
| 51 |
+
"nvidia-nvshmem-cu13": "3.4.5",
|
| 52 |
+
"nvidia-nvtx": "13.0.85",
|
| 53 |
+
"packaging": "26.2",
|
| 54 |
+
"pandas": "3.0.5",
|
| 55 |
+
"peft": "0.20.0",
|
| 56 |
+
"pillow": "12.3.0",
|
| 57 |
+
"propcache": "0.5.2",
|
| 58 |
+
"psutil": "7.2.2",
|
| 59 |
+
"pyarrow": "25.0.0",
|
| 60 |
+
"python-dateutil": "2.9.0.post0",
|
| 61 |
+
"python-dotenv": "1.2.2",
|
| 62 |
+
"regex": "2026.7.19",
|
| 63 |
+
"requests": "2.34.2",
|
| 64 |
+
"rich": "15.0.0",
|
| 65 |
+
"safetensors": "0.8.0",
|
| 66 |
+
"setuptools": "83.0.0",
|
| 67 |
+
"shellingham": "1.5.4",
|
| 68 |
+
"six": "1.17.0",
|
| 69 |
+
"sympy": "1.14.0",
|
| 70 |
+
"tokenizers": "0.22.2",
|
| 71 |
+
"torch": "2.13.0",
|
| 72 |
+
"torchvision": "0.28.0",
|
| 73 |
+
"tqdm": "4.70.0",
|
| 74 |
+
"transformers": "5.14.1",
|
| 75 |
+
"triton": "3.7.1",
|
| 76 |
+
"trl": "1.9.2",
|
| 77 |
+
"typer": "0.27.0",
|
| 78 |
+
"typing_extensions": "4.16.0",
|
| 79 |
+
"urllib3": "2.7.0",
|
| 80 |
+
"xxhash": "3.8.1",
|
| 81 |
+
"yarl": "1.24.5"
|
| 82 |
+
}
|
finetune_config.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model": "Qwen/Qwen3.6-27B",
|
| 3 |
+
"dataset": "single_sample",
|
| 4 |
+
"subpopulation": "cluster_0",
|
| 5 |
+
"library_name": "peft",
|
| 6 |
+
"pipeline_tag": "text-generation",
|
| 7 |
+
"timestamp": "2026-07-30T23:39:22.150075",
|
| 8 |
+
"hyperparameters": {
|
| 9 |
+
"lora_r": 256,
|
| 10 |
+
"lora_alpha": 512,
|
| 11 |
+
"lora_dropout": 0.05,
|
| 12 |
+
"dora": false,
|
| 13 |
+
"quantization": null,
|
| 14 |
+
"lr": 0.0002,
|
| 15 |
+
"num_epochs": 10,
|
| 16 |
+
"batch_size": 4,
|
| 17 |
+
"gradient_accumulation_steps": 4,
|
| 18 |
+
"max_seq_length": 1024,
|
| 19 |
+
"warmup_ratio": 0.1,
|
| 20 |
+
"dtype": "bf16"
|
| 21 |
+
}
|
| 22 |
+
}
|
processor_config.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"image_processor": {
|
| 3 |
+
"do_convert_rgb": true,
|
| 4 |
+
"do_normalize": true,
|
| 5 |
+
"do_rescale": true,
|
| 6 |
+
"do_resize": true,
|
| 7 |
+
"image_mean": [
|
| 8 |
+
0.5,
|
| 9 |
+
0.5,
|
| 10 |
+
0.5
|
| 11 |
+
],
|
| 12 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
| 13 |
+
"image_std": [
|
| 14 |
+
0.5,
|
| 15 |
+
0.5,
|
| 16 |
+
0.5
|
| 17 |
+
],
|
| 18 |
+
"merge_size": 2,
|
| 19 |
+
"patch_size": 16,
|
| 20 |
+
"resample": 3,
|
| 21 |
+
"rescale_factor": 0.00392156862745098,
|
| 22 |
+
"size": {
|
| 23 |
+
"longest_edge": 16777216,
|
| 24 |
+
"shortest_edge": 65536
|
| 25 |
+
},
|
| 26 |
+
"temporal_patch_size": 2
|
| 27 |
+
},
|
| 28 |
+
"processor_class": "Qwen3VLProcessor",
|
| 29 |
+
"video_processor": {
|
| 30 |
+
"do_convert_rgb": true,
|
| 31 |
+
"do_normalize": true,
|
| 32 |
+
"do_rescale": true,
|
| 33 |
+
"do_resize": true,
|
| 34 |
+
"do_sample_frames": true,
|
| 35 |
+
"fps": 2,
|
| 36 |
+
"image_mean": [
|
| 37 |
+
0.5,
|
| 38 |
+
0.5,
|
| 39 |
+
0.5
|
| 40 |
+
],
|
| 41 |
+
"image_std": [
|
| 42 |
+
0.5,
|
| 43 |
+
0.5,
|
| 44 |
+
0.5
|
| 45 |
+
],
|
| 46 |
+
"max_frames": 768,
|
| 47 |
+
"merge_size": 2,
|
| 48 |
+
"min_frames": 4,
|
| 49 |
+
"patch_size": 16,
|
| 50 |
+
"resample": 3,
|
| 51 |
+
"rescale_factor": 0.00392156862745098,
|
| 52 |
+
"return_metadata": false,
|
| 53 |
+
"size": {
|
| 54 |
+
"longest_edge": 25165824,
|
| 55 |
+
"shortest_edge": 4096
|
| 56 |
+
},
|
| 57 |
+
"temporal_patch_size": 2,
|
| 58 |
+
"video_processor_type": "Qwen3VLVideoProcessor"
|
| 59 |
+
}
|
| 60 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06b9509352d2af50381ab2247e083b80d32d5c0aba91c272ca9ff729b6a0e523
|
| 3 |
+
size 19989325
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"audio_bos_token": "<|audio_start|>",
|
| 4 |
+
"audio_eos_token": "<|audio_end|>",
|
| 5 |
+
"audio_token": "<|audio_pad|>",
|
| 6 |
+
"backend": "tokenizers",
|
| 7 |
+
"bos_token": null,
|
| 8 |
+
"clean_up_tokenization_spaces": false,
|
| 9 |
+
"eos_token": "<|im_end|>",
|
| 10 |
+
"errors": "replace",
|
| 11 |
+
"image_token": "<|image_pad|>",
|
| 12 |
+
"is_local": false,
|
| 13 |
+
"local_files_only": false,
|
| 14 |
+
"model_max_length": 262144,
|
| 15 |
+
"model_specific_special_tokens": {
|
| 16 |
+
"audio_bos_token": "<|audio_start|>",
|
| 17 |
+
"audio_eos_token": "<|audio_end|>",
|
| 18 |
+
"audio_token": "<|audio_pad|>",
|
| 19 |
+
"image_token": "<|image_pad|>",
|
| 20 |
+
"video_token": "<|video_pad|>",
|
| 21 |
+
"vision_bos_token": "<|vision_start|>",
|
| 22 |
+
"vision_eos_token": "<|vision_end|>"
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|endoftext|>",
|
| 25 |
+
"pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
|
| 26 |
+
"split_special_tokens": false,
|
| 27 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 28 |
+
"unk_token": null,
|
| 29 |
+
"video_token": "<|video_pad|>",
|
| 30 |
+
"vision_bos_token": "<|vision_start|>",
|
| 31 |
+
"vision_eos_token": "<|vision_end|>"
|
| 32 |
+
}
|
training.log
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
logging to output/single_sample/cluster_0/training.log
|
| 2 |
+
[sft] loading tokenizer...
|
| 3 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/config.json "HTTP/1.1 307 Temporary Redirect"
|
| 4 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/config.json "HTTP/1.1 200 OK"
|
| 5 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/tokenizer_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 6 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/tokenizer_config.json "HTTP/1.1 200 OK"
|
| 7 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/tokenizer_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 8 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/tokenizer_config.json "HTTP/1.1 200 OK"
|
| 9 |
+
HTTP Request: GET https://huggingface.co/api/models/Qwen/Qwen3.6-27B/tree/main/additional_chat_templates?recursive=false&expand=false "HTTP/1.1 404 Not Found"
|
| 10 |
+
HTTP Request: GET https://huggingface.co/api/models/Qwen/Qwen3.6-27B/tree/main?recursive=true&expand=false "HTTP/1.1 200 OK"
|
| 11 |
+
HTTP Request: GET https://huggingface.co/api/models/Qwen/Qwen3.6-27B "HTTP/1.1 200 OK"
|
| 12 |
+
[sft] loading model...
|
| 13 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/config.json "HTTP/1.1 307 Temporary Redirect"
|
| 14 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/config.json "HTTP/1.1 200 OK"
|
| 15 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/config.json "HTTP/1.1 307 Temporary Redirect"
|
| 16 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/config.json "HTTP/1.1 200 OK"
|
| 17 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/model.safetensors "HTTP/1.1 404 Not Found"
|
| 18 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/model.safetensors.index.json "HTTP/1.1 307 Temporary Redirect"
|
| 19 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/model.safetensors.index.json "HTTP/1.1 200 OK"
|
| 20 |
+
HTTP Request: GET https://huggingface.co/api/models/Qwen/Qwen3.6-27B/revision/main "HTTP/1.1 200 OK"
|
| 21 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/generation_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 22 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/generation_config.json "HTTP/1.1 200 OK"
|
| 23 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/custom_generate/generate.py "HTTP/1.1 404 Not Found"
|
| 24 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/processor_config.json "HTTP/1.1 404 Not Found"
|
| 25 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/preprocessor_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 26 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/preprocessor_config.json "HTTP/1.1 200 OK"
|
| 27 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/processor_config.json "HTTP/1.1 404 Not Found"
|
| 28 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/preprocessor_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 29 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/preprocessor_config.json "HTTP/1.1 200 OK"
|
| 30 |
+
HTTP Request: GET https://huggingface.co/api/models/Qwen/Qwen3.6-27B/tree/main/additional_chat_templates?recursive=false&expand=false "HTTP/1.1 404 Not Found"
|
| 31 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/processor_config.json "HTTP/1.1 404 Not Found"
|
| 32 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/chat_template.json "HTTP/1.1 404 Not Found"
|
| 33 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/chat_template.jinja "HTTP/1.1 307 Temporary Redirect"
|
| 34 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/chat_template.jinja "HTTP/1.1 200 OK"
|
| 35 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/audio_tokenizer_config.json "HTTP/1.1 404 Not Found"
|
| 36 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/processor_config.json "HTTP/1.1 404 Not Found"
|
| 37 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/preprocessor_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 38 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/preprocessor_config.json "HTTP/1.1 200 OK"
|
| 39 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/processor_config.json "HTTP/1.1 404 Not Found"
|
| 40 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/preprocessor_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 41 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/preprocessor_config.json "HTTP/1.1 200 OK"
|
| 42 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/config.json "HTTP/1.1 307 Temporary Redirect"
|
| 43 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/config.json "HTTP/1.1 200 OK"
|
| 44 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/tokenizer_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 45 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/tokenizer_config.json "HTTP/1.1 200 OK"
|
| 46 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/tokenizer_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 47 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/tokenizer_config.json "HTTP/1.1 200 OK"
|
| 48 |
+
HTTP Request: GET https://huggingface.co/api/models/Qwen/Qwen3.6-27B/tree/main/additional_chat_templates?recursive=false&expand=false "HTTP/1.1 404 Not Found"
|
| 49 |
+
HTTP Request: GET https://huggingface.co/api/models/Qwen/Qwen3.6-27B/tree/main?recursive=true&expand=false "HTTP/1.1 200 OK"
|
| 50 |
+
HTTP Request: GET https://huggingface.co/api/models/Qwen/Qwen3.6-27B "HTTP/1.1 200 OK"
|
| 51 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/processor_config.json "HTTP/1.1 404 Not Found"
|
| 52 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/video_preprocessor_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 53 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/video_preprocessor_config.json "HTTP/1.1 200 OK"
|
| 54 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/preprocessor_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 55 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/preprocessor_config.json "HTTP/1.1 200 OK"
|
| 56 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/processor_config.json "HTTP/1.1 404 Not Found"
|
| 57 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/video_preprocessor_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 58 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/video_preprocessor_config.json "HTTP/1.1 200 OK"
|
| 59 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/preprocessor_config.json "HTTP/1.1 307 Temporary Redirect"
|
| 60 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/preprocessor_config.json "HTTP/1.1 200 OK"
|
| 61 |
+
[sft] starting training...
|
| 62 |
+
HTTP Request: HEAD https://huggingface.co/api/telemetry/trl/SFTTrainer "HTTP/1.1 200 OK"
|
| 63 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/config.json "HTTP/1.1 307 Temporary Redirect"
|
| 64 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/config.json "HTTP/1.1 200 OK"
|
| 65 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/config.json "HTTP/1.1 307 Temporary Redirect"
|
| 66 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/config.json "HTTP/1.1 200 OK"
|
| 67 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/config.json "HTTP/1.1 307 Temporary Redirect"
|
| 68 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/config.json "HTTP/1.1 200 OK"
|
| 69 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/config.json "HTTP/1.1 307 Temporary Redirect"
|
| 70 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/config.json "HTTP/1.1 200 OK"
|
| 71 |
+
[sft] saving...
|
| 72 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/config.json "HTTP/1.1 307 Temporary Redirect"
|
| 73 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/config.json "HTTP/1.1 200 OK"
|
| 74 |
+
HTTP Request: HEAD https://huggingface.co/Qwen/Qwen3.6-27B/resolve/main/config.json "HTTP/1.1 307 Temporary Redirect"
|
| 75 |
+
HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/Qwen/Qwen3.6-27B/6a9e13bd6fc8f0983b9b99948120bc37f49c13e9/config.json "HTTP/1.1 200 OK"
|
| 76 |
+
saved to output/single_sample/cluster_0
|
| 77 |
+
gpu: NVIDIA RTX PRO 6000 Blackwell Workstation Edition time: 3218s
|
| 78 |
+
training log -> output/single_sample/cluster_0/training_log.json
|
| 79 |
+
run metadata -> output/single_sample/cluster_0/finetune_config.json
|
| 80 |
+
environment -> output/single_sample/cluster_0/environment.json
|
| 81 |
+
README -> output/single_sample/cluster_0/README.md
|
| 82 |
+
HTTP Request: POST https://huggingface.co/api/repos/create "HTTP/1.1 200 OK"
|
| 83 |
+
[upload] uploading output/single_sample/cluster_0 to https://huggingface.co/1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0...
|
| 84 |
+
HTTP Request: POST https://huggingface.co/api/validate-yaml "HTTP/1.1 200 OK"
|
| 85 |
+
HTTP Request: POST https://huggingface.co/api/models/1jamesthompson1/Qwen3.6-27B-nz-wvs-single_sample-cluster_0/preupload/main "HTTP/1.1 200 OK"
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd4c327a3e85fbbe3eac78baaf879b393914c659f7bf5becfee75442dabb097c
|
| 3 |
+
size 5713
|
training_log.json
ADDED
|
@@ -0,0 +1,761 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"loss": 2.341543960571289,
|
| 4 |
+
"grad_norm": 2.112253189086914,
|
| 5 |
+
"learning_rate": 2.4e-05,
|
| 6 |
+
"entropy": 0.9884634539484978,
|
| 7 |
+
"mean_token_accuracy": 0.5556907095015049,
|
| 8 |
+
"num_tokens": 25909.0,
|
| 9 |
+
"epoch": 0.13377926421404682,
|
| 10 |
+
"step": 10
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"loss": 0.3863301038742065,
|
| 14 |
+
"grad_norm": 2.2011115550994873,
|
| 15 |
+
"learning_rate": 5.0666666666666674e-05,
|
| 16 |
+
"entropy": 0.4089386660605669,
|
| 17 |
+
"mean_token_accuracy": 0.9011316433548927,
|
| 18 |
+
"num_tokens": 52070.0,
|
| 19 |
+
"epoch": 0.26755852842809363,
|
| 20 |
+
"step": 20
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"loss": 0.17976584434509277,
|
| 24 |
+
"grad_norm": 0.5207965970039368,
|
| 25 |
+
"learning_rate": 7.733333333333333e-05,
|
| 26 |
+
"entropy": 0.18403972331434487,
|
| 27 |
+
"mean_token_accuracy": 0.9493107855319977,
|
| 28 |
+
"num_tokens": 78405.0,
|
| 29 |
+
"epoch": 0.4013377926421405,
|
| 30 |
+
"step": 30
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"loss": 0.10954103469848633,
|
| 34 |
+
"grad_norm": 0.3419843316078186,
|
| 35 |
+
"learning_rate": 0.00010400000000000001,
|
| 36 |
+
"entropy": 0.11044432241469622,
|
| 37 |
+
"mean_token_accuracy": 0.9671209067106247,
|
| 38 |
+
"num_tokens": 104414.0,
|
| 39 |
+
"epoch": 0.5351170568561873,
|
| 40 |
+
"step": 40
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"loss": 0.09990320205688477,
|
| 44 |
+
"grad_norm": 0.33741509914398193,
|
| 45 |
+
"learning_rate": 0.00013066666666666668,
|
| 46 |
+
"entropy": 0.09925312716513872,
|
| 47 |
+
"mean_token_accuracy": 0.9688541933894157,
|
| 48 |
+
"num_tokens": 130830.0,
|
| 49 |
+
"epoch": 0.6688963210702341,
|
| 50 |
+
"step": 50
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"loss": 0.0990227460861206,
|
| 54 |
+
"grad_norm": 0.43753594160079956,
|
| 55 |
+
"learning_rate": 0.00015733333333333333,
|
| 56 |
+
"entropy": 0.0994369624182582,
|
| 57 |
+
"mean_token_accuracy": 0.9684862270951271,
|
| 58 |
+
"num_tokens": 156575.0,
|
| 59 |
+
"epoch": 0.802675585284281,
|
| 60 |
+
"step": 60
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"loss": 0.0771427571773529,
|
| 64 |
+
"grad_norm": 0.3096464276313782,
|
| 65 |
+
"learning_rate": 0.00018400000000000003,
|
| 66 |
+
"entropy": 0.07597130816429853,
|
| 67 |
+
"mean_token_accuracy": 0.9754018127918244,
|
| 68 |
+
"num_tokens": 182787.0,
|
| 69 |
+
"epoch": 0.9364548494983278,
|
| 70 |
+
"step": 70
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"loss": 0.08177689909934997,
|
| 74 |
+
"grad_norm": 1.9745781421661377,
|
| 75 |
+
"learning_rate": 0.00019881481481481483,
|
| 76 |
+
"entropy": 0.07385796203445165,
|
| 77 |
+
"mean_token_accuracy": 0.9744954705238342,
|
| 78 |
+
"num_tokens": 208722.0,
|
| 79 |
+
"epoch": 1.0668896321070234,
|
| 80 |
+
"step": 80
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"loss": 0.08656259775161743,
|
| 84 |
+
"grad_norm": 0.24118545651435852,
|
| 85 |
+
"learning_rate": 0.00019585185185185187,
|
| 86 |
+
"entropy": 0.0961530750617385,
|
| 87 |
+
"mean_token_accuracy": 0.9735429108142852,
|
| 88 |
+
"num_tokens": 234820.0,
|
| 89 |
+
"epoch": 1.2006688963210703,
|
| 90 |
+
"step": 90
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"loss": 0.07904126048088074,
|
| 94 |
+
"grad_norm": 1.4924163818359375,
|
| 95 |
+
"learning_rate": 0.0001928888888888889,
|
| 96 |
+
"entropy": 0.07621442535892128,
|
| 97 |
+
"mean_token_accuracy": 0.9752445220947266,
|
| 98 |
+
"num_tokens": 261255.0,
|
| 99 |
+
"epoch": 1.334448160535117,
|
| 100 |
+
"step": 100
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"loss": 0.1028050422668457,
|
| 104 |
+
"grad_norm": 0.22435367107391357,
|
| 105 |
+
"learning_rate": 0.00018992592592592593,
|
| 106 |
+
"entropy": 0.07814982496201991,
|
| 107 |
+
"mean_token_accuracy": 0.9725448682904243,
|
| 108 |
+
"num_tokens": 287420.0,
|
| 109 |
+
"epoch": 1.468227424749164,
|
| 110 |
+
"step": 110
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"loss": 0.06647659540176391,
|
| 114 |
+
"grad_norm": 0.16586251556873322,
|
| 115 |
+
"learning_rate": 0.00018696296296296297,
|
| 116 |
+
"entropy": 0.06741584213450551,
|
| 117 |
+
"mean_token_accuracy": 0.9774157494306565,
|
| 118 |
+
"num_tokens": 313385.0,
|
| 119 |
+
"epoch": 1.6020066889632107,
|
| 120 |
+
"step": 120
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"loss": 0.057019442319869995,
|
| 124 |
+
"grad_norm": 0.13507577776908875,
|
| 125 |
+
"learning_rate": 0.00018400000000000003,
|
| 126 |
+
"entropy": 0.05611985893920064,
|
| 127 |
+
"mean_token_accuracy": 0.9796610698103905,
|
| 128 |
+
"num_tokens": 340048.0,
|
| 129 |
+
"epoch": 1.7357859531772575,
|
| 130 |
+
"step": 130
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"loss": 0.061611056327819824,
|
| 134 |
+
"grad_norm": 0.2060474306344986,
|
| 135 |
+
"learning_rate": 0.00018103703703703706,
|
| 136 |
+
"entropy": 0.06344100441783666,
|
| 137 |
+
"mean_token_accuracy": 0.97853914052248,
|
| 138 |
+
"num_tokens": 365876.0,
|
| 139 |
+
"epoch": 1.8695652173913042,
|
| 140 |
+
"step": 140
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"loss": 0.061782336235046385,
|
| 144 |
+
"grad_norm": 0.3134608268737793,
|
| 145 |
+
"learning_rate": 0.0001780740740740741,
|
| 146 |
+
"entropy": 0.05643900770407457,
|
| 147 |
+
"mean_token_accuracy": 0.978085016592955,
|
| 148 |
+
"num_tokens": 390738.0,
|
| 149 |
+
"epoch": 2.0,
|
| 150 |
+
"step": 150
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"loss": 0.057867032289505,
|
| 154 |
+
"grad_norm": 0.33745983242988586,
|
| 155 |
+
"learning_rate": 0.00017511111111111113,
|
| 156 |
+
"entropy": 0.05852913670241833,
|
| 157 |
+
"mean_token_accuracy": 0.9795649841427803,
|
| 158 |
+
"num_tokens": 416830.0,
|
| 159 |
+
"epoch": 2.1337792642140467,
|
| 160 |
+
"step": 160
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"loss": 0.058108162879943845,
|
| 164 |
+
"grad_norm": 0.1164756640791893,
|
| 165 |
+
"learning_rate": 0.00017214814814814816,
|
| 166 |
+
"entropy": 0.0567542714998126,
|
| 167 |
+
"mean_token_accuracy": 0.9790374860167503,
|
| 168 |
+
"num_tokens": 443309.0,
|
| 169 |
+
"epoch": 2.2675585284280935,
|
| 170 |
+
"step": 170
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"loss": 0.05357828140258789,
|
| 174 |
+
"grad_norm": 0.12977160513401031,
|
| 175 |
+
"learning_rate": 0.0001691851851851852,
|
| 176 |
+
"entropy": 0.05269257873296738,
|
| 177 |
+
"mean_token_accuracy": 0.9791603803634643,
|
| 178 |
+
"num_tokens": 469381.0,
|
| 179 |
+
"epoch": 2.4013377926421406,
|
| 180 |
+
"step": 180
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"loss": 0.06209459900856018,
|
| 184 |
+
"grad_norm": 5.890456676483154,
|
| 185 |
+
"learning_rate": 0.00016622222222222223,
|
| 186 |
+
"entropy": 0.05242626103572547,
|
| 187 |
+
"mean_token_accuracy": 0.9787786990404129,
|
| 188 |
+
"num_tokens": 495823.0,
|
| 189 |
+
"epoch": 2.5351170568561874,
|
| 190 |
+
"step": 190
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"loss": 0.052966177463531494,
|
| 194 |
+
"grad_norm": 0.1879248023033142,
|
| 195 |
+
"learning_rate": 0.00016325925925925926,
|
| 196 |
+
"entropy": 0.05595421427860856,
|
| 197 |
+
"mean_token_accuracy": 0.9809569671750069,
|
| 198 |
+
"num_tokens": 521936.0,
|
| 199 |
+
"epoch": 2.668896321070234,
|
| 200 |
+
"step": 200
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"loss": 0.1533456563949585,
|
| 204 |
+
"grad_norm": 2.4737038612365723,
|
| 205 |
+
"learning_rate": 0.0001602962962962963,
|
| 206 |
+
"entropy": 0.09764697654172778,
|
| 207 |
+
"mean_token_accuracy": 0.9594999879598618,
|
| 208 |
+
"num_tokens": 547808.0,
|
| 209 |
+
"epoch": 2.802675585284281,
|
| 210 |
+
"step": 210
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"loss": 0.14215301275253295,
|
| 214 |
+
"grad_norm": 0.21627607941627502,
|
| 215 |
+
"learning_rate": 0.00015733333333333333,
|
| 216 |
+
"entropy": 0.09831915665417909,
|
| 217 |
+
"mean_token_accuracy": 0.96669692248106,
|
| 218 |
+
"num_tokens": 573896.0,
|
| 219 |
+
"epoch": 2.936454849498328,
|
| 220 |
+
"step": 220
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"loss": 0.07142106890678405,
|
| 224 |
+
"grad_norm": 0.24911274015903473,
|
| 225 |
+
"learning_rate": 0.0001543703703703704,
|
| 226 |
+
"entropy": 0.08219717662685956,
|
| 227 |
+
"mean_token_accuracy": 0.975415417781243,
|
| 228 |
+
"num_tokens": 599295.0,
|
| 229 |
+
"epoch": 3.0668896321070234,
|
| 230 |
+
"step": 230
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"loss": 0.06142540574073792,
|
| 234 |
+
"grad_norm": 2.818284273147583,
|
| 235 |
+
"learning_rate": 0.00015140740740740742,
|
| 236 |
+
"entropy": 0.06195763573050499,
|
| 237 |
+
"mean_token_accuracy": 0.978814198076725,
|
| 238 |
+
"num_tokens": 625594.0,
|
| 239 |
+
"epoch": 3.20066889632107,
|
| 240 |
+
"step": 240
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"loss": 0.09106510877609253,
|
| 244 |
+
"grad_norm": 0.3751987814903259,
|
| 245 |
+
"learning_rate": 0.00014844444444444445,
|
| 246 |
+
"entropy": 0.07343985894694924,
|
| 247 |
+
"mean_token_accuracy": 0.9736507266759873,
|
| 248 |
+
"num_tokens": 651379.0,
|
| 249 |
+
"epoch": 3.334448160535117,
|
| 250 |
+
"step": 250
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"loss": 0.06325957775115967,
|
| 254 |
+
"grad_norm": 3.0620086193084717,
|
| 255 |
+
"learning_rate": 0.0001454814814814815,
|
| 256 |
+
"entropy": 0.06504379613325,
|
| 257 |
+
"mean_token_accuracy": 0.9780099034309387,
|
| 258 |
+
"num_tokens": 677883.0,
|
| 259 |
+
"epoch": 3.468227424749164,
|
| 260 |
+
"step": 260
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"loss": 0.06386491656303406,
|
| 264 |
+
"grad_norm": 0.13123036921024323,
|
| 265 |
+
"learning_rate": 0.00014251851851851852,
|
| 266 |
+
"entropy": 0.06299111396074294,
|
| 267 |
+
"mean_token_accuracy": 0.9776420131325722,
|
| 268 |
+
"num_tokens": 703942.0,
|
| 269 |
+
"epoch": 3.6020066889632107,
|
| 270 |
+
"step": 270
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"loss": 0.07105348110198975,
|
| 274 |
+
"grad_norm": 0.16725099086761475,
|
| 275 |
+
"learning_rate": 0.00013955555555555558,
|
| 276 |
+
"entropy": 0.06523667583242058,
|
| 277 |
+
"mean_token_accuracy": 0.9771258398890496,
|
| 278 |
+
"num_tokens": 730355.0,
|
| 279 |
+
"epoch": 3.7357859531772575,
|
| 280 |
+
"step": 280
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"loss": 0.05892015695571899,
|
| 284 |
+
"grad_norm": 0.8018252849578857,
|
| 285 |
+
"learning_rate": 0.00013659259259259261,
|
| 286 |
+
"entropy": 0.06290404153987765,
|
| 287 |
+
"mean_token_accuracy": 0.9795312806963921,
|
| 288 |
+
"num_tokens": 756288.0,
|
| 289 |
+
"epoch": 3.869565217391304,
|
| 290 |
+
"step": 290
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"loss": 0.05513965487480164,
|
| 294 |
+
"grad_norm": 0.23648729920387268,
|
| 295 |
+
"learning_rate": 0.00013362962962962965,
|
| 296 |
+
"entropy": 0.05575119321927046,
|
| 297 |
+
"mean_token_accuracy": 0.980286703659938,
|
| 298 |
+
"num_tokens": 781476.0,
|
| 299 |
+
"epoch": 4.0,
|
| 300 |
+
"step": 300
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"loss": 0.049145272374153136,
|
| 304 |
+
"grad_norm": 0.23902687430381775,
|
| 305 |
+
"learning_rate": 0.00013066666666666668,
|
| 306 |
+
"entropy": 0.047657360602170226,
|
| 307 |
+
"mean_token_accuracy": 0.9813551798462867,
|
| 308 |
+
"num_tokens": 807995.0,
|
| 309 |
+
"epoch": 4.133779264214047,
|
| 310 |
+
"step": 310
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"loss": 0.052027386426925656,
|
| 314 |
+
"grad_norm": 0.08278259634971619,
|
| 315 |
+
"learning_rate": 0.00012770370370370371,
|
| 316 |
+
"entropy": 0.04914208557456732,
|
| 317 |
+
"mean_token_accuracy": 0.9807460099458695,
|
| 318 |
+
"num_tokens": 834211.0,
|
| 319 |
+
"epoch": 4.2675585284280935,
|
| 320 |
+
"step": 320
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"loss": 0.04958886206150055,
|
| 324 |
+
"grad_norm": 0.06415274739265442,
|
| 325 |
+
"learning_rate": 0.00012474074074074075,
|
| 326 |
+
"entropy": 0.05262458473443985,
|
| 327 |
+
"mean_token_accuracy": 0.9813323050737381,
|
| 328 |
+
"num_tokens": 860320.0,
|
| 329 |
+
"epoch": 4.40133779264214,
|
| 330 |
+
"step": 330
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"loss": 0.0506575882434845,
|
| 334 |
+
"grad_norm": 0.08827455341815948,
|
| 335 |
+
"learning_rate": 0.0001217777777777778,
|
| 336 |
+
"entropy": 0.049570453260093926,
|
| 337 |
+
"mean_token_accuracy": 0.9807545498013497,
|
| 338 |
+
"num_tokens": 886260.0,
|
| 339 |
+
"epoch": 4.535117056856187,
|
| 340 |
+
"step": 340
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"loss": 0.04992738664150238,
|
| 344 |
+
"grad_norm": 0.1842905879020691,
|
| 345 |
+
"learning_rate": 0.00011881481481481483,
|
| 346 |
+
"entropy": 0.049180435854941605,
|
| 347 |
+
"mean_token_accuracy": 0.9801862895488739,
|
| 348 |
+
"num_tokens": 912192.0,
|
| 349 |
+
"epoch": 4.668896321070234,
|
| 350 |
+
"step": 350
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"loss": 0.04837550222873688,
|
| 354 |
+
"grad_norm": 0.07146720588207245,
|
| 355 |
+
"learning_rate": 0.00011585185185185186,
|
| 356 |
+
"entropy": 0.04882028605788946,
|
| 357 |
+
"mean_token_accuracy": 0.9817976549267768,
|
| 358 |
+
"num_tokens": 938443.0,
|
| 359 |
+
"epoch": 4.802675585284281,
|
| 360 |
+
"step": 360
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"loss": 0.047449523210525514,
|
| 364 |
+
"grad_norm": 0.07254461199045181,
|
| 365 |
+
"learning_rate": 0.0001128888888888889,
|
| 366 |
+
"entropy": 0.04849126562476158,
|
| 367 |
+
"mean_token_accuracy": 0.9812644407153129,
|
| 368 |
+
"num_tokens": 964704.0,
|
| 369 |
+
"epoch": 4.936454849498328,
|
| 370 |
+
"step": 370
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"loss": 0.047966784238815306,
|
| 374 |
+
"grad_norm": 0.05580724775791168,
|
| 375 |
+
"learning_rate": 0.00010992592592592593,
|
| 376 |
+
"entropy": 0.04855830528033085,
|
| 377 |
+
"mean_token_accuracy": 0.9817173633819971,
|
| 378 |
+
"num_tokens": 989807.0,
|
| 379 |
+
"epoch": 5.066889632107023,
|
| 380 |
+
"step": 380
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"loss": 0.04565880596637726,
|
| 384 |
+
"grad_norm": 0.06281863152980804,
|
| 385 |
+
"learning_rate": 0.00010696296296296297,
|
| 386 |
+
"entropy": 0.04446020070463419,
|
| 387 |
+
"mean_token_accuracy": 0.98235524892807,
|
| 388 |
+
"num_tokens": 1016432.0,
|
| 389 |
+
"epoch": 5.20066889632107,
|
| 390 |
+
"step": 390
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"loss": 0.047007548809051516,
|
| 394 |
+
"grad_norm": 0.05037130042910576,
|
| 395 |
+
"learning_rate": 0.00010400000000000001,
|
| 396 |
+
"entropy": 0.046955365035682914,
|
| 397 |
+
"mean_token_accuracy": 0.9810686483979225,
|
| 398 |
+
"num_tokens": 1042595.0,
|
| 399 |
+
"epoch": 5.334448160535117,
|
| 400 |
+
"step": 400
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"loss": 0.04774223566055298,
|
| 404 |
+
"grad_norm": 0.05550120770931244,
|
| 405 |
+
"learning_rate": 0.00010103703703703704,
|
| 406 |
+
"entropy": 0.04687619395554066,
|
| 407 |
+
"mean_token_accuracy": 0.9813349410891533,
|
| 408 |
+
"num_tokens": 1068499.0,
|
| 409 |
+
"epoch": 5.468227424749164,
|
| 410 |
+
"step": 410
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"loss": 0.04721843302249908,
|
| 414 |
+
"grad_norm": 0.07114529609680176,
|
| 415 |
+
"learning_rate": 9.807407407407407e-05,
|
| 416 |
+
"entropy": 0.048110970109701154,
|
| 417 |
+
"mean_token_accuracy": 0.9819222643971444,
|
| 418 |
+
"num_tokens": 1094712.0,
|
| 419 |
+
"epoch": 5.602006688963211,
|
| 420 |
+
"step": 420
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"loss": 0.04641242623329163,
|
| 424 |
+
"grad_norm": 0.054782308638095856,
|
| 425 |
+
"learning_rate": 9.511111111111112e-05,
|
| 426 |
+
"entropy": 0.045364385657012465,
|
| 427 |
+
"mean_token_accuracy": 0.9820315048098565,
|
| 428 |
+
"num_tokens": 1121039.0,
|
| 429 |
+
"epoch": 5.735785953177258,
|
| 430 |
+
"step": 430
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"loss": 0.04601489901542664,
|
| 434 |
+
"grad_norm": 0.05270834639668465,
|
| 435 |
+
"learning_rate": 9.214814814814815e-05,
|
| 436 |
+
"entropy": 0.046417954843491316,
|
| 437 |
+
"mean_token_accuracy": 0.9826092898845673,
|
| 438 |
+
"num_tokens": 1147476.0,
|
| 439 |
+
"epoch": 5.869565217391305,
|
| 440 |
+
"step": 440
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"loss": 0.047896665334701535,
|
| 444 |
+
"grad_norm": 0.07369400560855865,
|
| 445 |
+
"learning_rate": 8.918518518518519e-05,
|
| 446 |
+
"entropy": 0.04759720369027211,
|
| 447 |
+
"mean_token_accuracy": 0.9811742412738311,
|
| 448 |
+
"num_tokens": 1172214.0,
|
| 449 |
+
"epoch": 6.0,
|
| 450 |
+
"step": 450
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"loss": 0.04460802972316742,
|
| 454 |
+
"grad_norm": 0.043926533311605453,
|
| 455 |
+
"learning_rate": 8.622222222222222e-05,
|
| 456 |
+
"entropy": 0.0450520227663219,
|
| 457 |
+
"mean_token_accuracy": 0.983108639717102,
|
| 458 |
+
"num_tokens": 1198481.0,
|
| 459 |
+
"epoch": 6.133779264214047,
|
| 460 |
+
"step": 460
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"loss": 0.04490154683589935,
|
| 464 |
+
"grad_norm": 0.049713313579559326,
|
| 465 |
+
"learning_rate": 8.325925925925925e-05,
|
| 466 |
+
"entropy": 0.043880753125995396,
|
| 467 |
+
"mean_token_accuracy": 0.981929925084114,
|
| 468 |
+
"num_tokens": 1225270.0,
|
| 469 |
+
"epoch": 6.2675585284280935,
|
| 470 |
+
"step": 470
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"loss": 0.04616124629974365,
|
| 474 |
+
"grad_norm": 0.04489952698349953,
|
| 475 |
+
"learning_rate": 8.02962962962963e-05,
|
| 476 |
+
"entropy": 0.04594219285063446,
|
| 477 |
+
"mean_token_accuracy": 0.9817362502217293,
|
| 478 |
+
"num_tokens": 1251191.0,
|
| 479 |
+
"epoch": 6.40133779264214,
|
| 480 |
+
"step": 480
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"loss": 0.04496528506278992,
|
| 484 |
+
"grad_norm": 0.04445449262857437,
|
| 485 |
+
"learning_rate": 7.733333333333333e-05,
|
| 486 |
+
"entropy": 0.045685965567827225,
|
| 487 |
+
"mean_token_accuracy": 0.9831607535481452,
|
| 488 |
+
"num_tokens": 1277832.0,
|
| 489 |
+
"epoch": 6.535117056856187,
|
| 490 |
+
"step": 490
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"loss": 0.04584149122238159,
|
| 494 |
+
"grad_norm": 0.05437646806240082,
|
| 495 |
+
"learning_rate": 7.437037037037038e-05,
|
| 496 |
+
"entropy": 0.04615831598639488,
|
| 497 |
+
"mean_token_accuracy": 0.9816597178578377,
|
| 498 |
+
"num_tokens": 1304203.0,
|
| 499 |
+
"epoch": 6.668896321070234,
|
| 500 |
+
"step": 500
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"loss": 0.04616081714630127,
|
| 504 |
+
"grad_norm": 0.04138358682394028,
|
| 505 |
+
"learning_rate": 7.140740740740741e-05,
|
| 506 |
+
"entropy": 0.04780284911394119,
|
| 507 |
+
"mean_token_accuracy": 0.9815138846635818,
|
| 508 |
+
"num_tokens": 1330059.0,
|
| 509 |
+
"epoch": 6.802675585284281,
|
| 510 |
+
"step": 510
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"loss": 0.047184526920318604,
|
| 514 |
+
"grad_norm": 0.05079558491706848,
|
| 515 |
+
"learning_rate": 6.844444444444445e-05,
|
| 516 |
+
"entropy": 0.04507539812475443,
|
| 517 |
+
"mean_token_accuracy": 0.9809173971414566,
|
| 518 |
+
"num_tokens": 1355654.0,
|
| 519 |
+
"epoch": 6.936454849498328,
|
| 520 |
+
"step": 520
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"loss": 0.045189327001571654,
|
| 524 |
+
"grad_norm": 0.04889153689146042,
|
| 525 |
+
"learning_rate": 6.54814814814815e-05,
|
| 526 |
+
"entropy": 0.04632591761839695,
|
| 527 |
+
"mean_token_accuracy": 0.9823385003285531,
|
| 528 |
+
"num_tokens": 1380740.0,
|
| 529 |
+
"epoch": 7.066889632107023,
|
| 530 |
+
"step": 530
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"loss": 0.046108204126358035,
|
| 534 |
+
"grad_norm": 0.06250233948230743,
|
| 535 |
+
"learning_rate": 6.251851851851853e-05,
|
| 536 |
+
"entropy": 0.047147559747099874,
|
| 537 |
+
"mean_token_accuracy": 0.9815558344125748,
|
| 538 |
+
"num_tokens": 1406229.0,
|
| 539 |
+
"epoch": 7.20066889632107,
|
| 540 |
+
"step": 540
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"loss": 0.04495341181755066,
|
| 544 |
+
"grad_norm": 0.04576072841882706,
|
| 545 |
+
"learning_rate": 5.9555555555555554e-05,
|
| 546 |
+
"entropy": 0.04380973177030682,
|
| 547 |
+
"mean_token_accuracy": 0.9825871646404266,
|
| 548 |
+
"num_tokens": 1432718.0,
|
| 549 |
+
"epoch": 7.334448160535117,
|
| 550 |
+
"step": 550
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"loss": 0.04445241391658783,
|
| 554 |
+
"grad_norm": 0.03827248513698578,
|
| 555 |
+
"learning_rate": 5.6592592592592594e-05,
|
| 556 |
+
"entropy": 0.04404275622218847,
|
| 557 |
+
"mean_token_accuracy": 0.9829956665635109,
|
| 558 |
+
"num_tokens": 1459141.0,
|
| 559 |
+
"epoch": 7.468227424749164,
|
| 560 |
+
"step": 560
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"loss": 0.04570685029029846,
|
| 564 |
+
"grad_norm": 0.03917380049824715,
|
| 565 |
+
"learning_rate": 5.362962962962963e-05,
|
| 566 |
+
"entropy": 0.04583866978064179,
|
| 567 |
+
"mean_token_accuracy": 0.9810639604926109,
|
| 568 |
+
"num_tokens": 1485265.0,
|
| 569 |
+
"epoch": 7.602006688963211,
|
| 570 |
+
"step": 570
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"loss": 0.04584062099456787,
|
| 574 |
+
"grad_norm": 0.04370535910129547,
|
| 575 |
+
"learning_rate": 5.0666666666666674e-05,
|
| 576 |
+
"entropy": 0.04647259535267949,
|
| 577 |
+
"mean_token_accuracy": 0.9812271296977997,
|
| 578 |
+
"num_tokens": 1511176.0,
|
| 579 |
+
"epoch": 7.735785953177258,
|
| 580 |
+
"step": 580
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"loss": 0.045942744612693785,
|
| 584 |
+
"grad_norm": 0.049611467868089676,
|
| 585 |
+
"learning_rate": 4.770370370370371e-05,
|
| 586 |
+
"entropy": 0.045514973998069766,
|
| 587 |
+
"mean_token_accuracy": 0.9814796030521393,
|
| 588 |
+
"num_tokens": 1537083.0,
|
| 589 |
+
"epoch": 7.869565217391305,
|
| 590 |
+
"step": 590
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"loss": 0.04436405599117279,
|
| 594 |
+
"grad_norm": 0.044528670608997345,
|
| 595 |
+
"learning_rate": 4.474074074074075e-05,
|
| 596 |
+
"entropy": 0.04354679699127491,
|
| 597 |
+
"mean_token_accuracy": 0.9819874656506073,
|
| 598 |
+
"num_tokens": 1562952.0,
|
| 599 |
+
"epoch": 8.0,
|
| 600 |
+
"step": 600
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"loss": 0.044945243000984195,
|
| 604 |
+
"grad_norm": 0.045649204403162,
|
| 605 |
+
"learning_rate": 4.177777777777778e-05,
|
| 606 |
+
"entropy": 0.04686344414949417,
|
| 607 |
+
"mean_token_accuracy": 0.9817773103713989,
|
| 608 |
+
"num_tokens": 1588851.0,
|
| 609 |
+
"epoch": 8.133779264214047,
|
| 610 |
+
"step": 610
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"loss": 0.04427960515022278,
|
| 614 |
+
"grad_norm": 0.043687306344509125,
|
| 615 |
+
"learning_rate": 3.8814814814814814e-05,
|
| 616 |
+
"entropy": 0.04569701394066215,
|
| 617 |
+
"mean_token_accuracy": 0.9820200949907303,
|
| 618 |
+
"num_tokens": 1615149.0,
|
| 619 |
+
"epoch": 8.267558528428093,
|
| 620 |
+
"step": 620
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"loss": 0.0447018563747406,
|
| 624 |
+
"grad_norm": 0.04362299293279648,
|
| 625 |
+
"learning_rate": 3.5851851851851854e-05,
|
| 626 |
+
"entropy": 0.04486168110743165,
|
| 627 |
+
"mean_token_accuracy": 0.9820230007171631,
|
| 628 |
+
"num_tokens": 1641174.0,
|
| 629 |
+
"epoch": 8.40133779264214,
|
| 630 |
+
"step": 630
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"loss": 0.04458645284175873,
|
| 634 |
+
"grad_norm": 0.04046420380473137,
|
| 635 |
+
"learning_rate": 3.2888888888888894e-05,
|
| 636 |
+
"entropy": 0.044725227542221545,
|
| 637 |
+
"mean_token_accuracy": 0.9823110207915307,
|
| 638 |
+
"num_tokens": 1667583.0,
|
| 639 |
+
"epoch": 8.535117056856187,
|
| 640 |
+
"step": 640
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"loss": 0.044426333904266355,
|
| 644 |
+
"grad_norm": 0.036781083792448044,
|
| 645 |
+
"learning_rate": 2.992592592592593e-05,
|
| 646 |
+
"entropy": 0.04480462055653334,
|
| 647 |
+
"mean_token_accuracy": 0.9823192492127418,
|
| 648 |
+
"num_tokens": 1694027.0,
|
| 649 |
+
"epoch": 8.668896321070234,
|
| 650 |
+
"step": 650
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"loss": 0.045354658365249635,
|
| 654 |
+
"grad_norm": 0.03921104222536087,
|
| 655 |
+
"learning_rate": 2.696296296296296e-05,
|
| 656 |
+
"entropy": 0.04497002325952053,
|
| 657 |
+
"mean_token_accuracy": 0.9815022855997085,
|
| 658 |
+
"num_tokens": 1719962.0,
|
| 659 |
+
"epoch": 8.80267558528428,
|
| 660 |
+
"step": 660
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"loss": 0.04457056820392609,
|
| 664 |
+
"grad_norm": 0.03931435942649841,
|
| 665 |
+
"learning_rate": 2.4e-05,
|
| 666 |
+
"entropy": 0.044097188767045735,
|
| 667 |
+
"mean_token_accuracy": 0.9824405118823052,
|
| 668 |
+
"num_tokens": 1746249.0,
|
| 669 |
+
"epoch": 8.936454849498327,
|
| 670 |
+
"step": 670
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"loss": 0.04478446841239929,
|
| 674 |
+
"grad_norm": 0.032005202025175095,
|
| 675 |
+
"learning_rate": 2.1037037037037037e-05,
|
| 676 |
+
"entropy": 0.045094484893175274,
|
| 677 |
+
"mean_token_accuracy": 0.9815951723318833,
|
| 678 |
+
"num_tokens": 1771309.0,
|
| 679 |
+
"epoch": 9.066889632107024,
|
| 680 |
+
"step": 680
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"loss": 0.04368177354335785,
|
| 684 |
+
"grad_norm": 0.03807147592306137,
|
| 685 |
+
"learning_rate": 1.8074074074074074e-05,
|
| 686 |
+
"entropy": 0.04654490072280169,
|
| 687 |
+
"mean_token_accuracy": 0.9825977519154548,
|
| 688 |
+
"num_tokens": 1797647.0,
|
| 689 |
+
"epoch": 9.200668896321071,
|
| 690 |
+
"step": 690
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"loss": 0.043600788712501524,
|
| 694 |
+
"grad_norm": 0.03561871498823166,
|
| 695 |
+
"learning_rate": 1.5111111111111112e-05,
|
| 696 |
+
"entropy": 0.04407275160774589,
|
| 697 |
+
"mean_token_accuracy": 0.9828053265810013,
|
| 698 |
+
"num_tokens": 1824009.0,
|
| 699 |
+
"epoch": 9.334448160535118,
|
| 700 |
+
"step": 700
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"loss": 0.04528459906578064,
|
| 704 |
+
"grad_norm": 0.03744061291217804,
|
| 705 |
+
"learning_rate": 1.2148148148148149e-05,
|
| 706 |
+
"entropy": 0.04444531872868538,
|
| 707 |
+
"mean_token_accuracy": 0.9812339514493942,
|
| 708 |
+
"num_tokens": 1849648.0,
|
| 709 |
+
"epoch": 9.468227424749164,
|
| 710 |
+
"step": 710
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"loss": 0.0440999835729599,
|
| 714 |
+
"grad_norm": 0.0362723171710968,
|
| 715 |
+
"learning_rate": 9.185185185185186e-06,
|
| 716 |
+
"entropy": 0.04479610063135624,
|
| 717 |
+
"mean_token_accuracy": 0.9827097550034523,
|
| 718 |
+
"num_tokens": 1875926.0,
|
| 719 |
+
"epoch": 9.602006688963211,
|
| 720 |
+
"step": 720
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"loss": 0.044123375415802,
|
| 724 |
+
"grad_norm": 0.03960822895169258,
|
| 725 |
+
"learning_rate": 6.222222222222222e-06,
|
| 726 |
+
"entropy": 0.04520800011232495,
|
| 727 |
+
"mean_token_accuracy": 0.9823104426264763,
|
| 728 |
+
"num_tokens": 1902227.0,
|
| 729 |
+
"epoch": 9.735785953177258,
|
| 730 |
+
"step": 730
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"loss": 0.04401821792125702,
|
| 734 |
+
"grad_norm": 0.03371009603142738,
|
| 735 |
+
"learning_rate": 3.259259259259259e-06,
|
| 736 |
+
"entropy": 0.04439304880797863,
|
| 737 |
+
"mean_token_accuracy": 0.9820376738905907,
|
| 738 |
+
"num_tokens": 1928651.0,
|
| 739 |
+
"epoch": 9.869565217391305,
|
| 740 |
+
"step": 740
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"loss": 0.044789040088653566,
|
| 744 |
+
"grad_norm": 0.04102063924074173,
|
| 745 |
+
"learning_rate": 2.962962962962963e-07,
|
| 746 |
+
"entropy": 0.045203205484610334,
|
| 747 |
+
"mean_token_accuracy": 0.9820073674886655,
|
| 748 |
+
"num_tokens": 1953690.0,
|
| 749 |
+
"epoch": 10.0,
|
| 750 |
+
"step": 750
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"train_runtime": 3217.5242,
|
| 754 |
+
"train_samples_per_second": 3.714,
|
| 755 |
+
"train_steps_per_second": 0.233,
|
| 756 |
+
"total_flos": 3.662638954482125e+17,
|
| 757 |
+
"train_loss": 0.09439072036743164,
|
| 758 |
+
"epoch": 10.0,
|
| 759 |
+
"step": 750
|
| 760 |
+
}
|
| 761 |
+
]
|