初始化项目,由ModelHub XC社区提供模型

Model: Tencent-Hunyuan/Hy-MT2-7B-GGUF
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-08-08 21:25:13 +08:00
commit 5212a98298
48 changed files with 5767 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"fp16": {
"enabled": false
},
"zero_optimization": {
"stage": 2,
"allgather_partitions": true,
"allgather_bucket_size": 1e8,
"overlap_comm": true,
"reduce_scatter": true,
"reduce_bucket_size": 1e8,
"contiguous_gradients": true
},
"gradient_accumulation_steps": "auto",
"gradient_clipping": "auto",
"steps_per_print": 10,
"train_batch_size": "auto",
"train_micro_batch_size_per_gpu": "auto",
"wall_clock_breakdown": false
}

View File

@@ -0,0 +1,27 @@
{
"fp16": {
"enabled": false
},
"bf16": {
"enabled": true
},
"zero_optimization": {
"stage": 2,
"offload_optimizer": {
"device": "cpu",
"pin_memory": true
},
"allgather_partitions": true,
"allgather_bucket_size": 1e8,
"overlap_comm": true,
"reduce_scatter": true,
"reduce_bucket_size": 1e8,
"contiguous_gradients": true
},
"gradient_accumulation_steps": "auto",
"gradient_clipping": "auto",
"steps_per_print": 10,
"train_batch_size": "auto",
"train_micro_batch_size_per_gpu": "auto",
"wall_clock_breakdown": false
}

View File

@@ -0,0 +1,41 @@
{
"fp16": {
"enabled": "auto",
"loss_scale": 0,
"loss_scale_window": 1000,
"initial_scale_power": 16,
"hysteresis": 2,
"min_loss_scale": 1
},
"bf16": {
"enabled": "auto"
},
"zero_optimization": {
"stage": 3,
"offload_optimizer": {
"device": "none",
"pin_memory": true
},
"offload_param": {
"device": "none",
"pin_memory": true
},
"overlap_comm": true,
"contiguous_gradients": true,
"sub_group_size": 1e9,
"reduce_bucket_size": "auto",
"stage3_prefetch_bucket_size": "auto",
"stage3_param_persistence_threshold": "auto",
"stage3_max_live_parameters": 1e9,
"stage3_max_reuse_distance": 1e9,
"stage3_gather_16bit_weights_on_model_save": true
},
"gradient_accumulation_steps": "auto",
"gradient_clipping": "auto",
"steps_per_print": 10,
"train_batch_size": "auto",
"train_micro_batch_size_per_gpu": "auto",
"wall_clock_breakdown": false
}

View File

@@ -0,0 +1,41 @@
{
"fp16": {
"enabled": "auto",
"loss_scale": 0,
"loss_scale_window": 1000,
"initial_scale_power": 16,
"hysteresis": 2,
"min_loss_scale": 1
},
"bf16": {
"enabled": "auto"
},
"zero_optimization": {
"stage": 3,
"offload_optimizer": {
"device": "cpu",
"pin_memory": true
},
"offload_param": {
"device": "cpu",
"pin_memory": true
},
"overlap_comm": true,
"contiguous_gradients": true,
"sub_group_size": 1e9,
"reduce_bucket_size": "auto",
"stage3_prefetch_bucket_size": "auto",
"stage3_param_persistence_threshold": "auto",
"stage3_max_live_parameters": 1e9,
"stage3_max_reuse_distance": 1e9,
"stage3_gather_16bit_weights_on_model_save": false
},
"gradient_accumulation_steps": "auto",
"gradient_clipping": "auto",
"steps_per_print": 10,
"train_batch_size": "auto",
"train_micro_batch_size_per_gpu": "auto",
"wall_clock_breakdown": false
}

View File

@@ -0,0 +1,36 @@
{
"fp16": {
"enabled": false,
"loss_scale": 0,
"loss_scale_window": 1000,
"initial_scale_power": 16,
"hysteresis": 2,
"min_loss_scale": 1
},
"bf16": {
"enabled": true
},
"zero_optimization": {
"stage": 3,
"offload_optimizer": {
"device": "cpu",
"pin_memory": true
},
"overlap_comm": true,
"contiguous_gradients": true,
"sub_group_size": 1e9,
"reduce_bucket_size": 1e8,
"stage3_prefetch_bucket_size": 1e8,
"stage3_param_persistence_threshold": 0,
"stage3_max_live_parameters": 1e8,
"stage3_max_reuse_distance": 1e8,
"stage3_gather_16bit_weights_on_model_save": true
},
"gradient_accumulation_steps": 1,
"gradient_clipping": "auto",
"steps_per_print": 10,
"train_micro_batch_size_per_gpu": 1,
"wall_clock_breakdown": false
}

View File

@@ -0,0 +1,54 @@
# 导入所需的库
from transformers import AutoModelForCausalLM # 用于加载预训练的语言模型
from peft import LoraConfig, get_peft_model, PeftModel # 用于处理LoRA权重
import argparse # 用于解析命令行参数
import shutil # 用于文件操作,如复制
import os # 用于文件路径操作
import torch # 用于深度学习操作
def main():
# 创建参数解析器
parser = argparse.ArgumentParser()
# 添加命令行参数
parser.add_argument("--base_model_path", type=str, required=True,
help="Path to pretrained model or model identifier from huggingface.co/models")
parser.add_argument("--adapter_model_path", type=str, required=True, help="Path to adapter model")
parser.add_argument("--output_path", type=str, required=True, help="Path to save the output model")
parser.add_argument("--save_dtype", type=str, choices=['bf16', 'fp32', 'fp16'],
default='fp32', help="In which dtype to save, fp32, bf16 or fp16.")
# 解析命令行参数
args = parser.parse_args()
name2dtype = {'bf16': torch.bfloat16, 'fp32': torch.float32, 'fp16': torch.float16}
# 加载基座模型
model = AutoModelForCausalLM.from_pretrained(
args.base_model_path, device_map='cpu',
trust_remote_code=True, torch_dtype=name2dtype[args.save_dtype]
)
# 在基座模型的基础上加载 adapter 权重
model = PeftModel.from_pretrained(model, args.adapter_model_path, trust_remote_code=True)
# 融合模型和 adapter
model = model.merge_and_unload()
# 保存融合后的模型权重
model.save_pretrained(args.output_path, safe_serialization=False)
# Copy tokenizer, config and other non-weight files from base model
# Skip model weight files (.safetensors, .bin, .pt) and index files
_SKIP_SUFFIXES = ('.safetensors', '.bin', '.pt', '.pth')
_SKIP_NAMES = {'model.safetensors.index.json', 'pytorch_model.bin.index.json'}
for fname in os.listdir(args.base_model_path):
src = os.path.join(args.base_model_path, fname)
if not os.path.isfile(src):
continue
if fname in _SKIP_NAMES or fname.endswith(_SKIP_SUFFIXES):
continue
dst = os.path.join(args.output_path, fname)
if not os.path.exists(dst):
shutil.copy(src, dst)
print(f'Copied {fname}')
print(f'Merged model weight is saved to {args.output_path}')
if __name__ == "__main__":
main()

View File

@@ -0,0 +1,6 @@
SCRIPT_DIR=$(dirname "$0")
python3 ${SCRIPT_DIR}/merge_lora_weight.py \
--base_model_path /xxx/hy_l_train/checkpoint-200 \
--adapter_model_path /xxx/runs/hy_l_lora_train/checkpoint-200 \
--output_path /xxx/ckpts/merged_hy_lora_weight \
--save_dtype bf16

View File

