🚀 llama-3-bophades-v3-8B
llama-3-bophades-v3-8B
是一個基於 Llama-3-8b 的模型,它為相關領域的應用提供了強大的支持。該模型在特定數據集上進行了微調,以提升其性能和適用性。
🚀 快速開始
此模型基於 Llama-3-8b,並遵循 META LLAMA 3 社區許可協議。
nbeerbower/llama-3-wissenschaft-8B 在 jondurbin/truthy-dpo-v0.1 和 kyujinpy/orca_math_dpo 數據集上進行了微調。
✨ 主要特性
微調方法
在 Google Colab 的 A100 上進行微調。參考文章:使用直接偏好優化微調 Mistral-7b 模型 - Maxime Labonne
📚 詳細文檔
配置信息
數據集準備和消息格式化
def chatml_format(example):
system = ""
if example.get('system'):
system = "<|im_start|>system\n" + example['system'] + "<|im_end|>\n"
instruction = ""
if example.get('prompt'):
instruction = example['prompt']
if example.get('question'):
instruction = example['question']
prompt = "<|im_start|>user\n" + instruction + "<|im_end|>\n<|im_start|>assistant\n"
chosen = example['chosen'] + "<|im_end|>\n"
rejected = example['rejected'] + "<|im_end|>\n"
return {
"prompt": system + prompt,
"chosen": chosen,
"rejected": rejected,
}
ds = [
"jondurbin/truthy-dpo-v0.1",
"kyujinpy/orca_math_dpo"
]
loaded_datasets = [load_dataset(dataset_name, split='train') for dataset_name in ds]
dataset = concatenate_datasets(loaded_datasets)
original_columns = dataset.column_names
tokenizer = AutoTokenizer.from_pretrained(model_name)
tokenizer.pad_token = tokenizer.eos_token
tokenizer.padding_side = "left"
dataset = dataset.map(
chatml_format,
remove_columns=original_columns
)
LoRA、模型和訓練設置
peft_config = LoraConfig(
r=16,
lora_alpha=16,
lora_dropout=0.05,
bias="none",
task_type="CAUSAL_LM",
target_modules=['k_proj', 'gate_proj', 'v_proj', 'up_proj', 'q_proj', 'o_proj', 'down_proj']
)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype=torch.bfloat16,
load_in_4bit=True
)
model.config.use_cache = False
ref_model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype=torch.bfloat16,
load_in_4bit=True
)
training_args = TrainingArguments(
per_device_train_batch_size=2,
gradient_accumulation_steps=4,
gradient_checkpointing=True,
learning_rate=5e-5,
lr_scheduler_type="cosine",
max_steps=1000,
save_strategy="no",
logging_steps=1,
output_dir=new_model,
optim="paged_adamw_32bit",
warmup_steps=100,
bf16=True,
report_to="wandb",
)
dpo_trainer = DPOTrainer(
model,
ref_model,
args=training_args,
train_dataset=dataset,
tokenizer=tokenizer,
peft_config=peft_config,
beta=0.1,
max_prompt_length=2048,
max_length=4096,
force_use_ref_model=True
)
dpo_trainer.train()
📄 許可證
此模型使用的許可證為其他類型,許可證名稱為 llama3,遵循 META LLAMA 3 社區許可協議。
屬性 |
詳情 |
庫名稱 |
transformers |
基礎模型 |
nbeerbower/llama-3-wissenschaft-8B |
訓練數據集 |
jondurbin/truthy-dpo-v0.1、kyujinpy/orca_math_dpo |
許可證 |
其他(llama3) |
