Text Generation
Transformers
Safetensors
qwen3
alignment-handbook
orpo
Generated from Trainer
conversational
text-generation-inference
Instructions to use seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128") model = AutoModelForCausalLM.from_pretrained("seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128", 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 seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128
- SGLang
How to use seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128 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 "seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128" \ --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": "seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128", "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 "seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128" \ --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": "seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128 with Docker Model Runner:
docker model run hf.co/seanyhan/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128
Duplicate from jackf857/qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128
Browse files- .gitattributes +36 -0
- README.md +79 -0
- added_tokens.json +28 -0
- all_results.json +25 -0
- config.json +30 -0
- eval_results.json +19 -0
- generation_config.json +6 -0
- merges.txt +0 -0
- model-00001-of-00007.safetensors +3 -0
- model-00002-of-00007.safetensors +3 -0
- model-00003-of-00007.safetensors +3 -0
- model-00004-of-00007.safetensors +3 -0
- model-00005-of-00007.safetensors +3 -0
- model-00006-of-00007.safetensors +3 -0
- model-00007-of-00007.safetensors +3 -0
- model.safetensors.index.json +406 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +240 -0
- train_results.json +9 -0
- trainer_state.json +945 -0
- vocab.json +0 -0
.gitattributes
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz 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,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
base_model: jackf857/qwen3-8b-base-sft-ultrachat-4xh200-batch-128
|
| 4 |
+
tags:
|
| 5 |
+
- alignment-handbook
|
| 6 |
+
- orpo
|
| 7 |
+
- generated_from_trainer
|
| 8 |
+
datasets:
|
| 9 |
+
- HuggingFaceH4/ultrafeedback_binarized
|
| 10 |
+
model-index:
|
| 11 |
+
- name: qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128
|
| 12 |
+
results: []
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 16 |
+
should probably proofread and complete it, then remove this comment. -->
|
| 17 |
+
|
| 18 |
+
# qwen3-8b-base-orpo-ultrafeedback-4xh200-batch-128
|
| 19 |
+
|
| 20 |
+
This model is a fine-tuned version of [jackf857/qwen3-8b-base-sft-ultrachat-4xh200-batch-128](https://huggingface.co/jackf857/qwen3-8b-base-sft-ultrachat-4xh200-batch-128) on the HuggingFaceH4/ultrafeedback_binarized dataset.
|
| 21 |
+
It achieves the following results on the evaluation set:
|
| 22 |
+
- Loss: 1.0784
|
| 23 |
+
- Rewards/chosen: -0.0085
|
| 24 |
+
- Rewards/rejected: -0.0105
|
| 25 |
+
- Rewards/accuracies: 0.6060
|
| 26 |
+
- Rewards/margins: 0.0020
|
| 27 |
+
- Logps/rejected: -1.0496
|
| 28 |
+
- Logps/chosen: -0.8523
|
| 29 |
+
- Logits/rejected: 2.1915
|
| 30 |
+
- Logits/chosen: 2.1569
|
| 31 |
+
- Nll Loss: 1.1100
|
| 32 |
+
- Log Odds Ratio: -0.6630
|
| 33 |
+
- Log Odds Chosen: 0.3031
|
| 34 |
+
|
| 35 |
+
## Model description
|
| 36 |
+
|
| 37 |
+
More information needed
|
| 38 |
+
|
| 39 |
+
## Intended uses & limitations
|
| 40 |
+
|
| 41 |
+
More information needed
|
| 42 |
+
|
| 43 |
+
## Training and evaluation data
|
| 44 |
+
|
| 45 |
+
More information needed
|
| 46 |
+
|
| 47 |
+
## Training procedure
|
| 48 |
+
|
| 49 |
+
### Training hyperparameters
|
| 50 |
+
|
| 51 |
+
The following hyperparameters were used during training:
|
| 52 |
+
- learning_rate: 5e-07
|
| 53 |
+
- train_batch_size: 4
|
| 54 |
+
- eval_batch_size: 2
|
| 55 |
+
- seed: 42
|
| 56 |
+
- distributed_type: multi-GPU
|
| 57 |
+
- num_devices: 4
|
| 58 |
+
- gradient_accumulation_steps: 8
|
| 59 |
+
- total_train_batch_size: 128
|
| 60 |
+
- total_eval_batch_size: 8
|
| 61 |
+
- optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
| 62 |
+
- lr_scheduler_type: cosine
|
| 63 |
+
- lr_scheduler_warmup_ratio: 0.1
|
| 64 |
+
- num_epochs: 1
|
| 65 |
+
|
| 66 |
+
### Training results
|
| 67 |
+
|
| 68 |
+
| Training Loss | Epoch | Step | Validation Loss | Rewards/chosen | Rewards/rejected | Rewards/accuracies | Rewards/margins | Logps/rejected | Logps/chosen | Logits/rejected | Logits/chosen | Nll Loss | Log Odds Ratio | Log Odds Chosen |
|
| 69 |
+
|:-------------:|:------:|:----:|:---------------:|:--------------:|:----------------:|:------------------:|:---------------:|:--------------:|:------------:|:---------------:|:-------------:|:--------:|:--------------:|:---------------:|
|
| 70 |
+
| 8.6911 | 0.4188 | 200 | 1.0935 | -0.0086 | -0.0106 | 0.6100 | 0.0020 | -1.0645 | -0.8642 | 2.0572 | 2.0427 | 1.1233 | -0.6611 | 0.3058 |
|
| 71 |
+
| 8.6763 | 0.8377 | 400 | 1.0784 | -0.0085 | -0.0105 | 0.6060 | 0.0020 | -1.0496 | -0.8523 | 2.1915 | 2.1569 | 1.1100 | -0.6630 | 0.3031 |
|
| 72 |
+
|
| 73 |
+
|
| 74 |
+
### Framework versions
|
| 75 |
+
|
| 76 |
+
- Transformers 4.51.0
|
| 77 |
+
- Pytorch 2.3.1+cu121
|
| 78 |
+
- Datasets 2.21.0
|
| 79 |
+
- Tokenizers 0.21.4
|
added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
all_results.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 0.9989528795811519,
|
| 3 |
+
"eval_log_odds_chosen": 0.30259791016578674,
|
| 4 |
+
"eval_log_odds_ratio": -0.6631017923355103,
|
| 5 |
+
"eval_logits/chosen": 2.102327585220337,
|
| 6 |
+
"eval_logits/rejected": 2.1291346549987793,
|
| 7 |
+
"eval_logps/chosen": -0.8522344827651978,
|
| 8 |
+
"eval_logps/rejected": -1.0493180751800537,
|
| 9 |
+
"eval_loss": 1.078126072883606,
|
| 10 |
+
"eval_nll_loss": 1.1097657680511475,
|
| 11 |
+
"eval_rewards/accuracies": 0.6039999723434448,
|
| 12 |
+
"eval_rewards/chosen": -0.008522345684468746,
|
| 13 |
+
"eval_rewards/margins": 0.0019708359614014626,
|
| 14 |
+
"eval_rewards/rejected": -0.010493181645870209,
|
| 15 |
+
"eval_runtime": 45.1175,
|
| 16 |
+
"eval_samples": 2000,
|
| 17 |
+
"eval_samples_per_second": 44.329,
|
| 18 |
+
"eval_steps_per_second": 5.541,
|
| 19 |
+
"total_flos": 0.0,
|
| 20 |
+
"train_loss": 8.957356926780077,
|
| 21 |
+
"train_runtime": 5488.1377,
|
| 22 |
+
"train_samples": 61135,
|
| 23 |
+
"train_samples_per_second": 11.139,
|
| 24 |
+
"train_steps_per_second": 0.087
|
| 25 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 151643,
|
| 8 |
+
"eos_token_id": 151643,
|
| 9 |
+
"head_dim": 128,
|
| 10 |
+
"hidden_act": "silu",
|
| 11 |
+
"hidden_size": 4096,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 12288,
|
| 14 |
+
"max_position_embeddings": 32768,
|
| 15 |
+
"max_window_layers": 36,
|
| 16 |
+
"model_type": "qwen3",
|
| 17 |
+
"num_attention_heads": 32,
|
| 18 |
+
"num_hidden_layers": 36,
|
| 19 |
+
"num_key_value_heads": 8,
|
| 20 |
+
"rms_norm_eps": 1e-06,
|
| 21 |
+
"rope_scaling": null,
|
| 22 |
+
"rope_theta": 1000000,
|
| 23 |
+
"sliding_window": null,
|
| 24 |
+
"tie_word_embeddings": false,
|
| 25 |
+
"torch_dtype": "float32",
|
| 26 |
+
"transformers_version": "4.51.0",
|
| 27 |
+
"use_cache": true,
|
| 28 |
+
"use_sliding_window": false,
|
| 29 |
+
"vocab_size": 151936
|
| 30 |
+
}
|
eval_results.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 0.9989528795811519,
|
| 3 |
+
"eval_log_odds_chosen": 0.30259791016578674,
|
| 4 |
+
"eval_log_odds_ratio": -0.6631017923355103,
|
| 5 |
+
"eval_logits/chosen": 2.102327585220337,
|
| 6 |
+
"eval_logits/rejected": 2.1291346549987793,
|
| 7 |
+
"eval_logps/chosen": -0.8522344827651978,
|
| 8 |
+
"eval_logps/rejected": -1.0493180751800537,
|
| 9 |
+
"eval_loss": 1.078126072883606,
|
| 10 |
+
"eval_nll_loss": 1.1097657680511475,
|
| 11 |
+
"eval_rewards/accuracies": 0.6039999723434448,
|
| 12 |
+
"eval_rewards/chosen": -0.008522345684468746,
|
| 13 |
+
"eval_rewards/margins": 0.0019708359614014626,
|
| 14 |
+
"eval_rewards/rejected": -0.010493181645870209,
|
| 15 |
+
"eval_runtime": 45.1175,
|
| 16 |
+
"eval_samples": 2000,
|
| 17 |
+
"eval_samples_per_second": 44.329,
|
| 18 |
+
"eval_steps_per_second": 5.541
|
| 19 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"eos_token_id": 151643,
|
| 4 |
+
"max_new_tokens": 2048,
|
| 5 |
+
"transformers_version": "4.51.0"
|
| 6 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b34ce7e8d5bddbb623298f21edf9a77e88de0914698a83e2a8d405b8ba6eaae
|
| 3 |
+
size 4972454376
|
model-00002-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7d1a45633d6ee74bf8b4cd8a4db940fdba477973f16a9d30024ef8302f6652a
|
| 3 |
+
size 4832048608
|
model-00003-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5710fb92dca332274c400cc98d5c83756f37ac0c486e1fb3eed6fdf786832d6c
|
| 3 |
+
size 4832048656
|
model-00004-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:877563ca53becff9e66fa54c4fa217516ff3ff227f00e5dafc02618f829c7a0d
|
| 3 |
+
size 4999855528
|
model-00005-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f684cec998a1560203ad3e24571eeea2bb7a5754125afddd438319a6c08360d1
|
| 3 |
+
size 4832048672
|
model-00006-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0cf325503c7e50313ac00b54ba1679e3ebc2faf81ccff481c846d4b1c11c744b
|
| 3 |
+
size 4832048672
|
model-00007-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb7f1699b477cacd5b779ae7e7fe0f32447a7751431cffe4e88135fad8623492
|
| 3 |
+
size 3462482728
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,406 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 32762941440
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "model-00007-of-00007.safetensors",
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00007.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00007.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00007.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.k_norm.weight": "model-00001-of-00007.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00007.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.q_norm.weight": "model-00001-of-00007.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00007.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00007.safetensors",
|
| 19 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
|
| 21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00007.safetensors",
|
| 22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00007.safetensors",
|
| 23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 24 |
+
"model.layers.1.self_attn.k_norm.weight": "model-00001-of-00007.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00007.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.q_norm.weight": "model-00001-of-00007.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00007.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00007.safetensors",
|
| 30 |
+
"model.layers.10.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 31 |
+
"model.layers.10.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 32 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
|
| 33 |
+
"model.layers.10.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
|
| 34 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 35 |
+
"model.layers.10.self_attn.k_norm.weight": "model-00003-of-00007.safetensors",
|
| 36 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.q_norm.weight": "model-00003-of-00007.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
|
| 41 |
+
"model.layers.11.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 42 |
+
"model.layers.11.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 43 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
|
| 44 |
+
"model.layers.11.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
|
| 45 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 46 |
+
"model.layers.11.self_attn.k_norm.weight": "model-00003-of-00007.safetensors",
|
| 47 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
|
| 48 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.q_norm.weight": "model-00003-of-00007.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
|
| 52 |
+
"model.layers.12.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 53 |
+
"model.layers.12.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 54 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
|
| 55 |
+
"model.layers.12.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
|
| 56 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 57 |
+
"model.layers.12.self_attn.k_norm.weight": "model-00003-of-00007.safetensors",
|
| 58 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
|
| 59 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 60 |
+
"model.layers.12.self_attn.q_norm.weight": "model-00003-of-00007.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
|
| 63 |
+
"model.layers.13.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 64 |
+
"model.layers.13.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 65 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
|
| 66 |
+
"model.layers.13.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
|
| 67 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 68 |
+
"model.layers.13.self_attn.k_norm.weight": "model-00003-of-00007.safetensors",
|
| 69 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
|
| 70 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 71 |
+
"model.layers.13.self_attn.q_norm.weight": "model-00003-of-00007.safetensors",
|
| 72 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
|
| 74 |
+
"model.layers.14.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 75 |
+
"model.layers.14.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 76 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
|
| 77 |
+
"model.layers.14.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
|
| 78 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 79 |
+
"model.layers.14.self_attn.k_norm.weight": "model-00003-of-00007.safetensors",
|
| 80 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
|
| 81 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 82 |
+
"model.layers.14.self_attn.q_norm.weight": "model-00003-of-00007.safetensors",
|
| 83 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
|
| 84 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
|
| 85 |
+
"model.layers.15.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 86 |
+
"model.layers.15.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 87 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
|
| 88 |
+
"model.layers.15.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
|
| 89 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 90 |
+
"model.layers.15.self_attn.k_norm.weight": "model-00003-of-00007.safetensors",
|
| 91 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
|
| 92 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 93 |
+
"model.layers.15.self_attn.q_norm.weight": "model-00003-of-00007.safetensors",
|
| 94 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
|
| 95 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
|
| 96 |
+
"model.layers.16.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 97 |
+
"model.layers.16.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 98 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
|
| 99 |
+
"model.layers.16.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
|
| 100 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 101 |
+
"model.layers.16.self_attn.k_norm.weight": "model-00004-of-00007.safetensors",
|
| 102 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
|
| 103 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 104 |
+
"model.layers.16.self_attn.q_norm.weight": "model-00004-of-00007.safetensors",
|
| 105 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
|
| 106 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
|
| 107 |
+
"model.layers.17.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 108 |
+
"model.layers.17.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 109 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
|
| 110 |
+
"model.layers.17.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
|
| 111 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 112 |
+
"model.layers.17.self_attn.k_norm.weight": "model-00004-of-00007.safetensors",
|
| 113 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
|
| 114 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 115 |
+
"model.layers.17.self_attn.q_norm.weight": "model-00004-of-00007.safetensors",
|
| 116 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
|
| 117 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
|
| 118 |
+
"model.layers.18.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 119 |
+
"model.layers.18.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 120 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
|
| 121 |
+
"model.layers.18.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
|
| 122 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 123 |
+
"model.layers.18.self_attn.k_norm.weight": "model-00004-of-00007.safetensors",
|
| 124 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
|
| 125 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 126 |
+
"model.layers.18.self_attn.q_norm.weight": "model-00004-of-00007.safetensors",
|
| 127 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
|
| 128 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
|
| 129 |
+
"model.layers.19.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 130 |
+
"model.layers.19.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 131 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
|
| 132 |
+
"model.layers.19.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
|
| 133 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 134 |
+
"model.layers.19.self_attn.k_norm.weight": "model-00004-of-00007.safetensors",
|
| 135 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
|
| 136 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 137 |
+
"model.layers.19.self_attn.q_norm.weight": "model-00004-of-00007.safetensors",
|
| 138 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
|
| 139 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
|
| 140 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 141 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
|
| 142 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00007.safetensors",
|
| 143 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00007.safetensors",
|
| 144 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 145 |
+
"model.layers.2.self_attn.k_norm.weight": "model-00001-of-00007.safetensors",
|
| 146 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00007.safetensors",
|
| 147 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
|
| 148 |
+
"model.layers.2.self_attn.q_norm.weight": "model-00001-of-00007.safetensors",
|
| 149 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00007.safetensors",
|
| 150 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00007.safetensors",
|
| 151 |
+
"model.layers.20.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 152 |
+
"model.layers.20.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 153 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
|
| 154 |
+
"model.layers.20.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
|
| 155 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 156 |
+
"model.layers.20.self_attn.k_norm.weight": "model-00004-of-00007.safetensors",
|
| 157 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
|
| 158 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 159 |
+
"model.layers.20.self_attn.q_norm.weight": "model-00004-of-00007.safetensors",
|
| 160 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
|
| 161 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
|
| 162 |
+
"model.layers.21.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 163 |
+
"model.layers.21.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 164 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
|
| 165 |
+
"model.layers.21.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
|
| 166 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 167 |
+
"model.layers.21.self_attn.k_norm.weight": "model-00004-of-00007.safetensors",
|
| 168 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
|
| 169 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 170 |
+
"model.layers.21.self_attn.q_norm.weight": "model-00004-of-00007.safetensors",
|
| 171 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
|
| 172 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
|
| 173 |
+
"model.layers.22.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 174 |
+
"model.layers.22.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 175 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
|
| 176 |
+
"model.layers.22.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
|
| 177 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 178 |
+
"model.layers.22.self_attn.k_norm.weight": "model-00004-of-00007.safetensors",
|
| 179 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
|
| 180 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 181 |
+
"model.layers.22.self_attn.q_norm.weight": "model-00004-of-00007.safetensors",
|
| 182 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
|
| 183 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
|
| 184 |
+
"model.layers.23.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 185 |
+
"model.layers.23.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 186 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
|
| 187 |
+
"model.layers.23.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
|
| 188 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 189 |
+
"model.layers.23.self_attn.k_norm.weight": "model-00005-of-00007.safetensors",
|
| 190 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
|
| 191 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 192 |
+
"model.layers.23.self_attn.q_norm.weight": "model-00005-of-00007.safetensors",
|
| 193 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
|
| 194 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
|
| 195 |
+
"model.layers.24.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 196 |
+
"model.layers.24.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 197 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
|
| 198 |
+
"model.layers.24.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
|
| 199 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 200 |
+
"model.layers.24.self_attn.k_norm.weight": "model-00005-of-00007.safetensors",
|
| 201 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
|
| 202 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 203 |
+
"model.layers.24.self_attn.q_norm.weight": "model-00005-of-00007.safetensors",
|
| 204 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
|
| 205 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
|
| 206 |
+
"model.layers.25.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 207 |
+
"model.layers.25.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 208 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
|
| 209 |
+
"model.layers.25.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
|
| 210 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 211 |
+
"model.layers.25.self_attn.k_norm.weight": "model-00005-of-00007.safetensors",
|
| 212 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
|
| 213 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 214 |
+
"model.layers.25.self_attn.q_norm.weight": "model-00005-of-00007.safetensors",
|
| 215 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
|
| 216 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
|
| 217 |
+
"model.layers.26.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 218 |
+
"model.layers.26.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 219 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
|
| 220 |
+
"model.layers.26.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
|
| 221 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 222 |
+
"model.layers.26.self_attn.k_norm.weight": "model-00005-of-00007.safetensors",
|
| 223 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
|
| 224 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 225 |
+
"model.layers.26.self_attn.q_norm.weight": "model-00005-of-00007.safetensors",
|
| 226 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
|
| 227 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
|
| 228 |
+
"model.layers.27.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 229 |
+
"model.layers.27.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 230 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
|
| 231 |
+
"model.layers.27.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
|
| 232 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 233 |
+
"model.layers.27.self_attn.k_norm.weight": "model-00005-of-00007.safetensors",
|
| 234 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
|
| 235 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 236 |
+
"model.layers.27.self_attn.q_norm.weight": "model-00005-of-00007.safetensors",
|
| 237 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
|
| 238 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
|
| 239 |
+
"model.layers.28.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 240 |
+
"model.layers.28.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 241 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
|
| 242 |
+
"model.layers.28.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
|
| 243 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 244 |
+
"model.layers.28.self_attn.k_norm.weight": "model-00005-of-00007.safetensors",
|
| 245 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
|
| 246 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 247 |
+
"model.layers.28.self_attn.q_norm.weight": "model-00005-of-00007.safetensors",
|
| 248 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
|
| 249 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
|
| 250 |
+
"model.layers.29.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 251 |
+
"model.layers.29.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 252 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00006-of-00007.safetensors",
|
| 253 |
+
"model.layers.29.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
|
| 254 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 255 |
+
"model.layers.29.self_attn.k_norm.weight": "model-00006-of-00007.safetensors",
|
| 256 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00006-of-00007.safetensors",
|
| 257 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 258 |
+
"model.layers.29.self_attn.q_norm.weight": "model-00006-of-00007.safetensors",
|
| 259 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00006-of-00007.safetensors",
|
| 260 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00006-of-00007.safetensors",
|
| 261 |
+
"model.layers.3.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 262 |
+
"model.layers.3.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 263 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
|
| 264 |
+
"model.layers.3.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
|
| 265 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 266 |
+
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00007.safetensors",
|
| 267 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00007.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00007.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00007.safetensors",
|
| 271 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00007.safetensors",
|
| 272 |
+
"model.layers.30.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 273 |
+
"model.layers.30.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 274 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00006-of-00007.safetensors",
|
| 275 |
+
"model.layers.30.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
|
| 276 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 277 |
+
"model.layers.30.self_attn.k_norm.weight": "model-00006-of-00007.safetensors",
|
| 278 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00006-of-00007.safetensors",
|
| 279 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 280 |
+
"model.layers.30.self_attn.q_norm.weight": "model-00006-of-00007.safetensors",
|
| 281 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00006-of-00007.safetensors",
|
| 282 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00006-of-00007.safetensors",
|
| 283 |
+
"model.layers.31.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 284 |
+
"model.layers.31.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 285 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00006-of-00007.safetensors",
|
| 286 |
+
"model.layers.31.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
|
| 287 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 288 |
+
"model.layers.31.self_attn.k_norm.weight": "model-00006-of-00007.safetensors",
|
| 289 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00006-of-00007.safetensors",
|
| 290 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 291 |
+
"model.layers.31.self_attn.q_norm.weight": "model-00006-of-00007.safetensors",
|
| 292 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00006-of-00007.safetensors",
|
| 293 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00006-of-00007.safetensors",
|
| 294 |
+
"model.layers.32.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 295 |
+
"model.layers.32.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 296 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00006-of-00007.safetensors",
|
| 297 |
+
"model.layers.32.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
|
| 298 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 299 |
+
"model.layers.32.self_attn.k_norm.weight": "model-00006-of-00007.safetensors",
|
| 300 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00006-of-00007.safetensors",
|
| 301 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 302 |
+
"model.layers.32.self_attn.q_norm.weight": "model-00006-of-00007.safetensors",
|
| 303 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00006-of-00007.safetensors",
|
| 304 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00006-of-00007.safetensors",
|
| 305 |
+
"model.layers.33.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 306 |
+
"model.layers.33.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 307 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00006-of-00007.safetensors",
|
| 308 |
+
"model.layers.33.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
|
| 309 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 310 |
+
"model.layers.33.self_attn.k_norm.weight": "model-00006-of-00007.safetensors",
|
| 311 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00006-of-00007.safetensors",
|
| 312 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 313 |
+
"model.layers.33.self_attn.q_norm.weight": "model-00006-of-00007.safetensors",
|
| 314 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00006-of-00007.safetensors",
|
| 315 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00006-of-00007.safetensors",
|
| 316 |
+
"model.layers.34.input_layernorm.weight": "model-00007-of-00007.safetensors",
|
| 317 |
+
"model.layers.34.mlp.down_proj.weight": "model-00007-of-00007.safetensors",
|
| 318 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00006-of-00007.safetensors",
|
| 319 |
+
"model.layers.34.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
|
| 320 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00007-of-00007.safetensors",
|
| 321 |
+
"model.layers.34.self_attn.k_norm.weight": "model-00006-of-00007.safetensors",
|
| 322 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00006-of-00007.safetensors",
|
| 323 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 324 |
+
"model.layers.34.self_attn.q_norm.weight": "model-00006-of-00007.safetensors",
|
| 325 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00006-of-00007.safetensors",
|
| 326 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00006-of-00007.safetensors",
|
| 327 |
+
"model.layers.35.input_layernorm.weight": "model-00007-of-00007.safetensors",
|
| 328 |
+
"model.layers.35.mlp.down_proj.weight": "model-00007-of-00007.safetensors",
|
| 329 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00007-of-00007.safetensors",
|
| 330 |
+
"model.layers.35.mlp.up_proj.weight": "model-00007-of-00007.safetensors",
|
| 331 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00007-of-00007.safetensors",
|
| 332 |
+
"model.layers.35.self_attn.k_norm.weight": "model-00007-of-00007.safetensors",
|
| 333 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00007-of-00007.safetensors",
|
| 334 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00007-of-00007.safetensors",
|
| 335 |
+
"model.layers.35.self_attn.q_norm.weight": "model-00007-of-00007.safetensors",
|
| 336 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00007-of-00007.safetensors",
|
| 337 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00007-of-00007.safetensors",
|
| 338 |
+
"model.layers.4.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 339 |
+
"model.layers.4.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 340 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
|
| 341 |
+
"model.layers.4.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
|
| 342 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 343 |
+
"model.layers.4.self_attn.k_norm.weight": "model-00002-of-00007.safetensors",
|
| 344 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
|
| 345 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 346 |
+
"model.layers.4.self_attn.q_norm.weight": "model-00002-of-00007.safetensors",
|
| 347 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
|
| 348 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
|
| 349 |
+
"model.layers.5.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 350 |
+
"model.layers.5.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 351 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
|
| 352 |
+
"model.layers.5.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
|
| 353 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 354 |
+
"model.layers.5.self_attn.k_norm.weight": "model-00002-of-00007.safetensors",
|
| 355 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
|
| 356 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 357 |
+
"model.layers.5.self_attn.q_norm.weight": "model-00002-of-00007.safetensors",
|
| 358 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
|
| 359 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
|
| 360 |
+
"model.layers.6.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 361 |
+
"model.layers.6.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 362 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
|
| 363 |
+
"model.layers.6.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
|
| 364 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 365 |
+
"model.layers.6.self_attn.k_norm.weight": "model-00002-of-00007.safetensors",
|
| 366 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
|
| 367 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 368 |
+
"model.layers.6.self_attn.q_norm.weight": "model-00002-of-00007.safetensors",
|
| 369 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
|
| 370 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
|
| 371 |
+
"model.layers.7.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 372 |
+
"model.layers.7.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 373 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
|
| 374 |
+
"model.layers.7.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
|
| 375 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 376 |
+
"model.layers.7.self_attn.k_norm.weight": "model-00002-of-00007.safetensors",
|
| 377 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
|
| 378 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 379 |
+
"model.layers.7.self_attn.q_norm.weight": "model-00002-of-00007.safetensors",
|
| 380 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
|
| 381 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
|
| 382 |
+
"model.layers.8.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 383 |
+
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 384 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
|
| 385 |
+
"model.layers.8.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
|
| 386 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 387 |
+
"model.layers.8.self_attn.k_norm.weight": "model-00002-of-00007.safetensors",
|
| 388 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
|
| 389 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 390 |
+
"model.layers.8.self_attn.q_norm.weight": "model-00002-of-00007.safetensors",
|
| 391 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
|
| 392 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
|
| 393 |
+
"model.layers.9.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 394 |
+
"model.layers.9.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 395 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
|
| 396 |
+
"model.layers.9.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
|
| 397 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 398 |
+
"model.layers.9.self_attn.k_norm.weight": "model-00002-of-00007.safetensors",
|
| 399 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
|
| 400 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 401 |
+
"model.layers.9.self_attn.q_norm.weight": "model-00002-of-00007.safetensors",
|
| 402 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
|
| 403 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
|
| 404 |
+
"model.norm.weight": "model-00007-of-00007.safetensors"
|
| 405 |
+
}
|
| 406 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|endoftext|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
|
| 3 |
+
size 11422654
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,240 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {{- messages[0].content + '\\n\\n' }}\n {%- endif %}\n {{- \"# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0].content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- if ns.multi_step_tool and message.role == \"user\" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n{%- endfor %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set content = message.content %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is defined and message.reasoning_content is not none %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in message.content %}\n {%- set content = message.content.split('</think>')[-1].lstrip('\\n') %}\n {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- if loop.index0 > ns.last_query_index %}\n {%- if loop.last or (not loop.last and reasoning_content) %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content.strip('\\n') + '\\n</think>\\n\\n' + content.lstrip('\\n') }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\\n\\n</think>\\n\\n' }}\n {%- endif %}\n{%- endif %}",
|
| 231 |
+
"clean_up_tokenization_spaces": false,
|
| 232 |
+
"eos_token": "<|endoftext|>",
|
| 233 |
+
"errors": "replace",
|
| 234 |
+
"extra_special_tokens": {},
|
| 235 |
+
"model_max_length": 2048,
|
| 236 |
+
"pad_token": "<|endoftext|>",
|
| 237 |
+
"split_special_tokens": false,
|
| 238 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 239 |
+
"unk_token": null
|
| 240 |
+
}
|
train_results.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 0.9989528795811519,
|
| 3 |
+
"total_flos": 0.0,
|
| 4 |
+
"train_loss": 8.957356926780077,
|
| 5 |
+
"train_runtime": 5488.1377,
|
| 6 |
+
"train_samples": 61135,
|
| 7 |
+
"train_samples_per_second": 11.139,
|
| 8 |
+
"train_steps_per_second": 0.087
|
| 9 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,945 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.9989528795811519,
|
| 6 |
+
"eval_steps": 200,
|
| 7 |
+
"global_step": 477,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.0020942408376963353,
|
| 14 |
+
"grad_norm": 37.46305465698242,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"log_odds_chosen": 0.35378384590148926,
|
| 17 |
+
"log_odds_ratio": -0.6519296765327454,
|
| 18 |
+
"logits/chosen": 2.203179359436035,
|
| 19 |
+
"logits/rejected": 2.035616397857666,
|
| 20 |
+
"logps/chosen": -1.1535288095474243,
|
| 21 |
+
"logps/rejected": -1.4391145706176758,
|
| 22 |
+
"loss": 10.2211,
|
| 23 |
+
"nll_loss": 1.4494060277938843,
|
| 24 |
+
"rewards/accuracies": 0.6875,
|
| 25 |
+
"rewards/chosen": -0.011535286903381348,
|
| 26 |
+
"rewards/margins": 0.002855856902897358,
|
| 27 |
+
"rewards/rejected": -0.014391143806278706,
|
| 28 |
+
"step": 1
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"epoch": 0.020942408376963352,
|
| 32 |
+
"grad_norm": 37.87759780883789,
|
| 33 |
+
"learning_rate": 9.375e-08,
|
| 34 |
+
"log_odds_chosen": 0.30660638213157654,
|
| 35 |
+
"log_odds_ratio": -0.662986159324646,
|
| 36 |
+
"logits/chosen": 1.9456572532653809,
|
| 37 |
+
"logits/rejected": 1.8670408725738525,
|
| 38 |
+
"logps/chosen": -1.1083024740219116,
|
| 39 |
+
"logps/rejected": -1.3244930505752563,
|
| 40 |
+
"loss": 10.1264,
|
| 41 |
+
"nll_loss": 1.2528527975082397,
|
| 42 |
+
"rewards/accuracies": 0.6076388955116272,
|
| 43 |
+
"rewards/chosen": -0.011083023622632027,
|
| 44 |
+
"rewards/margins": 0.002161906799301505,
|
| 45 |
+
"rewards/rejected": -0.013244930654764175,
|
| 46 |
+
"step": 10
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.041884816753926704,
|
| 50 |
+
"grad_norm": 40.62479782104492,
|
| 51 |
+
"learning_rate": 1.9791666666666664e-07,
|
| 52 |
+
"log_odds_chosen": 0.26383697986602783,
|
| 53 |
+
"log_odds_ratio": -0.6774462461471558,
|
| 54 |
+
"logits/chosen": 1.8936617374420166,
|
| 55 |
+
"logits/rejected": 1.8155641555786133,
|
| 56 |
+
"logps/chosen": -1.129002332687378,
|
| 57 |
+
"logps/rejected": -1.3111597299575806,
|
| 58 |
+
"loss": 9.8951,
|
| 59 |
+
"nll_loss": 1.2187750339508057,
|
| 60 |
+
"rewards/accuracies": 0.574999988079071,
|
| 61 |
+
"rewards/chosen": -0.011290023103356361,
|
| 62 |
+
"rewards/margins": 0.001821571378968656,
|
| 63 |
+
"rewards/rejected": -0.013111594133079052,
|
| 64 |
+
"step": 20
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"epoch": 0.06282722513089005,
|
| 68 |
+
"grad_norm": 36.72233963012695,
|
| 69 |
+
"learning_rate": 3.020833333333333e-07,
|
| 70 |
+
"log_odds_chosen": 0.15129676461219788,
|
| 71 |
+
"log_odds_ratio": -0.7099167704582214,
|
| 72 |
+
"logits/chosen": 1.9489176273345947,
|
| 73 |
+
"logits/rejected": 1.9070332050323486,
|
| 74 |
+
"logps/chosen": -1.0984728336334229,
|
| 75 |
+
"logps/rejected": -1.2049810886383057,
|
| 76 |
+
"loss": 10.154,
|
| 77 |
+
"nll_loss": 1.2440111637115479,
|
| 78 |
+
"rewards/accuracies": 0.578125,
|
| 79 |
+
"rewards/chosen": -0.010984729044139385,
|
| 80 |
+
"rewards/margins": 0.0010650831973180175,
|
| 81 |
+
"rewards/rejected": -0.012049810960888863,
|
| 82 |
+
"step": 30
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.08376963350785341,
|
| 86 |
+
"grad_norm": 31.673852920532227,
|
| 87 |
+
"learning_rate": 4.0625e-07,
|
| 88 |
+
"log_odds_chosen": 0.2637297511100769,
|
| 89 |
+
"log_odds_ratio": -0.6847748160362244,
|
| 90 |
+
"logits/chosen": 1.778116226196289,
|
| 91 |
+
"logits/rejected": 1.79119873046875,
|
| 92 |
+
"logps/chosen": -1.0361906290054321,
|
| 93 |
+
"logps/rejected": -1.2129265069961548,
|
| 94 |
+
"loss": 9.5835,
|
| 95 |
+
"nll_loss": 1.1749727725982666,
|
| 96 |
+
"rewards/accuracies": 0.590624988079071,
|
| 97 |
+
"rewards/chosen": -0.010361905209720135,
|
| 98 |
+
"rewards/margins": 0.0017673596739768982,
|
| 99 |
+
"rewards/rejected": -0.012129265815019608,
|
| 100 |
+
"step": 40
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.10471204188481675,
|
| 104 |
+
"grad_norm": 16.47711753845215,
|
| 105 |
+
"learning_rate": 4.999932966293553e-07,
|
| 106 |
+
"log_odds_chosen": 0.3281434178352356,
|
| 107 |
+
"log_odds_ratio": -0.6789900064468384,
|
| 108 |
+
"logits/chosen": 1.996852159500122,
|
| 109 |
+
"logits/rejected": 2.0322041511535645,
|
| 110 |
+
"logps/chosen": -0.9071202278137207,
|
| 111 |
+
"logps/rejected": -1.1231104135513306,
|
| 112 |
+
"loss": 9.6245,
|
| 113 |
+
"nll_loss": 1.200535535812378,
|
| 114 |
+
"rewards/accuracies": 0.581250011920929,
|
| 115 |
+
"rewards/chosen": -0.009071202017366886,
|
| 116 |
+
"rewards/margins": 0.0021599007304757833,
|
| 117 |
+
"rewards/rejected": -0.011231102980673313,
|
| 118 |
+
"step": 50
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.1256544502617801,
|
| 122 |
+
"grad_norm": 17.272981643676758,
|
| 123 |
+
"learning_rate": 4.991893270335525e-07,
|
| 124 |
+
"log_odds_chosen": 0.2221679985523224,
|
| 125 |
+
"log_odds_ratio": -0.7138159275054932,
|
| 126 |
+
"logits/chosen": 1.8936437368392944,
|
| 127 |
+
"logits/rejected": 1.8823055028915405,
|
| 128 |
+
"logps/chosen": -0.9890943765640259,
|
| 129 |
+
"logps/rejected": -1.1324011087417603,
|
| 130 |
+
"loss": 9.5413,
|
| 131 |
+
"nll_loss": 1.162929892539978,
|
| 132 |
+
"rewards/accuracies": 0.5406249761581421,
|
| 133 |
+
"rewards/chosen": -0.009890943765640259,
|
| 134 |
+
"rewards/margins": 0.0014330670237541199,
|
| 135 |
+
"rewards/rejected": -0.011324010789394379,
|
| 136 |
+
"step": 60
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.14659685863874344,
|
| 140 |
+
"grad_norm": 12.330283164978027,
|
| 141 |
+
"learning_rate": 4.970496218214204e-07,
|
| 142 |
+
"log_odds_chosen": 0.27448800206184387,
|
| 143 |
+
"log_odds_ratio": -0.697861909866333,
|
| 144 |
+
"logits/chosen": 2.0014004707336426,
|
| 145 |
+
"logits/rejected": 2.046846866607666,
|
| 146 |
+
"logps/chosen": -0.961329460144043,
|
| 147 |
+
"logps/rejected": -1.1528202295303345,
|
| 148 |
+
"loss": 9.2376,
|
| 149 |
+
"nll_loss": 1.1857097148895264,
|
| 150 |
+
"rewards/accuracies": 0.578125,
|
| 151 |
+
"rewards/chosen": -0.009613295085728168,
|
| 152 |
+
"rewards/margins": 0.0019149081781506538,
|
| 153 |
+
"rewards/rejected": -0.011528202332556248,
|
| 154 |
+
"step": 70
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"epoch": 0.16753926701570682,
|
| 158 |
+
"grad_norm": 11.02938175201416,
|
| 159 |
+
"learning_rate": 4.935856505068998e-07,
|
| 160 |
+
"log_odds_chosen": 0.31524786353111267,
|
| 161 |
+
"log_odds_ratio": -0.6606825590133667,
|
| 162 |
+
"logits/chosen": 1.8413927555084229,
|
| 163 |
+
"logits/rejected": 1.8493198156356812,
|
| 164 |
+
"logps/chosen": -0.9049292802810669,
|
| 165 |
+
"logps/rejected": -1.0926640033721924,
|
| 166 |
+
"loss": 8.9813,
|
| 167 |
+
"nll_loss": 1.1445410251617432,
|
| 168 |
+
"rewards/accuracies": 0.6312500238418579,
|
| 169 |
+
"rewards/chosen": -0.009049292653799057,
|
| 170 |
+
"rewards/margins": 0.0018773479387164116,
|
| 171 |
+
"rewards/rejected": -0.010926639661192894,
|
| 172 |
+
"step": 80
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 0.18848167539267016,
|
| 176 |
+
"grad_norm": 9.860730171203613,
|
| 177 |
+
"learning_rate": 4.8881598109976e-07,
|
| 178 |
+
"log_odds_chosen": 0.3749118447303772,
|
| 179 |
+
"log_odds_ratio": -0.6490113139152527,
|
| 180 |
+
"logits/chosen": 1.7958896160125732,
|
| 181 |
+
"logits/rejected": 1.7599939107894897,
|
| 182 |
+
"logps/chosen": -0.8722783923149109,
|
| 183 |
+
"logps/rejected": -1.1078213453292847,
|
| 184 |
+
"loss": 9.2508,
|
| 185 |
+
"nll_loss": 1.0980162620544434,
|
| 186 |
+
"rewards/accuracies": 0.6312500238418579,
|
| 187 |
+
"rewards/chosen": -0.008722783997654915,
|
| 188 |
+
"rewards/margins": 0.0023554288782179356,
|
| 189 |
+
"rewards/rejected": -0.011078213341534138,
|
| 190 |
+
"step": 90
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.2094240837696335,
|
| 194 |
+
"grad_norm": 10.169231414794922,
|
| 195 |
+
"learning_rate": 4.827661805750437e-07,
|
| 196 |
+
"log_odds_chosen": 0.32181161642074585,
|
| 197 |
+
"log_odds_ratio": -0.6511259078979492,
|
| 198 |
+
"logits/chosen": 1.7957969903945923,
|
| 199 |
+
"logits/rejected": 1.779897689819336,
|
| 200 |
+
"logps/chosen": -0.8846995234489441,
|
| 201 |
+
"logps/rejected": -1.0705549716949463,
|
| 202 |
+
"loss": 9.0284,
|
| 203 |
+
"nll_loss": 1.08339524269104,
|
| 204 |
+
"rewards/accuracies": 0.6312500238418579,
|
| 205 |
+
"rewards/chosen": -0.008846994489431381,
|
| 206 |
+
"rewards/margins": 0.0018585551297292113,
|
| 207 |
+
"rewards/rejected": -0.010705549269914627,
|
| 208 |
+
"step": 100
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.23036649214659685,
|
| 212 |
+
"grad_norm": 11.416997909545898,
|
| 213 |
+
"learning_rate": 4.75468677825789e-07,
|
| 214 |
+
"log_odds_chosen": 0.4410727918148041,
|
| 215 |
+
"log_odds_ratio": -0.6154537796974182,
|
| 216 |
+
"logits/chosen": 1.8986194133758545,
|
| 217 |
+
"logits/rejected": 1.9162569046020508,
|
| 218 |
+
"logps/chosen": -0.8505121469497681,
|
| 219 |
+
"logps/rejected": -1.1303095817565918,
|
| 220 |
+
"loss": 9.0025,
|
| 221 |
+
"nll_loss": 1.1048234701156616,
|
| 222 |
+
"rewards/accuracies": 0.659375011920929,
|
| 223 |
+
"rewards/chosen": -0.008505119942128658,
|
| 224 |
+
"rewards/margins": 0.002797975903376937,
|
| 225 |
+
"rewards/rejected": -0.011303097009658813,
|
| 226 |
+
"step": 110
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.2513089005235602,
|
| 230 |
+
"grad_norm": 8.807473182678223,
|
| 231 |
+
"learning_rate": 4.669625898336438e-07,
|
| 232 |
+
"log_odds_chosen": 0.2529251277446747,
|
| 233 |
+
"log_odds_ratio": -0.6907952427864075,
|
| 234 |
+
"logits/chosen": 1.961059808731079,
|
| 235 |
+
"logits/rejected": 1.9387576580047607,
|
| 236 |
+
"logps/chosen": -0.9018535614013672,
|
| 237 |
+
"logps/rejected": -1.0625946521759033,
|
| 238 |
+
"loss": 8.9547,
|
| 239 |
+
"nll_loss": 1.0763670206069946,
|
| 240 |
+
"rewards/accuracies": 0.5531250238418579,
|
| 241 |
+
"rewards/chosen": -0.009018534794449806,
|
| 242 |
+
"rewards/margins": 0.0016074117738753557,
|
| 243 |
+
"rewards/rejected": -0.010625948198139668,
|
| 244 |
+
"step": 120
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.27225130890052357,
|
| 248 |
+
"grad_norm": 8.736103057861328,
|
| 249 |
+
"learning_rate": 4.5729351198915705e-07,
|
| 250 |
+
"log_odds_chosen": 0.34425991773605347,
|
| 251 |
+
"log_odds_ratio": -0.6504599452018738,
|
| 252 |
+
"logits/chosen": 1.858128309249878,
|
| 253 |
+
"logits/rejected": 1.95168936252594,
|
| 254 |
+
"logps/chosen": -0.8997282981872559,
|
| 255 |
+
"logps/rejected": -1.0928587913513184,
|
| 256 |
+
"loss": 9.0819,
|
| 257 |
+
"nll_loss": 1.0748308897018433,
|
| 258 |
+
"rewards/accuracies": 0.6312500238418579,
|
| 259 |
+
"rewards/chosen": -0.00899728387594223,
|
| 260 |
+
"rewards/margins": 0.0019313046941533685,
|
| 261 |
+
"rewards/rejected": -0.01092858798801899,
|
| 262 |
+
"step": 130
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.2931937172774869,
|
| 266 |
+
"grad_norm": 8.833135604858398,
|
| 267 |
+
"learning_rate": 4.4651327368569684e-07,
|
| 268 |
+
"log_odds_chosen": 0.334553062915802,
|
| 269 |
+
"log_odds_ratio": -0.6699846982955933,
|
| 270 |
+
"logits/chosen": 1.8222471475601196,
|
| 271 |
+
"logits/rejected": 1.8125450611114502,
|
| 272 |
+
"logps/chosen": -0.899248480796814,
|
| 273 |
+
"logps/rejected": -1.1075996160507202,
|
| 274 |
+
"loss": 9.0727,
|
| 275 |
+
"nll_loss": 1.161645531654358,
|
| 276 |
+
"rewards/accuracies": 0.59375,
|
| 277 |
+
"rewards/chosen": -0.008992486633360386,
|
| 278 |
+
"rewards/margins": 0.002083510160446167,
|
| 279 |
+
"rewards/rejected": -0.011075995862483978,
|
| 280 |
+
"step": 140
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.31413612565445026,
|
| 284 |
+
"grad_norm": 8.58157730102539,
|
| 285 |
+
"learning_rate": 4.346796604970912e-07,
|
| 286 |
+
"log_odds_chosen": 0.3596678674221039,
|
| 287 |
+
"log_odds_ratio": -0.6549097299575806,
|
| 288 |
+
"logits/chosen": 2.0077967643737793,
|
| 289 |
+
"logits/rejected": 1.9518957138061523,
|
| 290 |
+
"logps/chosen": -0.8897331357002258,
|
| 291 |
+
"logps/rejected": -1.1077500581741333,
|
| 292 |
+
"loss": 9.0157,
|
| 293 |
+
"nll_loss": 1.1182167530059814,
|
| 294 |
+
"rewards/accuracies": 0.612500011920929,
|
| 295 |
+
"rewards/chosen": -0.008897329680621624,
|
| 296 |
+
"rewards/margins": 0.0021801693364977837,
|
| 297 |
+
"rewards/rejected": -0.011077499017119408,
|
| 298 |
+
"step": 150
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.33507853403141363,
|
| 302 |
+
"grad_norm": 7.509969711303711,
|
| 303 |
+
"learning_rate": 4.218561044282098e-07,
|
| 304 |
+
"log_odds_chosen": 0.37523385882377625,
|
| 305 |
+
"log_odds_ratio": -0.639797031879425,
|
| 306 |
+
"logits/chosen": 1.9479191303253174,
|
| 307 |
+
"logits/rejected": 1.9333696365356445,
|
| 308 |
+
"logps/chosen": -0.8889120221138,
|
| 309 |
+
"logps/rejected": -1.131272554397583,
|
| 310 |
+
"loss": 9.0784,
|
| 311 |
+
"nll_loss": 1.1669073104858398,
|
| 312 |
+
"rewards/accuracies": 0.6343749761581421,
|
| 313 |
+
"rewards/chosen": -0.008889119140803814,
|
| 314 |
+
"rewards/margins": 0.002423606114462018,
|
| 315 |
+
"rewards/rejected": -0.011312725953757763,
|
| 316 |
+
"step": 160
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"epoch": 0.35602094240837695,
|
| 320 |
+
"grad_norm": 10.229013442993164,
|
| 321 |
+
"learning_rate": 4.081113438988443e-07,
|
| 322 |
+
"log_odds_chosen": 0.25382956862449646,
|
| 323 |
+
"log_odds_ratio": -0.6958078145980835,
|
| 324 |
+
"logits/chosen": 1.9296739101409912,
|
| 325 |
+
"logits/rejected": 1.8618618249893188,
|
| 326 |
+
"logps/chosen": -0.870949923992157,
|
| 327 |
+
"logps/rejected": -1.0173413753509521,
|
| 328 |
+
"loss": 8.9875,
|
| 329 |
+
"nll_loss": 1.104835867881775,
|
| 330 |
+
"rewards/accuracies": 0.5843750238418579,
|
| 331 |
+
"rewards/chosen": -0.008709498681128025,
|
| 332 |
+
"rewards/margins": 0.0014639139408245683,
|
| 333 |
+
"rewards/rejected": -0.010173412971198559,
|
| 334 |
+
"step": 170
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"epoch": 0.3769633507853403,
|
| 338 |
+
"grad_norm": 9.28216552734375,
|
| 339 |
+
"learning_rate": 3.935190552834828e-07,
|
| 340 |
+
"log_odds_chosen": 0.28805920481681824,
|
| 341 |
+
"log_odds_ratio": -0.6893592476844788,
|
| 342 |
+
"logits/chosen": 1.9231271743774414,
|
| 343 |
+
"logits/rejected": 1.826939344406128,
|
| 344 |
+
"logps/chosen": -0.8867882490158081,
|
| 345 |
+
"logps/rejected": -1.0307583808898926,
|
| 346 |
+
"loss": 8.7846,
|
| 347 |
+
"nll_loss": 1.1256717443466187,
|
| 348 |
+
"rewards/accuracies": 0.606249988079071,
|
| 349 |
+
"rewards/chosen": -0.008867883123457432,
|
| 350 |
+
"rewards/margins": 0.0014397003687918186,
|
| 351 |
+
"rewards/rejected": -0.010307582095265388,
|
| 352 |
+
"step": 180
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.39790575916230364,
|
| 356 |
+
"grad_norm": 8.50275993347168,
|
| 357 |
+
"learning_rate": 3.781574579820464e-07,
|
| 358 |
+
"log_odds_chosen": 0.38345667719841003,
|
| 359 |
+
"log_odds_ratio": -0.6357052326202393,
|
| 360 |
+
"logits/chosen": 1.7336671352386475,
|
| 361 |
+
"logits/rejected": 1.7102609872817993,
|
| 362 |
+
"logps/chosen": -0.8580729365348816,
|
| 363 |
+
"logps/rejected": -1.0796293020248413,
|
| 364 |
+
"loss": 8.8459,
|
| 365 |
+
"nll_loss": 1.041303038597107,
|
| 366 |
+
"rewards/accuracies": 0.643750011920929,
|
| 367 |
+
"rewards/chosen": -0.008580728434026241,
|
| 368 |
+
"rewards/margins": 0.0022155637852847576,
|
| 369 |
+
"rewards/rejected": -0.010796292684972286,
|
| 370 |
+
"step": 190
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 0.418848167539267,
|
| 374 |
+
"grad_norm": 8.013388633728027,
|
| 375 |
+
"learning_rate": 3.621088951385353e-07,
|
| 376 |
+
"log_odds_chosen": 0.31622734665870667,
|
| 377 |
+
"log_odds_ratio": -0.6587765216827393,
|
| 378 |
+
"logits/chosen": 1.788631796836853,
|
| 379 |
+
"logits/rejected": 1.7873141765594482,
|
| 380 |
+
"logps/chosen": -0.8683417439460754,
|
| 381 |
+
"logps/rejected": -1.0568631887435913,
|
| 382 |
+
"loss": 8.6911,
|
| 383 |
+
"nll_loss": 1.0708550214767456,
|
| 384 |
+
"rewards/accuracies": 0.6000000238418579,
|
| 385 |
+
"rewards/chosen": -0.008683416061103344,
|
| 386 |
+
"rewards/margins": 0.0018852159846574068,
|
| 387 |
+
"rewards/rejected": -0.010568631812930107,
|
| 388 |
+
"step": 200
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.418848167539267,
|
| 392 |
+
"eval_log_odds_chosen": 0.3057795763015747,
|
| 393 |
+
"eval_log_odds_ratio": -0.6610966324806213,
|
| 394 |
+
"eval_logits/chosen": 2.0427238941192627,
|
| 395 |
+
"eval_logits/rejected": 2.0572261810302734,
|
| 396 |
+
"eval_logps/chosen": -0.8642156720161438,
|
| 397 |
+
"eval_logps/rejected": -1.0644797086715698,
|
| 398 |
+
"eval_loss": 1.0935468673706055,
|
| 399 |
+
"eval_nll_loss": 1.1233118772506714,
|
| 400 |
+
"eval_rewards/accuracies": 0.6100000143051147,
|
| 401 |
+
"eval_rewards/chosen": -0.008642155677080154,
|
| 402 |
+
"eval_rewards/margins": 0.0020026403944939375,
|
| 403 |
+
"eval_rewards/rejected": -0.010644798167049885,
|
| 404 |
+
"eval_runtime": 46.7517,
|
| 405 |
+
"eval_samples_per_second": 42.779,
|
| 406 |
+
"eval_steps_per_second": 5.347,
|
| 407 |
+
"step": 200
|
| 408 |
+
},
|
| 409 |
+
{
|
| 410 |
+
"epoch": 0.4397905759162304,
|
| 411 |
+
"grad_norm": 7.279272556304932,
|
| 412 |
+
"learning_rate": 3.454593922550693e-07,
|
| 413 |
+
"log_odds_chosen": 0.301203191280365,
|
| 414 |
+
"log_odds_ratio": -0.6769061088562012,
|
| 415 |
+
"logits/chosen": 1.896989107131958,
|
| 416 |
+
"logits/rejected": 1.8812087774276733,
|
| 417 |
+
"logps/chosen": -0.8712860345840454,
|
| 418 |
+
"logps/rejected": -1.0698888301849365,
|
| 419 |
+
"loss": 9.0687,
|
| 420 |
+
"nll_loss": 1.1046525239944458,
|
| 421 |
+
"rewards/accuracies": 0.6187499761581421,
|
| 422 |
+
"rewards/chosen": -0.008712859824299812,
|
| 423 |
+
"rewards/margins": 0.0019860276952385902,
|
| 424 |
+
"rewards/rejected": -0.010698886588215828,
|
| 425 |
+
"step": 210
|
| 426 |
+
},
|
| 427 |
+
{
|
| 428 |
+
"epoch": 0.4607329842931937,
|
| 429 |
+
"grad_norm": 8.950860023498535,
|
| 430 |
+
"learning_rate": 3.2829819606729477e-07,
|
| 431 |
+
"log_odds_chosen": 0.2927771508693695,
|
| 432 |
+
"log_odds_ratio": -0.6683081984519958,
|
| 433 |
+
"logits/chosen": 1.983677625656128,
|
| 434 |
+
"logits/rejected": 2.009464740753174,
|
| 435 |
+
"logps/chosen": -0.9059684872627258,
|
| 436 |
+
"logps/rejected": -1.0988754034042358,
|
| 437 |
+
"loss": 8.9995,
|
| 438 |
+
"nll_loss": 1.1874160766601562,
|
| 439 |
+
"rewards/accuracies": 0.6000000238418579,
|
| 440 |
+
"rewards/chosen": -0.009059684351086617,
|
| 441 |
+
"rewards/margins": 0.0019290696363896132,
|
| 442 |
+
"rewards/rejected": -0.010988753288984299,
|
| 443 |
+
"step": 220
|
| 444 |
+
},
|
| 445 |
+
{
|
| 446 |
+
"epoch": 0.4816753926701571,
|
| 447 |
+
"grad_norm": 12.437826156616211,
|
| 448 |
+
"learning_rate": 3.1071729615293424e-07,
|
| 449 |
+
"log_odds_chosen": 0.3832097351551056,
|
| 450 |
+
"log_odds_ratio": -0.6394175291061401,
|
| 451 |
+
"logits/chosen": 1.6963777542114258,
|
| 452 |
+
"logits/rejected": 1.7382042407989502,
|
| 453 |
+
"logps/chosen": -0.878866970539093,
|
| 454 |
+
"logps/rejected": -1.1088063716888428,
|
| 455 |
+
"loss": 8.6532,
|
| 456 |
+
"nll_loss": 1.0316081047058105,
|
| 457 |
+
"rewards/accuracies": 0.6312500238418579,
|
| 458 |
+
"rewards/chosen": -0.008788668550550938,
|
| 459 |
+
"rewards/margins": 0.002299393992871046,
|
| 460 |
+
"rewards/rejected": -0.011088063009083271,
|
| 461 |
+
"step": 230
|
| 462 |
+
},
|
| 463 |
+
{
|
| 464 |
+
"epoch": 0.5026178010471204,
|
| 465 |
+
"grad_norm": 8.457469940185547,
|
| 466 |
+
"learning_rate": 2.9281093183781403e-07,
|
| 467 |
+
"log_odds_chosen": 0.31373724341392517,
|
| 468 |
+
"log_odds_ratio": -0.6869611144065857,
|
| 469 |
+
"logits/chosen": 1.7616941928863525,
|
| 470 |
+
"logits/rejected": 1.7711395025253296,
|
| 471 |
+
"logps/chosen": -0.8636420965194702,
|
| 472 |
+
"logps/rejected": -1.0460337400436401,
|
| 473 |
+
"loss": 8.8157,
|
| 474 |
+
"nll_loss": 1.0462042093276978,
|
| 475 |
+
"rewards/accuracies": 0.6343749761581421,
|
| 476 |
+
"rewards/chosen": -0.008636420592665672,
|
| 477 |
+
"rewards/margins": 0.0018239166820421815,
|
| 478 |
+
"rewards/rejected": -0.010460336692631245,
|
| 479 |
+
"step": 240
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 0.5235602094240838,
|
| 483 |
+
"grad_norm": 7.4062604904174805,
|
| 484 |
+
"learning_rate": 2.7467508704251135e-07,
|
| 485 |
+
"log_odds_chosen": 0.3899185359477997,
|
| 486 |
+
"log_odds_ratio": -0.6580259203910828,
|
| 487 |
+
"logits/chosen": 1.8792108297348022,
|
| 488 |
+
"logits/rejected": 1.7834640741348267,
|
| 489 |
+
"logps/chosen": -0.8666375279426575,
|
| 490 |
+
"logps/rejected": -1.1335757970809937,
|
| 491 |
+
"loss": 8.8203,
|
| 492 |
+
"nll_loss": 1.1227291822433472,
|
| 493 |
+
"rewards/accuracies": 0.574999988079071,
|
| 494 |
+
"rewards/chosen": -0.008666375651955605,
|
| 495 |
+
"rewards/margins": 0.002669382141903043,
|
| 496 |
+
"rewards/rejected": -0.011335758492350578,
|
| 497 |
+
"step": 250
|
| 498 |
+
},
|
| 499 |
+
{
|
| 500 |
+
"epoch": 0.5445026178010471,
|
| 501 |
+
"grad_norm": 8.197929382324219,
|
| 502 |
+
"learning_rate": 2.5640697577740815e-07,
|
| 503 |
+
"log_odds_chosen": 0.3152967393398285,
|
| 504 |
+
"log_odds_ratio": -0.6758849620819092,
|
| 505 |
+
"logits/chosen": 1.7824039459228516,
|
| 506 |
+
"logits/rejected": 1.766455054283142,
|
| 507 |
+
"logps/chosen": -0.8502113223075867,
|
| 508 |
+
"logps/rejected": -1.0350358486175537,
|
| 509 |
+
"loss": 8.805,
|
| 510 |
+
"nll_loss": 1.0837422609329224,
|
| 511 |
+
"rewards/accuracies": 0.59375,
|
| 512 |
+
"rewards/chosen": -0.008502112701535225,
|
| 513 |
+
"rewards/margins": 0.001848246669396758,
|
| 514 |
+
"rewards/rejected": -0.010350359603762627,
|
| 515 |
+
"step": 260
|
| 516 |
+
},
|
| 517 |
+
{
|
| 518 |
+
"epoch": 0.5654450261780105,
|
| 519 |
+
"grad_norm": 7.904941558837891,
|
| 520 |
+
"learning_rate": 2.381045210440644e-07,
|
| 521 |
+
"log_odds_chosen": 0.28941792249679565,
|
| 522 |
+
"log_odds_ratio": -0.6771480441093445,
|
| 523 |
+
"logits/chosen": 1.8082011938095093,
|
| 524 |
+
"logits/rejected": 1.841059923171997,
|
| 525 |
+
"logps/chosen": -0.8608342409133911,
|
| 526 |
+
"logps/rejected": -1.0518665313720703,
|
| 527 |
+
"loss": 8.5612,
|
| 528 |
+
"nll_loss": 1.0589611530303955,
|
| 529 |
+
"rewards/accuracies": 0.596875011920929,
|
| 530 |
+
"rewards/chosen": -0.008608341217041016,
|
| 531 |
+
"rewards/margins": 0.0019103230442851782,
|
| 532 |
+
"rewards/rejected": -0.010518666356801987,
|
| 533 |
+
"step": 270
|
| 534 |
+
},
|
| 535 |
+
{
|
| 536 |
+
"epoch": 0.5863874345549738,
|
| 537 |
+
"grad_norm": 9.047080039978027,
|
| 538 |
+
"learning_rate": 2.1986582993616925e-07,
|
| 539 |
+
"log_odds_chosen": 0.35996752977371216,
|
| 540 |
+
"log_odds_ratio": -0.651909589767456,
|
| 541 |
+
"logits/chosen": 1.741289496421814,
|
| 542 |
+
"logits/rejected": 1.7088711261749268,
|
| 543 |
+
"logps/chosen": -0.8389939069747925,
|
| 544 |
+
"logps/rejected": -1.060254693031311,
|
| 545 |
+
"loss": 8.6897,
|
| 546 |
+
"nll_loss": 1.0688748359680176,
|
| 547 |
+
"rewards/accuracies": 0.5874999761581421,
|
| 548 |
+
"rewards/chosen": -0.008389937691390514,
|
| 549 |
+
"rewards/margins": 0.002212608465924859,
|
| 550 |
+
"rewards/rejected": -0.010602546855807304,
|
| 551 |
+
"step": 280
|
| 552 |
+
},
|
| 553 |
+
{
|
| 554 |
+
"epoch": 0.6073298429319371,
|
| 555 |
+
"grad_norm": 7.390078067779541,
|
| 556 |
+
"learning_rate": 2.0178866775369774e-07,
|
| 557 |
+
"log_odds_chosen": 0.31485018134117126,
|
| 558 |
+
"log_odds_ratio": -0.6769185066223145,
|
| 559 |
+
"logits/chosen": 1.8932464122772217,
|
| 560 |
+
"logits/rejected": 1.8560025691986084,
|
| 561 |
+
"logps/chosen": -0.8659391403198242,
|
| 562 |
+
"logps/rejected": -1.0502351522445679,
|
| 563 |
+
"loss": 8.7301,
|
| 564 |
+
"nll_loss": 1.1085679531097412,
|
| 565 |
+
"rewards/accuracies": 0.5718749761581421,
|
| 566 |
+
"rewards/chosen": -0.008659390732645988,
|
| 567 |
+
"rewards/margins": 0.0018429612973704934,
|
| 568 |
+
"rewards/rejected": -0.010502351447939873,
|
| 569 |
+
"step": 290
|
| 570 |
+
},
|
| 571 |
+
{
|
| 572 |
+
"epoch": 0.6282722513089005,
|
| 573 |
+
"grad_norm": 7.00534200668335,
|
| 574 |
+
"learning_rate": 1.839699339491937e-07,
|
| 575 |
+
"log_odds_chosen": 0.2003917694091797,
|
| 576 |
+
"log_odds_ratio": -0.7062225937843323,
|
| 577 |
+
"logits/chosen": 1.7795374393463135,
|
| 578 |
+
"logits/rejected": 1.7968852519989014,
|
| 579 |
+
"logps/chosen": -0.9032294154167175,
|
| 580 |
+
"logps/rejected": -1.0224246978759766,
|
| 581 |
+
"loss": 8.5708,
|
| 582 |
+
"nll_loss": 1.07076096534729,
|
| 583 |
+
"rewards/accuracies": 0.559374988079071,
|
| 584 |
+
"rewards/chosen": -0.00903229508548975,
|
| 585 |
+
"rewards/margins": 0.0011919522657990456,
|
| 586 |
+
"rewards/rejected": -0.010224247351288795,
|
| 587 |
+
"step": 300
|
| 588 |
+
},
|
| 589 |
+
{
|
| 590 |
+
"epoch": 0.6492146596858639,
|
| 591 |
+
"grad_norm": 8.29725170135498,
|
| 592 |
+
"learning_rate": 1.6650514271527465e-07,
|
| 593 |
+
"log_odds_chosen": 0.33252888917922974,
|
| 594 |
+
"log_odds_ratio": -0.6427666544914246,
|
| 595 |
+
"logits/chosen": 1.7817466259002686,
|
| 596 |
+
"logits/rejected": 1.805783987045288,
|
| 597 |
+
"logps/chosen": -0.8416460752487183,
|
| 598 |
+
"logps/rejected": -1.0354901552200317,
|
| 599 |
+
"loss": 8.5523,
|
| 600 |
+
"nll_loss": 1.023045301437378,
|
| 601 |
+
"rewards/accuracies": 0.606249988079071,
|
| 602 |
+
"rewards/chosen": -0.008416460826992989,
|
| 603 |
+
"rewards/margins": 0.0019384392071515322,
|
| 604 |
+
"rewards/rejected": -0.010354900732636452,
|
| 605 |
+
"step": 310
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 0.6701570680628273,
|
| 609 |
+
"grad_norm": 7.233508110046387,
|
| 610 |
+
"learning_rate": 1.4948791099758052e-07,
|
| 611 |
+
"log_odds_chosen": 0.302054762840271,
|
| 612 |
+
"log_odds_ratio": -0.6652564406394958,
|
| 613 |
+
"logits/chosen": 1.8713328838348389,
|
| 614 |
+
"logits/rejected": 1.906873106956482,
|
| 615 |
+
"logps/chosen": -0.857520580291748,
|
| 616 |
+
"logps/rejected": -1.0245308876037598,
|
| 617 |
+
"loss": 8.7328,
|
| 618 |
+
"nll_loss": 1.081656813621521,
|
| 619 |
+
"rewards/accuracies": 0.609375,
|
| 620 |
+
"rewards/chosen": -0.008575205691158772,
|
| 621 |
+
"rewards/margins": 0.0016701031709089875,
|
| 622 |
+
"rewards/rejected": -0.010245309211313725,
|
| 623 |
+
"step": 320
|
| 624 |
+
},
|
| 625 |
+
{
|
| 626 |
+
"epoch": 0.6910994764397905,
|
| 627 |
+
"grad_norm": 7.668047904968262,
|
| 628 |
+
"learning_rate": 1.3300945667758012e-07,
|
| 629 |
+
"log_odds_chosen": 0.3296203017234802,
|
| 630 |
+
"log_odds_ratio": -0.6710628867149353,
|
| 631 |
+
"logits/chosen": 1.8118549585342407,
|
| 632 |
+
"logits/rejected": 1.7958993911743164,
|
| 633 |
+
"logps/chosen": -0.8951608538627625,
|
| 634 |
+
"logps/rejected": -1.0847995281219482,
|
| 635 |
+
"loss": 8.9004,
|
| 636 |
+
"nll_loss": 1.1010843515396118,
|
| 637 |
+
"rewards/accuracies": 0.590624988079071,
|
| 638 |
+
"rewards/chosen": -0.008951608091592789,
|
| 639 |
+
"rewards/margins": 0.0018963876646012068,
|
| 640 |
+
"rewards/rejected": -0.010847995989024639,
|
| 641 |
+
"step": 330
|
| 642 |
+
},
|
| 643 |
+
{
|
| 644 |
+
"epoch": 0.7120418848167539,
|
| 645 |
+
"grad_norm": 8.6635160446167,
|
| 646 |
+
"learning_rate": 1.1715810961514072e-07,
|
| 647 |
+
"log_odds_chosen": 0.3200518488883972,
|
| 648 |
+
"log_odds_ratio": -0.6835609078407288,
|
| 649 |
+
"logits/chosen": 1.8284895420074463,
|
| 650 |
+
"logits/rejected": 1.8095057010650635,
|
| 651 |
+
"logps/chosen": -0.8995221853256226,
|
| 652 |
+
"logps/rejected": -1.0893176794052124,
|
| 653 |
+
"loss": 8.7465,
|
| 654 |
+
"nll_loss": 1.092341661453247,
|
| 655 |
+
"rewards/accuracies": 0.590624988079071,
|
| 656 |
+
"rewards/chosen": -0.008995221927762032,
|
| 657 |
+
"rewards/margins": 0.0018979553133249283,
|
| 658 |
+
"rewards/rejected": -0.01089317724108696,
|
| 659 |
+
"step": 340
|
| 660 |
+
},
|
| 661 |
+
{
|
| 662 |
+
"epoch": 0.7329842931937173,
|
| 663 |
+
"grad_norm": 8.274894714355469,
|
| 664 |
+
"learning_rate": 1.0201883817182949e-07,
|
| 665 |
+
"log_odds_chosen": 0.3764176368713379,
|
| 666 |
+
"log_odds_ratio": -0.6291422843933105,
|
| 667 |
+
"logits/chosen": 1.890041708946228,
|
| 668 |
+
"logits/rejected": 1.9048725366592407,
|
| 669 |
+
"logps/chosen": -0.8920204043388367,
|
| 670 |
+
"logps/rejected": -1.1221367120742798,
|
| 671 |
+
"loss": 8.845,
|
| 672 |
+
"nll_loss": 1.1252596378326416,
|
| 673 |
+
"rewards/accuracies": 0.640625,
|
| 674 |
+
"rewards/chosen": -0.00892020296305418,
|
| 675 |
+
"rewards/margins": 0.00230116187594831,
|
| 676 |
+
"rewards/rejected": -0.011221365071833134,
|
| 677 |
+
"step": 350
|
| 678 |
+
},
|
| 679 |
+
{
|
| 680 |
+
"epoch": 0.7539267015706806,
|
| 681 |
+
"grad_norm": 8.172623634338379,
|
| 682 |
+
"learning_rate": 8.76727937529367e-08,
|
| 683 |
+
"log_odds_chosen": 0.3156259059906006,
|
| 684 |
+
"log_odds_ratio": -0.6558908224105835,
|
| 685 |
+
"logits/chosen": 1.8350282907485962,
|
| 686 |
+
"logits/rejected": 1.8624794483184814,
|
| 687 |
+
"logps/chosen": -0.8711791038513184,
|
| 688 |
+
"logps/rejected": -1.0731276273727417,
|
| 689 |
+
"loss": 8.8469,
|
| 690 |
+
"nll_loss": 1.1009576320648193,
|
| 691 |
+
"rewards/accuracies": 0.612500011920929,
|
| 692 |
+
"rewards/chosen": -0.008711791597306728,
|
| 693 |
+
"rewards/margins": 0.002019485691562295,
|
| 694 |
+
"rewards/rejected": -0.010731276124715805,
|
| 695 |
+
"step": 360
|
| 696 |
+
},
|
| 697 |
+
{
|
| 698 |
+
"epoch": 0.774869109947644,
|
| 699 |
+
"grad_norm": 9.326078414916992,
|
| 700 |
+
"learning_rate": 7.419687580962222e-08,
|
| 701 |
+
"log_odds_chosen": 0.3530608117580414,
|
| 702 |
+
"log_odds_ratio": -0.6621404886245728,
|
| 703 |
+
"logits/chosen": 1.9310886859893799,
|
| 704 |
+
"logits/rejected": 1.8785558938980103,
|
| 705 |
+
"logps/chosen": -0.9094289541244507,
|
| 706 |
+
"logps/rejected": -1.133821725845337,
|
| 707 |
+
"loss": 8.7173,
|
| 708 |
+
"nll_loss": 1.1301552057266235,
|
| 709 |
+
"rewards/accuracies": 0.5687500238418579,
|
| 710 |
+
"rewards/chosen": -0.00909428857266903,
|
| 711 |
+
"rewards/margins": 0.0022439290769398212,
|
| 712 |
+
"rewards/rejected": -0.011338217183947563,
|
| 713 |
+
"step": 370
|
| 714 |
+
},
|
| 715 |
+
{
|
| 716 |
+
"epoch": 0.7958115183246073,
|
| 717 |
+
"grad_norm": 9.022133827209473,
|
| 718 |
+
"learning_rate": 6.166331963291519e-08,
|
| 719 |
+
"log_odds_chosen": 0.23490826785564423,
|
| 720 |
+
"log_odds_ratio": -0.6955921053886414,
|
| 721 |
+
"logits/chosen": 1.9562733173370361,
|
| 722 |
+
"logits/rejected": 1.8897705078125,
|
| 723 |
+
"logps/chosen": -0.8423633575439453,
|
| 724 |
+
"logps/rejected": -0.994970977306366,
|
| 725 |
+
"loss": 8.9164,
|
| 726 |
+
"nll_loss": 1.1008055210113525,
|
| 727 |
+
"rewards/accuracies": 0.5874999761581421,
|
| 728 |
+
"rewards/chosen": -0.008423633873462677,
|
| 729 |
+
"rewards/margins": 0.0015260763466358185,
|
| 730 |
+
"rewards/rejected": -0.009949709288775921,
|
| 731 |
+
"step": 380
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.8167539267015707,
|
| 735 |
+
"grad_norm": 7.358635425567627,
|
| 736 |
+
"learning_rate": 5.013930914912476e-08,
|
| 737 |
+
"log_odds_chosen": 0.27963709831237793,
|
| 738 |
+
"log_odds_ratio": -0.6734436750411987,
|
| 739 |
+
"logits/chosen": 1.956067681312561,
|
| 740 |
+
"logits/rejected": 1.9839175939559937,
|
| 741 |
+
"logps/chosen": -0.8422489166259766,
|
| 742 |
+
"logps/rejected": -1.0293291807174683,
|
| 743 |
+
"loss": 8.6461,
|
| 744 |
+
"nll_loss": 1.0561668872833252,
|
| 745 |
+
"rewards/accuracies": 0.578125,
|
| 746 |
+
"rewards/chosen": -0.008422489278018475,
|
| 747 |
+
"rewards/margins": 0.0018708031857386231,
|
| 748 |
+
"rewards/rejected": -0.010293291881680489,
|
| 749 |
+
"step": 390
|
| 750 |
+
},
|
| 751 |
+
{
|
| 752 |
+
"epoch": 0.837696335078534,
|
| 753 |
+
"grad_norm": 7.309168338775635,
|
| 754 |
+
"learning_rate": 3.968661679220467e-08,
|
| 755 |
+
"log_odds_chosen": 0.18631207942962646,
|
| 756 |
+
"log_odds_ratio": -0.7142513990402222,
|
| 757 |
+
"logits/chosen": 1.8434158563613892,
|
| 758 |
+
"logits/rejected": 1.8182004690170288,
|
| 759 |
+
"logps/chosen": -0.8909440040588379,
|
| 760 |
+
"logps/rejected": -1.0001533031463623,
|
| 761 |
+
"loss": 8.6763,
|
| 762 |
+
"nll_loss": 1.1097790002822876,
|
| 763 |
+
"rewards/accuracies": 0.5406249761581421,
|
| 764 |
+
"rewards/chosen": -0.008909439668059349,
|
| 765 |
+
"rewards/margins": 0.00109209178481251,
|
| 766 |
+
"rewards/rejected": -0.01000153087079525,
|
| 767 |
+
"step": 400
|
| 768 |
+
},
|
| 769 |
+
{
|
| 770 |
+
"epoch": 0.837696335078534,
|
| 771 |
+
"eval_log_odds_chosen": 0.3030896484851837,
|
| 772 |
+
"eval_log_odds_ratio": -0.6629699468612671,
|
| 773 |
+
"eval_logits/chosen": 2.1568901538848877,
|
| 774 |
+
"eval_logits/rejected": 2.191537857055664,
|
| 775 |
+
"eval_logps/chosen": -0.8522689342498779,
|
| 776 |
+
"eval_logps/rejected": -1.0496091842651367,
|
| 777 |
+
"eval_loss": 1.078381061553955,
|
| 778 |
+
"eval_nll_loss": 1.1099687814712524,
|
| 779 |
+
"eval_rewards/accuracies": 0.6060000061988831,
|
| 780 |
+
"eval_rewards/chosen": -0.008522690273821354,
|
| 781 |
+
"eval_rewards/margins": 0.0019734008237719536,
|
| 782 |
+
"eval_rewards/rejected": -0.010496090166270733,
|
| 783 |
+
"eval_runtime": 46.7843,
|
| 784 |
+
"eval_samples_per_second": 42.749,
|
| 785 |
+
"eval_steps_per_second": 5.344,
|
| 786 |
+
"step": 400
|
| 787 |
+
},
|
| 788 |
+
{
|
| 789 |
+
"epoch": 0.8586387434554974,
|
| 790 |
+
"grad_norm": 8.156121253967285,
|
| 791 |
+
"learning_rate": 3.036127238347164e-08,
|
| 792 |
+
"log_odds_chosen": 0.31570926308631897,
|
| 793 |
+
"log_odds_ratio": -0.6613708734512329,
|
| 794 |
+
"logits/chosen": 1.936348557472229,
|
| 795 |
+
"logits/rejected": 1.903748869895935,
|
| 796 |
+
"logps/chosen": -0.8457509875297546,
|
| 797 |
+
"logps/rejected": -1.0446395874023438,
|
| 798 |
+
"loss": 8.7334,
|
| 799 |
+
"nll_loss": 1.0835765600204468,
|
| 800 |
+
"rewards/accuracies": 0.609375,
|
| 801 |
+
"rewards/chosen": -0.00845750980079174,
|
| 802 |
+
"rewards/margins": 0.001988885225728154,
|
| 803 |
+
"rewards/rejected": -0.010446394793689251,
|
| 804 |
+
"step": 410
|
| 805 |
+
},
|
| 806 |
+
{
|
| 807 |
+
"epoch": 0.8795811518324608,
|
| 808 |
+
"grad_norm": 8.324801445007324,
|
| 809 |
+
"learning_rate": 2.2213262793589482e-08,
|
| 810 |
+
"log_odds_chosen": 0.29435402154922485,
|
| 811 |
+
"log_odds_ratio": -0.6616442799568176,
|
| 812 |
+
"logits/chosen": 1.8585201501846313,
|
| 813 |
+
"logits/rejected": 1.8436048030853271,
|
| 814 |
+
"logps/chosen": -0.8651920557022095,
|
| 815 |
+
"logps/rejected": -1.0383055210113525,
|
| 816 |
+
"loss": 8.6628,
|
| 817 |
+
"nll_loss": 1.0541940927505493,
|
| 818 |
+
"rewards/accuracies": 0.596875011920929,
|
| 819 |
+
"rewards/chosen": -0.008651919662952423,
|
| 820 |
+
"rewards/margins": 0.0017311364645138383,
|
| 821 |
+
"rewards/rejected": -0.010383055545389652,
|
| 822 |
+
"step": 420
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.900523560209424,
|
| 826 |
+
"grad_norm": 8.076932907104492,
|
| 827 |
+
"learning_rate": 1.5286263996730026e-08,
|
| 828 |
+
"log_odds_chosen": 0.48232072591781616,
|
| 829 |
+
"log_odds_ratio": -0.6256499290466309,
|
| 830 |
+
"logits/chosen": 1.8976824283599854,
|
| 831 |
+
"logits/rejected": 1.8619095087051392,
|
| 832 |
+
"logps/chosen": -0.8179370760917664,
|
| 833 |
+
"logps/rejected": -1.1194853782653809,
|
| 834 |
+
"loss": 8.6524,
|
| 835 |
+
"nll_loss": 1.1020301580429077,
|
| 836 |
+
"rewards/accuracies": 0.609375,
|
| 837 |
+
"rewards/chosen": -0.008179371245205402,
|
| 838 |
+
"rewards/margins": 0.003015482099726796,
|
| 839 |
+
"rewards/rejected": -0.011194853112101555,
|
| 840 |
+
"step": 430
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"epoch": 0.9214659685863874,
|
| 844 |
+
"grad_norm": 8.184592247009277,
|
| 845 |
+
"learning_rate": 9.617406953185136e-09,
|
| 846 |
+
"log_odds_chosen": 0.3493059575557709,
|
| 847 |
+
"log_odds_ratio": -0.646949052810669,
|
| 848 |
+
"logits/chosen": 1.9365053176879883,
|
| 849 |
+
"logits/rejected": 1.9345598220825195,
|
| 850 |
+
"logps/chosen": -0.8272320032119751,
|
| 851 |
+
"logps/rejected": -1.0139485597610474,
|
| 852 |
+
"loss": 8.7643,
|
| 853 |
+
"nll_loss": 1.0985225439071655,
|
| 854 |
+
"rewards/accuracies": 0.628125011920929,
|
| 855 |
+
"rewards/chosen": -0.008272320032119751,
|
| 856 |
+
"rewards/margins": 0.0018671646248549223,
|
| 857 |
+
"rewards/rejected": -0.010139484889805317,
|
| 858 |
+
"step": 440
|
| 859 |
+
},
|
| 860 |
+
{
|
| 861 |
+
"epoch": 0.9424083769633508,
|
| 862 |
+
"grad_norm": 8.757542610168457,
|
| 863 |
+
"learning_rate": 5.2370785753763356e-09,
|
| 864 |
+
"log_odds_chosen": 0.2785571217536926,
|
| 865 |
+
"log_odds_ratio": -0.6923194527626038,
|
| 866 |
+
"logits/chosen": 1.9607532024383545,
|
| 867 |
+
"logits/rejected": 1.9347816705703735,
|
| 868 |
+
"logps/chosen": -0.8750311732292175,
|
| 869 |
+
"logps/rejected": -1.0376728773117065,
|
| 870 |
+
"loss": 8.7208,
|
| 871 |
+
"nll_loss": 1.1206778287887573,
|
| 872 |
+
"rewards/accuracies": 0.6156250238418579,
|
| 873 |
+
"rewards/chosen": -0.0087503120303154,
|
| 874 |
+
"rewards/margins": 0.0016264161095023155,
|
| 875 |
+
"rewards/rejected": -0.010376728139817715,
|
| 876 |
+
"step": 450
|
| 877 |
+
},
|
| 878 |
+
{
|
| 879 |
+
"epoch": 0.9633507853403142,
|
| 880 |
+
"grad_norm": 7.935389995574951,
|
| 881 |
+
"learning_rate": 2.168758844148272e-09,
|
| 882 |
+
"log_odds_chosen": 0.33909493684768677,
|
| 883 |
+
"log_odds_ratio": -0.654638409614563,
|
| 884 |
+
"logits/chosen": 2.066657304763794,
|
| 885 |
+
"logits/rejected": 2.039240598678589,
|
| 886 |
+
"logps/chosen": -0.8697013854980469,
|
| 887 |
+
"logps/rejected": -1.0564416646957397,
|
| 888 |
+
"loss": 8.7399,
|
| 889 |
+
"nll_loss": 1.149594783782959,
|
| 890 |
+
"rewards/accuracies": 0.59375,
|
| 891 |
+
"rewards/chosen": -0.00869701337069273,
|
| 892 |
+
"rewards/margins": 0.0018674019956961274,
|
| 893 |
+
"rewards/rejected": -0.010564416646957397,
|
| 894 |
+
"step": 460
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"epoch": 0.9842931937172775,
|
| 898 |
+
"grad_norm": 7.827225685119629,
|
| 899 |
+
"learning_rate": 4.288949484559934e-10,
|
| 900 |
+
"log_odds_chosen": 0.38105446100234985,
|
| 901 |
+
"log_odds_ratio": -0.6435109376907349,
|
| 902 |
+
"logits/chosen": 1.9544579982757568,
|
| 903 |
+
"logits/rejected": 1.9189164638519287,
|
| 904 |
+
"logps/chosen": -0.8262852430343628,
|
| 905 |
+
"logps/rejected": -1.0520846843719482,
|
| 906 |
+
"loss": 8.7101,
|
| 907 |
+
"nll_loss": 1.105509638786316,
|
| 908 |
+
"rewards/accuracies": 0.6031249761581421,
|
| 909 |
+
"rewards/chosen": -0.00826285220682621,
|
| 910 |
+
"rewards/margins": 0.002257994608953595,
|
| 911 |
+
"rewards/rejected": -0.010520846582949162,
|
| 912 |
+
"step": 470
|
| 913 |
+
},
|
| 914 |
+
{
|
| 915 |
+
"epoch": 0.9989528795811519,
|
| 916 |
+
"step": 477,
|
| 917 |
+
"total_flos": 0.0,
|
| 918 |
+
"train_loss": 8.957356926780077,
|
| 919 |
+
"train_runtime": 5488.1377,
|
| 920 |
+
"train_samples_per_second": 11.139,
|
| 921 |
+
"train_steps_per_second": 0.087
|
| 922 |
+
}
|
| 923 |
+
],
|
| 924 |
+
"logging_steps": 10,
|
| 925 |
+
"max_steps": 477,
|
| 926 |
+
"num_input_tokens_seen": 0,
|
| 927 |
+
"num_train_epochs": 1,
|
| 928 |
+
"save_steps": 500,
|
| 929 |
+
"stateful_callbacks": {
|
| 930 |
+
"TrainerControl": {
|
| 931 |
+
"args": {
|
| 932 |
+
"should_epoch_stop": false,
|
| 933 |
+
"should_evaluate": false,
|
| 934 |
+
"should_log": false,
|
| 935 |
+
"should_save": false,
|
| 936 |
+
"should_training_stop": false
|
| 937 |
+
},
|
| 938 |
+
"attributes": {}
|
| 939 |
+
}
|
| 940 |
+
},
|
| 941 |
+
"total_flos": 0.0,
|
| 942 |
+
"train_batch_size": 4,
|
| 943 |
+
"trial_name": null,
|
| 944 |
+
"trial_params": null
|
| 945 |
+
}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|