@@ -0,0 +1,564 @@
# Copyright 2024 Tencent Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Copyright 2022 EleutherAI and the HuggingFace Inc. team. All rights reserved.
#
# This code is based on EleutherAI's GPT-NeoX library and the GPT-NeoX
# and OPT implementations in this library. It has been modified from its
# original forms to accommodate minor architectural differences compared
# to GPT-NeoX and OPT used by the Meta AI team that trained the model.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import re
import sys
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import json
import torch
import shutil
import logging
from dataclasses import dataclass, field
import deepspeed
from typing import Optional, Dict
import transformers
from torch.utils.data import Dataset
from transformers import Trainer, TrainerCallback
from peft import LoraConfig, get_peft_model, PeftModel
from transformers.trainer_utils import PREFIX_CHECKPOINT_DIR
from transformers.modeling_utils import unwrap_model
def print_args(args, name='arguments'):
"""Print arguments."""
if torch.distributed.get_rank() == 0:
print(f'------------------------ {name} ------------------------', flush=True)
str_list = []
for arg in vars(args):
dots = '.' * (48 - len(arg))
str_list.append(' {} {} {}'.format(arg, dots, getattr(args, arg)))
for arg in sorted(str_list, key=lambda x: x.lower()):
print(arg, flush=True)
print(f'-------------------- end of {name} ---------------------', flush=True)
@dataclass
class ModelArguments:
use_flash_attn: bool = field(
default=False,
metadata={"help": "Enable FlashAttention-2 for faster training."}
)
use_lora: bool = field(default=False, metadata={"help": "Enable Lora for faster training."})
hidden_size: int = field(default=2048, metadata={"help": "The hidden size of the model."})
num_layers: int = field(default=24, metadata={"help": "The number of layers of the model."})
num_attention_heads: int = field(default=16, metadata={"help": "The number of attention heads of the model."})
intermediate_size: int = field(default=8192, metadata={"help": "The intermediate size of the model."})
max_position_embeddings: int = field(
default=2048,
metadata={"help": "The maximum sequence length that this model might ever be used with."}
)
vocab_size: int = field(default=50257, metadata={"help": "The vocabulary size of the model."})
type_vocab_size: int = field(default=1, metadata={"help": "The vocabulary size of the model."})
layer_norm_eps: float = field(
default=1e-5,
metadata={"help": "The epsilon used by the layer normalization layers of the model."}
)
moe_topk: int = field(default=4, metadata={"help": "The topk for MOE."})
num_experts: int = field(default=8, metadata={"help": "The number of experts for MOE."})
num_key_value_heads: int = field(default=16, metadata={"help": "The number of key-value heads in GQA."})
moe_intermediate_size: int = field(default=1536, metadata={"help": "The intermediate size of each MoE expert."})
use_mixed_mlp_moe: bool = field(
default=False,
metadata={"help": "Whether to use mixed MoE with shared expert."}
)
num_shared_expert: int = field(default=1, metadata={"help": "Number of shared experts."})
use_qk_norm: bool = field(default=False, metadata={"help": "Whether to use qk norm."})
moe_layer_num_skipped: int = field(default=1, metadata={"help": "Number of initial dense layers before MoE layers."})
tie_word_embeddings: bool = field(
default=True,
metadata={"help": "Whether to tie the word embeddings of the encoder and the decoder."}
)
lora_rank: int = field(default=64, metadata={"help": "The rank of lora."})
lora_alpha: int = field(default=8, metadata={"help": "Lora alpha"})
lora_dropout: float = field(default=0.0, metadata={"help": "Lora dropout"})
train_attention_params_only: bool = field(default=False, metadata={
"help": "Whether to train attention parameters only."}
)
@dataclass
class DataArguments:
train_data_file: str = field(default=None, metadata={"help": "Path to the training data."})
max_seq_length: int = field(
default=2048,
metadata={"help": "The max sequence length of the model inputs after tokenization."}
)
complex_data: Optional[str] = field(default=None)
use_dummy_data: bool = field(default=False, metadata={"help": "Use dummy data."})
@dataclass
class TrainingArguments(transformers.TrainingArguments):
cache_dir: Optional[str] = field(default=None)
optim: str = field(default="adamw_torch")
model_max_length: int = field(
default=2048,
metadata={"help": "Maximum sequence length. Sequences will be right padded (and possibly truncated)."},
)
tokenizer_name_or_path: Optional[str] = field(default=None)
model_name_or_path: Optional[str] = field(default=None)
min_lr: float = field(
default=0.01,
metadata={"help": "The final learning rate at the end of the decay will be learning_rate * min_lr"}
)
IGNORE_INDEX = -100
class DummyDataset(Dataset):
def __init__(self, tokenizer, max_seq_length=512, length=1000):
self.tokenizer = tokenizer
self.max_seq_length = max_seq_length
self.length = length
def __len__(self):
return self.length
def __getitem__(self, index):
tokens = torch.randint(0, self.tokenizer.vocab_size, (self.max_seq_length, ))
return {'input_ids': tokens, 'labels': tokens}
class SFTDataset(Dataset):
def __init__(self, data_file, tokenizer, max_seq_length = 2048, prompt_format = 'mplus'):
self.tokenizer = tokenizer
self.prompt_format = prompt_format
self.max_seq_length = max_seq_length
self.data_list = self.load_data(data_file)
def __len__(self):
return len(self.data_list)
def load_data(self, data_file):
logging.info('Loading data: {}'.format(data_file))
with open(data_file, 'r', encoding='utf8') as f:
data_list = f.readlines()
logging.info("there are {} data in dataset".format(len(data_list)))
return data_list
def encode_data(self, data_dict):
model_inputs = {}
reasoning_effort = data_dict.get('reasoning_effort', None)
if reasoning_effort is None:
reasoning_effort = 'no_think'
template_output = self.tokenizer.apply_chat_template(data_dict['messages'], tokenize=True, return_dict=False, is_training=True, reasoning_effort=reasoning_effort)
if isinstance(template_output, list) and len(template_output) > 0 and isinstance(template_output[0], list):
template_output = template_output[0]
message_tokens = torch.tensor(template_output, dtype=torch.long)
# Use new HunYuan tokenizer special tokens
assistant_token_id = self.tokenizer.convert_tokens_to_ids('<hy_Assistant>')
eos_token_id = self.tokenizer.convert_tokens_to_ids(self.tokenizer.eos_token)
pad_token_id = self.tokenizer.pad_token_id
# Find assistant reply boundaries: starts at <hy_Assistant>, ends at eos_token
loss_token_begins = (message_tokens == assistant_token_id).nonzero(as_tuple=True)[0].tolist()
loss_token_ends = (message_tokens == eos_token_id).nonzero(as_tuple=True)[0].tolist()
message_labels = torch.tensor([IGNORE_INDEX] * message_tokens.shape[0])
for begin_idx, end_idx in zip(loss_token_begins, loss_token_ends):
# Compute loss from the token after <hy_Assistant> to eos_token (inclusive)
message_labels[begin_idx + 1:end_idx + 1] = message_tokens[begin_idx + 1:end_idx + 1]
input_ids = message_tokens.to(torch.long)
labels = message_labels.to(torch.long)
input_ids = input_ids[:self.max_seq_length]
labels = labels[:self.max_seq_length]
attention_mask = [1 if val != pad_token_id else 0 for val in input_ids]
model_inputs["input_ids"] = input_ids
model_inputs["attention_mask"] = torch.tensor(attention_mask, dtype=torch.bool)
model_inputs["labels"] = labels
return model_inputs
def __getitem__(self, index):
data = self.data_list[index]
data = json.loads(data)
model_inputs = self.encode_data(data)
return model_inputs
@dataclass
class DataCollatorForSupervisedDataset(object):
"""Collate examples for supervised fine-tuning."""
tokenizer: transformers.PreTrainedTokenizer
def __call__(self, instances):
input_ids = [instance['input_ids'] for instance in instances]
labels = [instance['labels'] for instance in instances]
pad_token_id = self.tokenizer.pad_token_id
input_ids = torch.nn.utils.rnn.pad_sequence(input_ids, batch_first=True, padding_value=pad_token_id)
labels = torch.nn.utils.rnn.pad_sequence(labels, batch_first=True, padding_value=IGNORE_INDEX)
return dict(
input_ids=input_ids,
labels=labels,
attention_mask=input_ids.ne(pad_token_id),
)
def make_supervised_data_module(tokenizer, data_args) -> Dict:
"""Make dataset and collator for supervised fine-tuning."""
if data_args.use_dummy_data:
train_dataset = DummyDataset(tokenizer, data_args.max_seq_length)
else:
train_dataset = SFTDataset(
tokenizer=tokenizer,
data_file=data_args.train_data_file,
max_seq_length=data_args.max_seq_length
)
data_collator = DataCollatorForSupervisedDataset(tokenizer=tokenizer)
return dict(train_dataset=train_dataset, eval_dataset=None, data_collator=data_collator)
# for full model training, change the config.json, copy the model and configuration to support Auto load
class CustomSaveCallback(TrainerCallback):
def on_save(self, args, state, control, **kwargs):
if torch.distributed.get_rank() == 0:
output_dir = os.path.join(args.output_dir, f"{PREFIX_CHECKPOINT_DIR}-{state.global_step}")
# Copy tokenizer files to checkpoint directory
tokenizer_files = [
'generation_config.json',
'hy.tiktoken',
'tokenizer_config.json',
'tokenization_hy.py',
'tokenizer.json',
'special_tokens_map.json',
'chat_template.jinja',
]
for fname in tokenizer_files:
src = os.path.join(args.tokenizer_name_or_path, fname)
if os.path.isfile(src):
shutil.copy(src, os.path.join(output_dir, fname))
return control
def train():
parser = transformers.HfArgumentParser((ModelArguments, DataArguments, TrainingArguments))
model_args, data_args, training_args = parser.parse_args_into_dataclasses()
print_args(model_args, 'model arguments')
print_args(data_args, 'data arguments')
print_args(training_args, 'training arguments')
tokenizer = transformers.AutoTokenizer.from_pretrained(
training_args.tokenizer_name_or_path,
trust_remote_code = True
)
init_kwargs = {}
if model_args.use_flash_attn:
init_kwargs["attn_implementation"] = "flash_attention_2"
# Workaround: transformers >= 5.x uses importlib.metadata.packages_distributions()
# to verify flash-attn package name, which fails when the package is installed under
# a custom distribution name (e.g. ptm-flash-attn). Patch the check to skip it.
try:
from transformers.modeling_flash_attention_utils import FLASH_ATTENTION_COMPATIBILITY_MATRIX
_orig_pkg_check = FLASH_ATTENTION_COMPATIBILITY_MATRIX[2]["pkg_availability_check"]
FLASH_ATTENTION_COMPATIBILITY_MATRIX[2]["pkg_availability_check"] = lambda *a, **kw: True
print("[Patch] Bypassed flash_attn package distribution name check for FA2.")
except Exception as e:
print(f"[Patch] Could not patch FA2 pkg check (non-fatal): {e}")
if training_args.bf16:
init_kwargs["dtype"] = torch.bfloat16
elif training_args.fp16:
init_kwargs["dtype"] = torch.float16
# Check if model weights exist (not just the directory)
_has_weights = (
training_args.model_name_or_path is not None
and os.path.isdir(training_args.model_name_or_path)
and any(
os.path.isfile(os.path.join(training_args.model_name_or_path, f))
for f in ("model.safetensors", "pytorch_model.bin", "model.safetensors.index.json", "pytorch_model.bin.index.json")
)
)
# -----------------------------------------------------------------------
# Fix: Rename checkpoint keys so that old-style weight names (e.g.
# self_attn.q_norm) are mapped to the current model attribute names
# (e.g. self_attn.query_layernorm). The model's
# _fix_state_dict_key_on_load hook is NOT invoked on the DeepSpeed
# ZeRO-3 loading path, so we monkey-patch the ZeRO-3 loader instead.
# -----------------------------------------------------------------------
_CKPT_KEY_RENAMES = [
("mlp.gate.wg.", "mlp.router.gate."),
]
from transformers.integrations.deepspeed import (
_load_state_dict_into_zero3_model as _orig_load_zero3,
)
import transformers.integrations.deepspeed as _ds_mod
import transformers.modeling_utils as _mu_mod
def _patched_load_zero3(model_to_load, state_dict, load_config=None):
new_sd = {}
for k, v in state_dict.items():
new_k = k
for old_sub, new_sub in _CKPT_KEY_RENAMES:
if old_sub in new_k:
new_k = new_k.replace(old_sub, new_sub)
break
new_sd[new_k] = v
# Call original ZeRO-3 loader for parameters
result = _orig_load_zero3(model_to_load, new_sd, load_config)
# -------------------------------------------------------------------
# Patch: Manually load buffers (e.g. e_score_correction_bias).
# ZeRO-3's loader only handles named_parameters, not named_buffers.
# -------------------------------------------------------------------
buffers_loaded = 0
for name, buf in model_to_load.named_buffers():
if name in new_sd:
src_tensor = new_sd[name]
if isinstance(src_tensor, torch.Tensor):
buf.data.copy_(src_tensor.to(buf.dtype))
buffers_loaded += 1
# Remove from unexpected keys if tracked
if isinstance(result, tuple) and len(result) >= 2:
if isinstance(result[1], set):
result[1].discard(name)
if buffers_loaded > 0:
print(f"[HYV3 Patch] Manually loaded {buffers_loaded} buffers "
f"(e.g. e_score_correction_bias) into model.")
return result
_ds_mod._load_state_dict_into_zero3_model = _patched_load_zero3
_mu_mod._load_state_dict_into_zero3_model = _patched_load_zero3
# -----------------------------------------------------------------------
# -------------------------------------------------------------------
# Patch: Save-time reverse key rename + 3D -> per-expert unfuse.
#
# When saving checkpoints, the model state_dict uses 3D fused experts
# and new naming. We reverse both for old checkpoint compatibility:
# - mlp.gate. -> mlp.router.gate.
# - mlp.e_score_correction_bias -> mlp.expert_bias
# - mlp.shared_experts. -> mlp.shared_mlp.
# - experts.gate_up_proj -> experts.{N}.gate_proj.weight + up_proj
# - experts.down_proj -> experts.{N}.down_proj.weight
# -------------------------------------------------------------------
_SAVE_KEY_RENAMES = [
("mlp.gate.", "mlp.router.gate."),
("mlp.e_score_correction_bias", "mlp.expert_bias"),
("mlp.shared_experts.", "mlp.shared_mlp."),
]
_FUSED_EXPERT_KEY_RE = re.compile(
r"^(.*\.mlp\.experts\.)(gate_up_proj|down_proj)$"
)
def _apply_save_reverse_rename_patch():
try:
from transformers.models.hy_v3.modeling_hy_v3 import HYV3ForCausalLM
except ImportError:
try:
from transformers.hy_v3.modeling_hy_v3 import HYV3ForCausalLM
except ImportError:
print("[HYV3 Patch] Could not import HYV3ForCausalLM; "
"save reverse rename patch NOT applied.")
return
_orig_save_pretrained = HYV3ForCausalLM.save_pretrained
def _patched_save_pretrained(self, *args, **kwargs):
state_dict = kwargs.get("state_dict", None)
if state_dict is not None:
reversed_sd = {}
for k, v in state_dict.items():
new_k = k
# Apply simple key renames
for new_sub, old_sub in _SAVE_KEY_RENAMES:
if new_sub in new_k:
new_k = new_k.replace(new_sub, old_sub)
break
# Check if this is a fused 3D expert key
m = _FUSED_EXPERT_KEY_RE.match(new_k)
if m:
prefix = m.group(1) # e.g. "model.layers.1.mlp.experts."
proj_type = m.group(2) # "gate_up_proj" or "down_proj"
if proj_type == "gate_up_proj":
# v shape: [num_experts, 2*intermediate, hidden]
num_experts = v.shape[0]
intermediate = v.shape[1] // 2
for i in range(num_experts):
gate = v[i, :intermediate, :]
up = v[i, intermediate:, :]
reversed_sd[f"{prefix}{i}.gate_proj.weight"] = gate
reversed_sd[f"{prefix}{i}.up_proj.weight"] = up
elif proj_type == "down_proj":
# v shape: [num_experts, hidden, intermediate]
num_experts = v.shape[0]
for i in range(num_experts):
reversed_sd[f"{prefix}{i}.down_proj.weight"] = v[i]
else:
reversed_sd[new_k] = v
kwargs["state_dict"] = reversed_sd
print(f"[HYV3 Patch] Reverse-renamed and unfused "
f"{len(state_dict)} -> {len(reversed_sd)} "
f"state_dict keys for old checkpoint compatibility.")
return _orig_save_pretrained(self, *args, **kwargs)
HYV3ForCausalLM.save_pretrained = _patched_save_pretrained
print("[HYV3 Patch] Applied: save-time reverse key rename + "
"3D -> per-expert unfuse for old ckpt compatibility.")
_apply_save_reverse_rename_patch()
# -------------------------------------------------------------------
if _has_weights:
print(f"Initializing model from local file: {training_args.model_name_or_path}")
model = transformers.AutoModelForCausalLM.from_pretrained(
training_args.model_name_or_path,
trust_remote_code=True,
**init_kwargs
)
else:
from transformers import HYV3Config
from transformers import HYV3ForCausalLM
print(f"Model weights not found at: {training_args.model_name_or_path}, "
f"using random initialized HYV3 model instead.")
# Use len(tokenizer) to include added special tokens; tokenizer.vocab_size
# may only return the base vocabulary size and miss special tokens whose
# IDs exceed that range, causing index-out-of-bounds in the embedding layer.
config = HYV3Config(
vocab_size=len(tokenizer),
hidden_size=model_args.hidden_size,
intermediate_size=model_args.intermediate_size,
max_position_embeddings=training_args.model_max_length,
moe_topk=model_args.moe_topk,
num_experts=model_args.num_experts,
num_attention_heads=model_args.num_attention_heads,
num_key_value_heads=model_args.num_key_value_heads,
num_hidden_layers=model_args.num_layers,
moe_intermediate_size=model_args.moe_intermediate_size,
use_mixed_mlp_moe=model_args.use_mixed_mlp_moe,
num_shared_expert=model_args.num_shared_expert,
use_qk_norm=model_args.use_qk_norm,
moe_layer_num_skipped=model_args.moe_layer_num_skipped,
tie_word_embeddings=model_args.tie_word_embeddings,
)
with deepspeed.zero.Init(dtype=init_kwargs.get("torch_dtype", torch.bfloat16), config_dict_or_path=training_args.deepspeed):
model = HYV3ForCausalLM(config)
if model_args.train_attention_params_only:
for name, param in model.named_parameters():
if 'self_attn' not in name:
param.requires_grad = False
if model_args.use_lora:
# define Lora configuration
lora_config = LoraConfig(
r=model_args.lora_rank,
lora_alpha=model_args.lora_alpha,
lora_dropout=model_args.lora_dropout,
target_modules=["q_proj", "k_proj", "v_proj", "o_proj"],
bias="none",
task_type="CAUSAL_LM",
)
model = get_peft_model(model, lora_config)
data_module = make_supervised_data_module(tokenizer=tokenizer, data_args=data_args)
# Tell Trainer not to attempt DataParallel
model.is_parallelizable = True
model.model_parallel = True
training_args.lr_scheduler_kwargs = {
'min_lr_rate': training_args.min_lr / training_args.learning_rate,
}
# -----------------------------------------------------------------------
# Fix: DeepSpeed ZeRO-3 + gradient checkpointing compatibility.
#
# PyTorch's torch.utils.checkpoint with use_reentrant=False (the default
# in transformers) performs strict metadata checks on recomputed tensors
# during backward. Under ZeRO-3, parameters are all-gathered during the
# first forward pass (shape=[full_size]) but may be partitioned back
# (shape=[0]) when the checkpoint recomputes, causing a CheckpointError.
#
# Setting use_reentrant=True avoids this strict metadata check.
# -----------------------------------------------------------------------
if training_args.gradient_checkpointing and training_args.deepspeed:
training_args.gradient_checkpointing_kwargs = {"use_reentrant": True}
trainer = Trainer(
model=model,
processing_class=tokenizer,
args=training_args,
callbacks=[CustomSaveCallback],
**data_module
)
model.config.use_cache = False
# -----------------------------------------------------------------------
# Monkey-patch: fix dtype mismatch in DeepSpeed ZeRO-3 linear wrapper.
#
# By this point the DeepSpeed engine has been initialised by the Trainer
# and torch.nn.functional.linear has been replaced with
# zero3_linear_wrap. That wrapper does NOT auto-align input/weight
# dtypes before the matmul, causing "expected mat1 and mat2 to have the
# same dtype" errors in mixed-precision paths (MoE router gate in fp32
# with bf16 weights, expert FFN receiving fp32 routing-weighted input
# with bf16 weights, etc.).
#
# We wrap F.linear HERE (after DeepSpeed init) so that:
# 1. We are sure to capture the already-replaced function.
# 2. The dtype cast happens *outside* the autograd.Function, so
# gradient-checkpointing recompute sees identical tensor metadata.
# -----------------------------------------------------------------------
import torch.nn.functional as _F
_orig_F_linear = _F.linear
def _dtype_safe_linear(input, weight, bias=None):
if input.dtype != weight.dtype:
input = input.to(weight.dtype)
return _orig_F_linear(input, weight, bias)
_F.linear = _dtype_safe_linear
# -----------------------------------------------------------------------
trainer.train(resume_from_checkpoint=training_args.resume_from_checkpoint)
if __name__ == "__main__":
train()

