cjkasbdkjnlakb commited on
Commit
abb403a
·
verified ·
1 Parent(s): 604ca3f

Upload LoRA adapter - README.md

Browse files
Files changed (1) hide show
  1. README.md +181 -0
README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ license: apache-2.0
4
+ base_model: Qwen/Qwen3-4B-Instruct-2507
5
+ tags:
6
+ - axolotl
7
+ - base_model:adapter:Qwen/Qwen3-4B-Instruct-2507
8
+ - lora
9
+ - transformers
10
+ datasets:
11
+ - custom
12
+ pipeline_tag: text-generation
13
+ model-index:
14
+ - name: workspace/train_dir_0924/checkpoints
15
+ results: []
16
+ ---
17
+
18
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
19
+ should probably proofread and complete it, then remove this comment. -->
20
+
21
+ [<img src="https://raw.githubusercontent.com/axolotl-ai-cloud/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/axolotl-ai-cloud/axolotl)
22
+ <details><summary>See axolotl config</summary>
23
+
24
+ axolotl version: `0.12.2`
25
+ ```yaml
26
+ # Automatically upload checkpoint and final model to HF
27
+ # hub_model_id: username/custom_model_name
28
+ # 是否以 8-bit 精度加载模型
29
+ load_in_8bit: false
30
+ # 是否以 4-bit 精度加载模型(与QLoRA绑定, 强制使用)
31
+ load_in_4bit: false
32
+ # 是否严格匹配模型结构,关闭表示可加载少部分差异结构(如以适配 adapter)
33
+ # strict: false
34
+ base_model: Qwen/Qwen3-4B-Instruct-2507
35
+ # 数据集设置
36
+ chat_template: qwen3
37
+ datasets:
38
+ - path: /workspace/train_dir_0924/all_data.json # - 表示列表(list)中的一项, 即可以同时使用多个数据集
39
+ type: chat_template # chat_template(自定义格式) alpaca
40
+ roles_to_train: ["assistant"]
41
+ field_messages: messages # 标识的字段
42
+ message_property_mappings: # message_property_mappings={'role':'role', 'content':'content'})
43
+ role: role
44
+ content: content
45
+ dataset_prepared_path:
46
+ val_set_size: 0.08
47
+ output_dir: /workspace/train_dir_0924/checkpoints
48
+ sequence_len: 16384 # 模型所能处理的最大上下文长度(默认2048)
49
+ pad_to_sequence_len: false
50
+ # context_parallel_size: 2 # 长序列拆分至多个GPU(强制要求 mirco_batch_size: 1)
51
+ sample_packing: false # 在训练时将多个样本拼接(packing)成一个长序列(sequence_len)输入到模型中,以提高训练效率。
52
+ eval_sample_packing: false # 评估时拼接多个样本
53
+ # 训练超参数
54
+ adapter: lora # lora qlora
55
+ lora_model_dir:
56
+ lora_r: 32 # lora_r默认首选 16,平衡精度与显存
57
+ lora_alpha: 64 # 缩放系数,用于控制 LoRA 的影响力, 一般设为 2*r 或 4*r
58
+ lora_dropout: 0.05 # 从0.05改为0.1,增加dropout
59
+ lora_target_linear: true
60
+ micro_batch_size: 4 # 微批次大小 94G的H100可以设为4(Token为1w)
61
+ gradient_accumulation_steps: 4 # 梯度累积: 将多个微批次的梯度(micro_batch_size)累积起来,然后更新模型权重 有效 Batch 常取 16: 小于 8 训练会抖,大于 32 只会更耗时、收益有限
62
+ auto_find_batch_size: false # 允许Axolotl不断调整batch_size ⚠️Zero-3不适用
63
+ num_epochs: 3
64
+ optimizer: adamw_torch_fused
65
+ lr_scheduler: cosine
66
+ learning_rate: 5e-5
67
+ # bf16: auto + tf32: true,可获得更好的稳定性和性能。
68
+ bf16: auto
69
+ tf32: true
70
+ # early_stopping_patience:
71
+ gradient_checkpointing: true
72
+ gradient_checkpointing_kwargs:
73
+ use_reentrant: false
74
+ # auto_resume_from_checkpoints: true #自动从output_dir寻找最新checkpoint断点恢复
75
+
76
+ logging_steps: 1
77
+ logging_dir: /workspace/train_dir_0924/logs
78
+
79
+ flash_attention: true
80
+ warmup_ratio: 0.03
81
+ evals_per_epoch: 8 # 增加评估频次,从4改为8
82
+ saves_per_epoch: 1 # 增加保存频次,便于选择最佳checkpoint
83
+ weight_decay: 0.01 # 从0.0改为0.01,增加正则化
84
+
85
+
86
+
87
+
88
+ fsdp:
89
+ - full_shard
90
+ - auto_wrap
91
+ fsdp_config:
92
+ fsdp_limit_all_gathers: true
93
+ fsdp_sync_module_states: true
94
+ fsdp_offload_params: false # H200显存足够,无需offload
95
+ fsdp_use_orig_params: false
96
+ fsdp_cpu_ram_efficient_loading: true
97
+ fsdp_auto_wrap_policy: TRANSFORMER_BASED_WRAP
98
+ fsdp_transformer_layer_cls_to_wrap: Qwen3DecoderLayer
99
+ fsdp_state_dict_type: FULL_STATE_DICT
100
+ fsdp_sharding_strategy: FULL_SHARD
101
+ ```
102
+
103
+ </details><br>
104
+
105
+ # workspace/train_dir_0924/checkpoints
106
+
107
+ This model is a fine-tuned version of [Qwen/Qwen3-4B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-4B-Instruct-2507) on the /workspace/train_dir_0924/all_data.json dataset.
108
+ It achieves the following results on the evaluation set:
109
+ - Loss: 0.0463
110
+ - Memory/max Mem Active(gib): 95.98
111
+ - Memory/max Mem Allocated(gib): 95.98
112
+ - Memory/device Mem Reserved(gib): 111.41
113
+
114
+ ## Model description
115
+
116
+ More information needed
117
+
118
+ ## Intended uses & limitations
119
+
120
+ More information needed
121
+
122
+ ## Training and evaluation data
123
+
124
+ More information needed
125
+
126
+ ## Training procedure
127
+
128
+ ### Training hyperparameters
129
+
130
+ The following hyperparameters were used during training:
131
+ - learning_rate: 5e-05
132
+ - train_batch_size: 4
133
+ - eval_batch_size: 4
134
+ - seed: 42
135
+ - distributed_type: multi-GPU
136
+ - num_devices: 4
137
+ - gradient_accumulation_steps: 4
138
+ - total_train_batch_size: 64
139
+ - total_eval_batch_size: 16
140
+ - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
141
+ - lr_scheduler_type: cosine
142
+ - lr_scheduler_warmup_steps: 47
143
+ - training_steps: 1578
144
+
145
+ ### Training results
146
+
147
+ | Training Loss | Epoch | Step | Validation Loss | Mem Active(gib) | Mem Allocated(gib) | Mem Reserved(gib) |
148
+ |:-------------:|:------:|:----:|:---------------:|:---------------:|:------------------:|:-----------------:|
149
+ | No log | 0 | 0 | 0.9792 | 48.13 | 47.95 | 48.76 |
150
+ | 0.0796 | 0.1255 | 66 | 0.0796 | 62.91 | 62.71 | 73.19 |
151
+ | 0.0615 | 0.2511 | 132 | 0.0662 | 66.5 | 66.31 | 76.92 |
152
+ | 0.064 | 0.3766 | 198 | 0.0616 | 66.5 | 66.31 | 76.92 |
153
+ | 0.0673 | 0.5021 | 264 | 0.0591 | 72.68 | 72.48 | 84.29 |
154
+ | 0.0574 | 0.6277 | 330 | 0.0568 | 72.68 | 72.48 | 84.29 |
155
+ | 0.053 | 0.7532 | 396 | 0.0553 | 72.68 | 72.48 | 84.29 |
156
+ | 0.0631 | 0.8787 | 462 | 0.0543 | 72.68 | 72.48 | 84.29 |
157
+ | 0.0571 | 1.0038 | 528 | 0.0528 | 72.68 | 72.48 | 84.29 |
158
+ | 0.0507 | 1.1293 | 594 | 0.0522 | 72.8 | 72.6 | 84.29 |
159
+ | 0.0498 | 1.2549 | 660 | 0.0513 | 72.8 | 72.6 | 84.29 |
160
+ | 0.0446 | 1.3804 | 726 | 0.0507 | 72.8 | 72.6 | 84.29 |
161
+ | 0.0525 | 1.5059 | 792 | 0.0498 | 95.98 | 95.98 | 111.41 |
162
+ | 0.0518 | 1.6315 | 858 | 0.0493 | 95.98 | 95.98 | 111.41 |
163
+ | 0.0445 | 1.7570 | 924 | 0.0486 | 95.98 | 95.98 | 111.41 |
164
+ | 0.0593 | 1.8825 | 990 | 0.0482 | 95.98 | 95.98 | 111.41 |
165
+ | 0.0491 | 2.0076 | 1056 | 0.0478 | 95.98 | 95.98 | 111.41 |
166
+ | 0.0459 | 2.1331 | 1122 | 0.0475 | 95.98 | 95.98 | 111.41 |
167
+ | 0.0393 | 2.2587 | 1188 | 0.0471 | 95.98 | 95.98 | 111.41 |
168
+ | 0.048 | 2.3842 | 1254 | 0.0468 | 95.98 | 95.98 | 111.41 |
169
+ | 0.0532 | 2.5097 | 1320 | 0.0466 | 95.98 | 95.98 | 111.41 |
170
+ | 0.0395 | 2.6353 | 1386 | 0.0465 | 95.98 | 95.98 | 111.41 |
171
+ | 0.0457 | 2.7608 | 1452 | 0.0464 | 95.98 | 95.98 | 111.41 |
172
+ | 0.0528 | 2.8864 | 1518 | 0.0463 | 95.98 | 95.98 | 111.41 |
173
+
174
+
175
+ ### Framework versions
176
+
177
+ - PEFT 0.17.0
178
+ - Transformers 4.55.2
179
+ - Pytorch 2.6.0+cu126
180
+ - Datasets 4.0.0
181
+ - Tokenizers 0.21.4