View File

@@ -0,0 +1,120 @@
#!/bin/bash
NET_TYPE="high"
export NCCL_DEBUG=WARN
export NCCL_P2P_LEVEL=NVL
export NCCL_IB_TIMEOUT=24
export NCCL_NVLS_ENABLE=0
export NCCL_MPI_PROFILE_PRIMS_ENABLE=0
export CUDA_DEVICE_MAX_CONNECTIONS=1
export TORCH_NCCL_HEARTBEAT_TIMEOUT_SEC=3600
if [[ "${NET_TYPE}" = "low" ]]; then
export NCCL_SOCKET_IFNAME=eth1
export NCCL_IB_GID_INDEX=3
export NCCL_IB_HCA=mlx5_2:1
export NCCL_IB_SL=3
export NCCL_CHECK_DISABLE=1
export NCCL_P2P_DISABLE=0
export NCCL_LL_THRESHOLD=16384
export NCCL_IB_CUDA_SUPPORT=1
else
export NCCL_IB_GID_INDEX=3
export NCCL_IB_SL=3
export NCCL_CHECK_DISABLE=1
export NCCL_P2P_DISABLE=0
export NCCL_IB_DISABLE=0
export NCCL_LL_THRESHOLD=16384
export NCCL_IB_CUDA_SUPPORT=1
export NCCL_SOCKET_IFNAME=bond1
export UCX_NET_DEVICES=bond1
export NCCL_IB_HCA=mlx5_bond_1,mlx5_bond_5,mlx5_bond_3,mlx5_bond_7,mlx5_bond_4,mlx5_bond_8,mlx5_bond_2,mlx5_bond_6
export NCCL_COLLNET_ENABLE=0
export SHARP_COLL_ENABLE_SAT=0
export NCCL_NET_GDR_LEVEL=2
export NCCL_IB_QPS_PER_CONNECTION=4
export NCCL_IB_TC=160
export NCCL_PXN_DISABLE=1
fi
export HOST_GPU_NUM=8
# IP list, comma separated. e.g. "192.168.1.1,192.168.1.2" or single node "192.168.1.1"
IP_LIST=${IP_LIST:-"127.0.0.1"}
IFS=',' read -ra IP_ARRAY <<< "$IP_LIST"
export NODES=${#IP_ARRAY[@]}
export LOCAL_IP=${IP_ARRAY[0]}
NODE_IP_LIST=""
for ip in "${IP_ARRAY[@]}"; do
if [ -n "$NODE_IP_LIST" ]; then
NODE_IP_LIST="${NODE_IP_LIST},"
fi
NODE_IP_LIST="${NODE_IP_LIST}${ip}:${HOST_GPU_NUM}"
done
export NODE_IP_LIST
export NODE_NUM=$((${NODES} * ${HOST_GPU_NUM}))
SCRIPT_DIR=$(dirname "$0")
model_path=path_to_model_weight
tokenizer_path=../models
train_data_file=example_data.jsonl
# ds_config_file=ds_zero2_no_offload.json
# ds_config_file=ds_zero3_no_offload.json
ds_config_file=${SCRIPT_DIR}/ds_zero3_offload_no_auto.json
output_path=/root/hf_train_output_full
mkdir -p ${output_path}
current_time=$(date "+%Y.%m.%d-%H.%M.%S")
log_file=${output_path}/"log_${current_time}.txt"
echo $NODE_IP_LIST > env.txt 2>&1
sed "s/:/ slots=/g" env.txt | sed "s/,/\n/g" > "hostfile"
sed "s/:.//g" env.txt | sed "s/,/\n/g" > "pssh.hosts"
export CHIEF_IP=$LOCAL_IP
if [ ${NODES} -gt 1 ]; then
HOST_PATH=hostfile
DS_ARGS="--hostfile=${HOST_PATH} --master_addr ${CHIEF_IP}"
else
DS_ARGS=""
fi
echo "NODES: ${NODES}, LOCAL_IP: ${LOCAL_IP}, NODE_IP_LIST: ${NODE_IP_LIST}"
deepspeed ${DS_ARGS} \
${SCRIPT_DIR}/train.py \
--do_train \
--model_name_or_path ${model_path} \
--tokenizer_name_or_path ${tokenizer_path} \
--train_data_file ${train_data_file} \
--deepspeed ${ds_config_file} \
--output_dir ${output_path} \
--per_device_train_batch_size 1 \
--gradient_accumulation_steps 1 \
--gradient_checkpointing \
--lr_scheduler_type cosine_with_min_lr \
--logging_steps 1 \
--max_steps 50 \
--save_steps 50 \
--learning_rate 1e-5 \
--min_lr 1e-6 \
--warmup_ratio 0.01 \
--save_strategy steps \
--bf16 \
--hidden_size 2048 \
--intermediate_size 6912 \
--model_max_length 262144 \
--max_seq_length 8192 \
--moe_topk 8 \
--num_experts 128 \
--moe_intermediate_size 768 \
--moe_layer_num_skipped 1 \
--num_attention_heads 32 \
--num_key_value_heads 4 \
--num_layers 48 \
--use_mixed_mlp_moe \
--num_shared_expert 1 \
--use_qk_norm | tee ${log_file}

View File

@@ -0,0 +1,360 @@
# Copyright 2024 Tencent Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Copyright 2022 EleutherAI and the HuggingFace Inc. team. All rights reserved.
#
# This code is based on EleutherAI's GPT-NeoX library and the GPT-NeoX
# and OPT implementations in this library. It has been modified from its
# original forms to accommodate minor architectural differences compared
# to GPT-NeoX and OPT used by the Meta AI team that trained the model.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Training script for HunYuan Dense models (1.8B, 7B).
This script is adapted from the original finetune.py for dense models,
with improvements from the new training framework (train.py for MoE models).
Key differences from train.py (MoE version):
- No MoE-related patches (router dtype fix, expert key rename, etc.)
- Supports model_size parameter to handle different tokenizer formats
- 7B model uses different special tokens than 1.8B model
"""
import os
import sys
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import json
import torch
import shutil
import logging
from dataclasses import dataclass, field
from typing import Optional, Dict, Literal
import transformers
from torch.utils.data import Dataset
from transformers import Trainer, TrainerCallback
from peft import LoraConfig, get_peft_model, PeftModel
from transformers.trainer_utils import PREFIX_CHECKPOINT_DIR
from transformers.modeling_utils import unwrap_model
def print_args(args, name='arguments'):
"""Print arguments."""
if torch.distributed.get_rank() == 0:
print(f'------------------------ {name} ------------------------', flush=True)
str_list = []
for arg in vars(args):
dots = '.' * (48 - len(arg))
str_list.append(' {} {} {}'.format(arg, dots, getattr(args, arg)))
for arg in sorted(str_list, key=lambda x: x.lower()):
print(arg, flush=True)
print(f'-------------------- end of {name} ---------------------', flush=True)
@dataclass
class ModelArguments:
use_flash_attn: bool = field(
default=False,
metadata={"help": "Enable FlashAttention-2 for faster training."}
)
use_lora: bool = field(default=False, metadata={"help": "Enable Lora for faster training."})
hidden_size: int = field(default=2048, metadata={"help": "The hidden size of the model."})
num_layers: int = field(default=32, metadata={"help": "The number of layers of the model."})
num_attention_heads: int = field(default=16, metadata={"help": "The number of attention heads of the model."})
intermediate_size: int = field(default=6144, metadata={"help": "The intermediate size of the model."})
num_key_value_heads: int = field(default=4, metadata={"help": "The number of key-value heads in GQA."})
use_qk_norm: bool = field(default=False, metadata={"help": "Whether to use qk norm."})
tie_word_embeddings: bool = field(
default=True,
metadata={"help": "Whether to tie the word embeddings of the encoder and the decoder."}
)
lora_rank: int = field(default=64, metadata={"help": "The rank of lora."})
lora_alpha: int = field(default=128, metadata={"help": "Lora alpha"})
lora_dropout: float = field(default=0.0, metadata={"help": "Lora dropout"})
train_attention_params_only: bool = field(default=False, metadata={
"help": "Whether to train attention parameters only."}
)
@dataclass
class DataArguments:
model_size: Literal["0.5B", "1.8B", "4B", "7B"] = field(
default="1.8B",
metadata={"help": "Select the model size from ['0.5B', '1.8B', '4B', '7B']. "
"This affects the tokenizer special tokens used for loss masking."}
)
train_data_file: str = field(default=None, metadata={"help": "Path to the training data."})
max_seq_length: int = field(
default=4096,
metadata={"help": "The max sequence length of the model inputs after tokenization."}
)
use_dummy_data: bool = field(default=False, metadata={"help": "Use dummy data."})
@dataclass
class TrainingArguments(transformers.TrainingArguments):
cache_dir: Optional[str] = field(default=None)
optim: str = field(default="adamw_torch")
model_max_length: int = field(
default=4096,
metadata={"help": "Maximum sequence length. Sequences will be right padded (and possibly truncated)."},
)
tokenizer_name_or_path: Optional[str] = field(default=None)
model_name_or_path: Optional[str] = field(default=None)
min_lr: float = field(
default=1e-6,
metadata={"help": "The minimum learning rate at the end of the cosine decay."}
)
IGNORE_INDEX = -100
class DummyDataset(Dataset):
def __init__(self, tokenizer, max_seq_length=512, length=1000):
self.tokenizer = tokenizer
self.max_seq_length = max_seq_length
self.length = length
def __len__(self):
return self.length
def __getitem__(self, index):
tokens = torch.randint(0, self.tokenizer.vocab_size, (self.max_seq_length,))
return {'input_ids': tokens, 'labels': tokens}
class SFTDataset(Dataset):
def __init__(self, data_file, tokenizer, max_seq_length=4096, model_size="1.8B"):
self.tokenizer = tokenizer
self.max_seq_length = max_seq_length
self.model_size = model_size
self.data_list = self.load_data(data_file)
def __len__(self):
return len(self.data_list)
def load_data(self, data_file):
logging.info('Loading data: {}'.format(data_file))
with open(data_file, 'r', encoding='utf8') as f:
data_list = f.readlines()
logging.info("there are {} data in dataset".format(len(data_list)))
return data_list
def encode_data(self, data_dict):
model_inputs = {}
template_output = self.tokenizer.apply_chat_template(
data_dict['messages'], tokenize=True, return_dict=False
)
if isinstance(template_output, list) and len(template_output) > 0 and isinstance(template_output[0], list):
template_output = template_output[0]
message_tokens = torch.tensor(template_output, dtype=torch.long)
# Note: The 7B model uses a different vocabulary/special tokens than other models.
if self.model_size == "7B":
sep_token_id = self.tokenizer.convert_tokens_to_ids('<|extra_0|>')
eos_token_id = self.tokenizer.convert_tokens_to_ids('<|eos|>')
else:
sep_token_id = self.tokenizer.convert_tokens_to_ids('<hy_Assistant>')
eos_token_id = self.tokenizer.convert_tokens_to_ids('<hy_place▁holder▁no▁2>')
# Find assistant reply boundaries
loss_token_begins = (message_tokens == sep_token_id).nonzero(as_tuple=True)[0].tolist()
loss_token_ends = (message_tokens == eos_token_id).nonzero(as_tuple=True)[0].tolist()
message_labels = torch.tensor([IGNORE_INDEX] * message_tokens.shape[0])
for begin_idx, end_idx in zip(loss_token_begins, loss_token_ends):
# Compute loss from sep_token to eos_token (inclusive)
message_labels[begin_idx:end_idx + 1] = message_tokens[begin_idx:end_idx + 1]
input_ids = message_tokens.to(torch.long)
labels = message_labels.to(torch.long)
input_ids = input_ids[:self.max_seq_length]
labels = labels[:self.max_seq_length]
pad_token_id = self.tokenizer.pad_token_id
attention_mask = [1 if val != pad_token_id else 0 for val in input_ids]
model_inputs["input_ids"] = input_ids
model_inputs["attention_mask"] = torch.tensor(attention_mask, dtype=torch.bool)
model_inputs["labels"] = labels
return model_inputs
def __getitem__(self, index):
data = self.data_list[index]
data = json.loads(data)
model_inputs = self.encode_data(data)
return model_inputs
@dataclass
class DataCollatorForSupervisedDataset(object):
"""Collate examples for supervised fine-tuning."""
tokenizer: transformers.PreTrainedTokenizer
def __call__(self, instances):
input_ids = [instance['input_ids'] for instance in instances]
labels = [instance['labels'] for instance in instances]
pad_token_id = self.tokenizer.pad_token_id
input_ids = torch.nn.utils.rnn.pad_sequence(input_ids, batch_first=True, padding_value=pad_token_id)
labels = torch.nn.utils.rnn.pad_sequence(labels, batch_first=True, padding_value=IGNORE_INDEX)
return dict(
input_ids=input_ids,
labels=labels,
attention_mask=input_ids.ne(pad_token_id),
)
def make_supervised_data_module(tokenizer, data_args) -> Dict:
"""Make dataset and collator for supervised fine-tuning."""
if data_args.use_dummy_data:
train_dataset = DummyDataset(tokenizer, data_args.max_seq_length)
else:
train_dataset = SFTDataset(
tokenizer=tokenizer,
data_file=data_args.train_data_file,
max_seq_length=data_args.max_seq_length,
model_size=data_args.model_size,
)
data_collator = DataCollatorForSupervisedDataset(tokenizer=tokenizer)
return dict(train_dataset=train_dataset, eval_dataset=None, data_collator=data_collator)
# Copy tokenizer and config files to each checkpoint directory for self-contained inference
class CustomSaveCallback(TrainerCallback):
def on_save(self, args, state, control, **kwargs):
if torch.distributed.get_rank() == 0:
output_dir = os.path.join(args.output_dir, f"{PREFIX_CHECKPOINT_DIR}-{state.global_step}")
# Copy tokenizer files to checkpoint directory
tokenizer_files = [
'generation_config.json',
'hy.tiktoken',
'tokenizer_config.json',
'tokenization_hy.py',
'tokenizer.json',
'special_tokens_map.json',
'chat_template.jinja',
'config.json',
]
src_dir = args.tokenizer_name_or_path or args.model_name_or_path
for fname in tokenizer_files:
src = os.path.join(src_dir, fname)
if os.path.isfile(src):
shutil.copy(src, os.path.join(output_dir, fname))
return control
def train():
parser = transformers.HfArgumentParser((ModelArguments, DataArguments, TrainingArguments))
model_args, data_args, training_args = parser.parse_args_into_dataclasses()
print_args(model_args, 'model arguments')
print_args(data_args, 'data arguments')
print_args(training_args, 'training arguments')
tokenizer = transformers.AutoTokenizer.from_pretrained(
training_args.tokenizer_name_or_path,
trust_remote_code=True
)
init_kwargs = {}
if model_args.use_flash_attn:
init_kwargs["attn_implementation"] = "flash_attention_2"
if training_args.bf16:
init_kwargs["torch_dtype"] = torch.bfloat16
elif training_args.fp16:
init_kwargs["torch_dtype"] = torch.float16
# Load model from pretrained weights
if training_args.model_name_or_path is not None and os.path.exists(training_args.model_name_or_path):
print(f"Initializing model from local file: {training_args.model_name_or_path}")
model = transformers.AutoModelForCausalLM.from_pretrained(
training_args.model_name_or_path,
trust_remote_code=True,
**init_kwargs
)
else:
raise FileNotFoundError(
f"Model path {training_args.model_name_or_path} is invalid or does not exist. "
f"Dense model training requires pre-trained weights."
)
if model_args.train_attention_params_only:
for name, param in model.named_parameters():
if 'self_attn' not in name:
param.requires_grad = False
if model_args.use_lora:
# Define LoRA configuration
lora_config = LoraConfig(
r=model_args.lora_rank,
lora_alpha=model_args.lora_alpha,
lora_dropout=model_args.lora_dropout,
target_modules=["q_proj", "k_proj", "v_proj", "o_proj"],
bias="none",
task_type="CAUSAL_LM",
)
model = get_peft_model(model, lora_config)
data_module = make_supervised_data_module(tokenizer=tokenizer, data_args=data_args)
# Tell Trainer not to attempt DataParallel
model.is_parallelizable = True
model.model_parallel = True
training_args.lr_scheduler_kwargs = {
'min_lr_rate': training_args.min_lr / training_args.learning_rate,
}
# -----------------------------------------------------------------------
# Fix: DeepSpeed ZeRO-3 + gradient checkpointing compatibility.
#
# PyTorch's torch.utils.checkpoint with use_reentrant=False (the default
# in transformers) performs strict metadata checks on recomputed tensors
# during backward. Under ZeRO-3, parameters are all-gathered during the
# first forward pass (shape=[full_size]) but may be partitioned back
# (shape=[0]) when the checkpoint recomputes, causing a CheckpointError.
#
# Setting use_reentrant=True avoids this strict metadata check.
# -----------------------------------------------------------------------
if training_args.gradient_checkpointing and training_args.deepspeed:
training_args.gradient_checkpointing_kwargs = {"use_reentrant": True}
trainer = Trainer(
model=model,
processing_class=tokenizer,
args=training_args,
callbacks=[CustomSaveCallback],
**data_module
)
model.config.use_cache = False
trainer.train(resume_from_checkpoint=training_args.resume_from_checkpoint)
if __name__ == "__main__":
train()

View File

@@ -0,0 +1,155 @@
#!/bin/bash
# Unified Dense model full fine-tuning script
# Supports: 1.8B and 7B dense models
# Usage: bash train_dense.sh [1.8B|7B]
# - 1.8B: 1x GPU (24GB+), DeepSpeed ZeRO-2 (no offload)
# - 7B: 2x GPU (80GB+ each), DeepSpeed ZeRO-3 (no offload)
# ============== Model Size Selection ==============
MODEL_SIZE=${1:-"1.8B"}
if [[ "${MODEL_SIZE}" != "1.8B" && "${MODEL_SIZE}" != "7B" ]]; then
echo "Error: MODEL_SIZE must be '1.8B' or '7B', got '${MODEL_SIZE}'"
echo "Usage: bash train_dense.sh [1.8B|7B]"
exit 1
fi
# ============== NCCL Configuration ==============
NET_TYPE="high"
export NCCL_DEBUG=WARN
export NCCL_P2P_LEVEL=NVL
export NCCL_IB_TIMEOUT=24
export NCCL_NVLS_ENABLE=0
export NCCL_MPI_PROFILE_PRIMS_ENABLE=0
export CUDA_DEVICE_MAX_CONNECTIONS=1
export TORCH_NCCL_HEARTBEAT_TIMEOUT_SEC=3600
if [[ "${NET_TYPE}" = "low" ]]; then
export NCCL_SOCKET_IFNAME=eth1
export NCCL_IB_GID_INDEX=3
export NCCL_IB_HCA=mlx5_2:1
export NCCL_IB_SL=3
export NCCL_CHECK_DISABLE=1
export NCCL_P2P_DISABLE=0
export NCCL_LL_THRESHOLD=16384
export NCCL_IB_CUDA_SUPPORT=1
else
export NCCL_IB_GID_INDEX=3
export NCCL_IB_SL=3
export NCCL_CHECK_DISABLE=1
export NCCL_P2P_DISABLE=0
export NCCL_IB_DISABLE=0
export NCCL_LL_THRESHOLD=16384
export NCCL_IB_CUDA_SUPPORT=1
export NCCL_SOCKET_IFNAME=bond1
export UCX_NET_DEVICES=bond1
export NCCL_IB_HCA=mlx5_bond_1,mlx5_bond_5,mlx5_bond_3,mlx5_bond_7,mlx5_bond_4,mlx5_bond_8,mlx5_bond_2,mlx5_bond_6
export NCCL_COLLNET_ENABLE=0
export SHARP_COLL_ENABLE_SAT=0
export NCCL_NET_GDR_LEVEL=2
export NCCL_IB_QPS_PER_CONNECTION=4
export NCCL_IB_TC=160
export NCCL_PXN_DISABLE=1
fi
# ============== Model-specific Configuration ==============
SCRIPT_DIR=$(dirname "$0")
if [[ "${MODEL_SIZE}" == "1.8B" ]]; then
export HOST_GPU_NUM=1
model_path=path_to_dense_1_8b_model
ds_config_file=${SCRIPT_DIR}/ds_zero2_no_offload.json
output_path=./dense_1_8b_output
HIDDEN_SIZE=2048
INTERMEDIATE_SIZE=6144
NUM_ATTENTION_HEADS=16
NUM_KEY_VALUE_HEADS=4
NUM_LAYERS=32
else
export HOST_GPU_NUM=2
model_path=path_to_dense_7b_model
ds_config_file=${SCRIPT_DIR}/ds_zero3_no_offload.json
output_path=./dense_7b_output
HIDDEN_SIZE=4096
INTERMEDIATE_SIZE=14336
NUM_ATTENTION_HEADS=32
NUM_KEY_VALUE_HEADS=8
NUM_LAYERS=32
fi
tokenizer_path=${model_path}
train_data_file=../data/example_data.jsonl
# ============== Multi-node Configuration ==============
# IP list, comma separated. e.g. "192.168.1.1,192.168.1.2" or single node "192.168.1.1"
IP_LIST=${IP_LIST:-"127.0.0.1"}
IFS=',' read -ra IP_ARRAY <<< "$IP_LIST"
export NODES=${#IP_ARRAY[@]}
export LOCAL_IP=${IP_ARRAY[0]}
NODE_IP_LIST=""
for ip in "${IP_ARRAY[@]}"; do
if [ -n "$NODE_IP_LIST" ]; then
NODE_IP_LIST="${NODE_IP_LIST},"
fi
NODE_IP_LIST="${NODE_IP_LIST}${ip}:${HOST_GPU_NUM}"
done
export NODE_IP_LIST
export NODE_NUM=$((${NODES} * ${HOST_GPU_NUM}))
# ============== Output & Logging ==============
mkdir -p ${output_path}
current_time=$(date "+%Y.%m.%d-%H.%M.%S")
log_file=${output_path}/"log_${current_time}.txt"
echo $NODE_IP_LIST > env.txt 2>&1
sed "s/:/ slots=/g" env.txt | sed "s/,/\n/g" > "hostfile"
sed "s/:.//g" env.txt | sed "s/,/\n/g" > "pssh.hosts"
export CHIEF_IP=$LOCAL_IP
if [ ${NODES} -gt 1 ]; then
HOST_PATH=hostfile
DS_ARGS="--hostfile=${HOST_PATH} --master_addr ${CHIEF_IP}"
else
DS_ARGS=""
fi
echo "============================================"
echo "Dense ${MODEL_SIZE} full fine-tuning"
echo "NODES: ${NODES}, LOCAL_IP: ${LOCAL_IP}, NODE_IP_LIST: ${NODE_IP_LIST}"
echo "DeepSpeed config: ${ds_config_file}"
echo "Model path: ${model_path}"
echo "Output path: ${output_path}"
echo "============================================"
# ============== Launch Training ==============
deepspeed ${DS_ARGS} \
${SCRIPT_DIR}/train_dense.py \
--do_train \
--model_size ${MODEL_SIZE} \
--model_name_or_path ${model_path} \
--tokenizer_name_or_path ${tokenizer_path} \
--train_data_file ${train_data_file} \
--deepspeed ${ds_config_file} \
--output_dir ${output_path} \
--per_device_train_batch_size 1 \
--gradient_accumulation_steps 1 \
--gradient_checkpointing \
--lr_scheduler_type cosine_with_min_lr \
--logging_steps 1 \
--max_steps 30 \
--save_steps 30 \
--learning_rate 1e-5 \
--min_lr 1e-6 \
--warmup_ratio 0.01 \
--save_strategy steps \
--bf16 \
--hidden_size ${HIDDEN_SIZE} \
--intermediate_size ${INTERMEDIATE_SIZE} \
--num_attention_heads ${NUM_ATTENTION_HEADS} \
--num_key_value_heads ${NUM_KEY_VALUE_HEADS} \
--num_layers ${NUM_LAYERS} \
--model_max_length 4096 \
--max_seq_length 4096 \
--use_qk_norm | tee ${log_file}

View File

@@ -0,0 +1,161 @@
#!/bin/bash
# Unified Dense model LoRA fine-tuning script
# Supports: 1.8B and 7B dense models
# Usage: bash train_dense_lora.sh [1.8B|7B]
# - 1.8B: 1x GPU (24GB+), DeepSpeed ZeRO-2 (no offload)
# - 7B: 1x GPU (80GB+), DeepSpeed ZeRO-2 (no offload)
# LoRA greatly reduces memory requirements compared to full fine-tuning.
# ============== Model Size Selection ==============
MODEL_SIZE=${1:-"1.8B"}
if [[ "${MODEL_SIZE}" != "1.8B" && "${MODEL_SIZE}" != "7B" ]]; then
echo "Error: MODEL_SIZE must be '1.8B' or '7B', got '${MODEL_SIZE}'"
echo "Usage: bash train_dense_lora.sh [1.8B|7B]"
exit 1
fi
# ============== NCCL Configuration ==============
NET_TYPE="high"
export NCCL_DEBUG=WARN
export NCCL_P2P_LEVEL=NVL
export NCCL_IB_TIMEOUT=24
export NCCL_NVLS_ENABLE=0
export NCCL_MPI_PROFILE_PRIMS_ENABLE=0
export CUDA_DEVICE_MAX_CONNECTIONS=1
export TORCH_NCCL_HEARTBEAT_TIMEOUT_SEC=3600
if [[ "${NET_TYPE}" = "low" ]]; then
export NCCL_SOCKET_IFNAME=eth1
export NCCL_IB_GID_INDEX=3
export NCCL_IB_HCA=mlx5_2:1
export NCCL_IB_SL=3
export NCCL_CHECK_DISABLE=1
export NCCL_P2P_DISABLE=0
export NCCL_LL_THRESHOLD=16384
export NCCL_IB_CUDA_SUPPORT=1
else
export NCCL_IB_GID_INDEX=3
export NCCL_IB_SL=3
export NCCL_CHECK_DISABLE=1
export NCCL_P2P_DISABLE=0
export NCCL_IB_DISABLE=0
export NCCL_LL_THRESHOLD=16384
export NCCL_IB_CUDA_SUPPORT=1
export NCCL_SOCKET_IFNAME=bond1
export UCX_NET_DEVICES=bond1
export NCCL_IB_HCA=mlx5_bond_1,mlx5_bond_5,mlx5_bond_3,mlx5_bond_7,mlx5_bond_4,mlx5_bond_8,mlx5_bond_2,mlx5_bond_6
export NCCL_COLLNET_ENABLE=0
export SHARP_COLL_ENABLE_SAT=0
export NCCL_NET_GDR_LEVEL=2
export NCCL_IB_QPS_PER_CONNECTION=4
export NCCL_IB_TC=160
export NCCL_PXN_DISABLE=1
fi
# ============== Model-specific Configuration ==============
SCRIPT_DIR=$(dirname "$0")
# LoRA training uses ZeRO-2 (no offload) for both 1.8B and 7B
# since only adapter parameters are trained, memory usage is much lower
export HOST_GPU_NUM=1
ds_config_file=${SCRIPT_DIR}/ds_zero2_no_offload.json
if [[ "${MODEL_SIZE}" == "1.8B" ]]; then
model_path=path_to_dense_1_8b_model
output_path=dense_1_8b_lora_output
HIDDEN_SIZE=2048
INTERMEDIATE_SIZE=6144
NUM_ATTENTION_HEADS=16
NUM_KEY_VALUE_HEADS=4
NUM_LAYERS=32
else
model_path=path_to_dense_7b_model
output_path=dense_7b_lora_output
HIDDEN_SIZE=4096
INTERMEDIATE_SIZE=14336
NUM_ATTENTION_HEADS=32
NUM_KEY_VALUE_HEADS=8
NUM_LAYERS=32
fi
tokenizer_path=${model_path}
train_data_file=${SCRIPT_DIR}/../data/example_data.jsonl
# ============== Multi-node Configuration ==============
# IP list, comma separated. e.g. "192.168.1.1,192.168.1.2" or single node "192.168.1.1"
IP_LIST=${IP_LIST:-"127.0.0.1"}
IFS=',' read -ra IP_ARRAY <<< "$IP_LIST"
export NODES=${#IP_ARRAY[@]}
export LOCAL_IP=${IP_ARRAY[0]}
NODE_IP_LIST=""
for ip in "${IP_ARRAY[@]}"; do
if [ -n "$NODE_IP_LIST" ]; then
NODE_IP_LIST="${NODE_IP_LIST},"
fi
NODE_IP_LIST="${NODE_IP_LIST}${ip}:${HOST_GPU_NUM}"
done
export NODE_IP_LIST
export NODE_NUM=$((${NODES} * ${HOST_GPU_NUM}))
# ============== Output & Logging ==============
mkdir -p ${output_path}
current_time=$(date "+%Y.%m.%d-%H.%M.%S")
log_file=${output_path}/"log_${current_time}.txt"
echo $NODE_IP_LIST > env.txt 2>&1
sed "s/:/ slots=/g" env.txt | sed "s/,/\n/g" > "hostfile"
sed "s/:.//g" env.txt | sed "s/,/\n/g" > "pssh.hosts"
export CHIEF_IP=$LOCAL_IP
if [ ${NODES} -gt 1 ]; then
HOST_PATH=hostfile
DS_ARGS="--hostfile=${HOST_PATH} --master_addr ${CHIEF_IP}"
else
DS_ARGS=""
fi
echo "============================================"
echo "Dense ${MODEL_SIZE} LoRA fine-tuning"
echo "NODES: ${NODES}, LOCAL_IP: ${LOCAL_IP}, NODE_IP_LIST: ${NODE_IP_LIST}"
echo "DeepSpeed config: ${ds_config_file}"
echo "Model path: ${model_path}"
echo "Output path: ${output_path}"
echo "============================================"
# ============== Launch Training ==============
deepspeed ${DS_ARGS} \
${SCRIPT_DIR}/train_dense.py \
--do_train \
--model_size ${MODEL_SIZE} \
--model_name_or_path ${model_path} \
--tokenizer_name_or_path ${tokenizer_path} \
--train_data_file ${train_data_file} \
--deepspeed ${ds_config_file} \
--output_dir ${output_path} \
--per_device_train_batch_size 1 \
--gradient_accumulation_steps 1 \
--gradient_checkpointing \
--lr_scheduler_type cosine_with_min_lr \
--logging_steps 1 \
--max_steps 30 \
--save_steps 30 \
--learning_rate 2e-4 \
--min_lr 1e-5 \
--warmup_ratio 0.01 \
--save_strategy steps \
--bf16 \
--hidden_size ${HIDDEN_SIZE} \
--intermediate_size ${INTERMEDIATE_SIZE} \
--num_attention_heads ${NUM_ATTENTION_HEADS} \
--num_key_value_heads ${NUM_KEY_VALUE_HEADS} \
--num_layers ${NUM_LAYERS} \
--model_max_length 4096 \
--max_seq_length 4096 \
--use_qk_norm \
--use_lora \
--lora_rank 64 \
--lora_alpha 128 \
--lora_dropout 0.05 | tee ${log_file}

View File

@@ -0,0 +1,125 @@
#!/bin/bash
NET_TYPE="high"
export NCCL_DEBUG=WARN
export NCCL_P2P_LEVEL=NVL
export NCCL_IB_TIMEOUT=24
export NCCL_NVLS_ENABLE=0
export NCCL_MPI_PROFILE_PRIMS_ENABLE=0
export CUDA_DEVICE_MAX_CONNECTIONS=1
export TORCH_NCCL_HEARTBEAT_TIMEOUT_SEC=3600
if [[ "${NET_TYPE}" = "low" ]]; then
export NCCL_SOCKET_IFNAME=eth1
export NCCL_IB_GID_INDEX=3
export NCCL_IB_HCA=mlx5_2:1
export NCCL_IB_SL=3
export NCCL_CHECK_DISABLE=1
export NCCL_P2P_DISABLE=0
export NCCL_LL_THRESHOLD=16384
export NCCL_IB_CUDA_SUPPORT=1
else
export NCCL_IB_GID_INDEX=3
export NCCL_IB_SL=3
export NCCL_CHECK_DISABLE=1
export NCCL_P2P_DISABLE=0
export NCCL_IB_DISABLE=0
export NCCL_LL_THRESHOLD=16384
export NCCL_IB_CUDA_SUPPORT=1
export NCCL_SOCKET_IFNAME=bond1
export UCX_NET_DEVICES=bond1
export NCCL_IB_HCA=mlx5_bond_1,mlx5_bond_5,mlx5_bond_3,mlx5_bond_7,mlx5_bond_4,mlx5_bond_8,mlx5_bond_2,mlx5_bond_6
export NCCL_COLLNET_ENABLE=0
export SHARP_COLL_ENABLE_SAT=0
export NCCL_NET_GDR_LEVEL=2
export NCCL_IB_QPS_PER_CONNECTION=4
export NCCL_IB_TC=160
export NCCL_PXN_DISABLE=1
fi
export HOST_GPU_NUM=8
# IP list, comma separated. e.g. "192.168.1.1,192.168.1.2" or single node "192.168.1.1"
IP_LIST=${IP_LIST:-"127.0.0.1"}
IFS=',' read -ra IP_ARRAY <<< "$IP_LIST"
export NODES=${#IP_ARRAY[@]}
export LOCAL_IP=${IP_ARRAY[0]}
NODE_IP_LIST=""
for ip in "${IP_ARRAY[@]}"; do
if [ -n "$NODE_IP_LIST" ]; then
NODE_IP_LIST="${NODE_IP_LIST},"
fi
NODE_IP_LIST="${NODE_IP_LIST}${ip}:${HOST_GPU_NUM}"
done
export NODE_IP_LIST
export NODE_NUM=$((${NODES} * ${HOST_GPU_NUM}))
SCRIPT_DIR=$(dirname "$0")
model_path=path_to_model_weight
tokenizer_path=../models
train_data_file=example_data.jsonl
# ds_config_file=ds_zero2_no_offload.json
# ds_config_file=ds_zero3_no_offload.json
# For LoRA, zero2_offload is recommended to save memory
ds_config_file=${SCRIPT_DIR}/ds_zero2_no_offload.json
output_path=/root/hf_train_output
mkdir -p ${output_path}
current_time=$(date "+%Y.%m.%d-%H.%M.%S")
log_file=${output_path}/"log_${current_time}.txt"
echo $NODE_IP_LIST > env.txt 2>&1
sed "s/:/ slots=/g" env.txt | sed "s/,/\n/g" > "hostfile"
sed "s/:.//g" env.txt | sed "s/,/\n/g" > "pssh.hosts"
export CHIEF_IP=$LOCAL_IP
if [ ${NODES} -gt 1 ]; then
HOST_PATH=hostfile
DS_ARGS="--hostfile=${HOST_PATH} --master_addr ${CHIEF_IP}"
else
DS_ARGS=""
fi
echo "NODES: ${NODES}, LOCAL_IP: ${LOCAL_IP}, NODE_IP_LIST: ${NODE_IP_LIST}"
deepspeed ${DS_ARGS} \
${SCRIPT_DIR}/train.py \
--do_train \
--model_name_or_path ${model_path} \
--tokenizer_name_or_path ${tokenizer_path} \
--train_data_file ${train_data_file} \
--deepspeed ${ds_config_file} \
--output_dir ${output_path} \
--per_device_train_batch_size 1 \
--gradient_accumulation_steps 1 \
--gradient_checkpointing \
--lr_scheduler_type cosine_with_min_lr \
--logging_steps 1 \
--max_steps 200 \
--save_steps 100 \
--learning_rate 1e-5 \
--min_lr 1e-6 \
--warmup_ratio 0.01 \
--save_strategy steps \
--bf16 \
--use_lora \
--lora_rank 64 \
--lora_alpha 128 \
--lora_dropout 0.1 \
--hidden_size 2048 \
--intermediate_size 6912 \
--model_max_length 8192 \
--max_seq_length 8192 \
--moe_topk 8 \
--num_experts 128 \
--moe_intermediate_size 768 \
--moe_layer_num_skipped 1 \
--num_attention_heads 32 \
--num_key_value_heads 4 \
--num_layers 48 \
--use_mixed_mlp_moe \
--num_shared_expert 1 \
--use_qk_norm | tee ${log_file}