178 lines
4.9 KiB
Python
178 lines
4.9 KiB
Python
from unsloth import FastLanguageModel
|
|
from transformers import (
|
|
AutoModelForCausalLM,
|
|
DataCollatorForSeq2Seq,
|
|
AutoTokenizer,
|
|
)
|
|
from trl import SFTConfig, SFTTrainer
|
|
from unsloth.chat_templates import (
|
|
get_chat_template,
|
|
standardize_sharegpt,
|
|
train_on_responses_only,
|
|
)
|
|
from datasets import load_dataset
|
|
from peft import AutoPeftModelForCausalLM
|
|
import torch
|
|
|
|
max_seq_length = 2048
|
|
dtype = None
|
|
load_in_4bit = True
|
|
|
|
fourbit_models = [
|
|
"unsloth/Meta-Llama-3.1-8B-bnb-4bit",
|
|
"unsloth/Meta-Llama-3.1-8B-Instruct-bnb-4bit",
|
|
"unsloth/Meta-Llama-3.1-70B-bnb-4bit",
|
|
"unsloth/Meta-Llama-3.1-405B-bnb-4bit",
|
|
"unsloth/Mistral-Small-Instruct-2409",
|
|
"unsloth/mistral-7b-instruct-v0.3-bnb-4bit",
|
|
"unsloth/Phi-3.5-mini-instruct",
|
|
"unsloth/Phi-3-medium-4k-instruct",
|
|
"unsloth/gemma-2-9b-bnb-4bit",
|
|
"unsloth/gemma-2-27b-bnb-4bit",
|
|
"unsloth/Llama-3.2-1B-bnb-4bit",
|
|
"unsloth/Llama-3.2-1B-Instruct-bnb-4bit",
|
|
"unsloth/Llama-3.2-3B-bnb-4bit",
|
|
"unsloth/Llama-3.2-3B-Instruct-bnb-4bit",
|
|
"unsloth/Llama-3.3-70B-Instruct-bnb-4bit",
|
|
]
|
|
|
|
model, tokenizer = FastLanguageModel.from_pretrained(
|
|
model_name="unsloth/Llama-3.2-1B-Instruct",
|
|
max_seq_length=max_seq_length,
|
|
dtype=dtype,
|
|
load_in_4bit=load_in_4bit,
|
|
)
|
|
|
|
model: AutoModelForCausalLM = FastLanguageModel.get_peft_model(
|
|
model,
|
|
r=16,
|
|
target_modules=[
|
|
"q_proj",
|
|
"k_proj",
|
|
"v_proj",
|
|
"o_proj",
|
|
"gate_proj",
|
|
"up_proj",
|
|
"down_proj",
|
|
],
|
|
lora_alpha=16,
|
|
lora_dropout=0,
|
|
bias="none",
|
|
use_gradient_checkpointing="unsloth",
|
|
random_state=3407,
|
|
use_rslora=False,
|
|
loftq_config=None,
|
|
)
|
|
|
|
tokenizer = get_chat_template(tokenizer, chat_template="llama-3.1")
|
|
|
|
|
|
def formatting_prompts_func(examples):
|
|
convos = examples["conversations"]
|
|
texts = [
|
|
tokenizer.apply_chat_template(
|
|
convo, tokenize=False, add_generation_prompt=False
|
|
)
|
|
for convo in convos
|
|
]
|
|
return {"text": texts}
|
|
|
|
|
|
dataset = load_dataset("mlabonne/FineTome-100k", split="train")
|
|
dataset = standardize_sharegpt(dataset)
|
|
dataset = dataset.map(formatting_prompts_func, batched=True)
|
|
dataset[5]["conversations"]
|
|
dataset[5]["text"]
|
|
|
|
trainer = SFTTrainer(
|
|
model=model,
|
|
tokenizer=tokenizer,
|
|
train_dataset=dataset,
|
|
dataset_text_field="text",
|
|
max_seq_length=max_seq_length,
|
|
data_collator=DataCollatorForSeq2Seq(tokenizer=tokenizer),
|
|
dataset_num_proc=2,
|
|
packing=False,
|
|
args=SFTConfig(
|
|
per_device_train_batch_size=2,
|
|
gradient_accumulation_steps=4,
|
|
warmup_steps=5,
|
|
max_steps=10,
|
|
learning_rate=2e-4,
|
|
logging_steps=1,
|
|
optim="adamw_8bit",
|
|
weight_decay=0.01,
|
|
lr_scheduler_type="linear",
|
|
seed=3407,
|
|
output_dir="outputs",
|
|
report_to="none",
|
|
),
|
|
)
|
|
|
|
trainer = train_on_responses_only(
|
|
trainer,
|
|
instruction_part="<|start_header_id|>user<|end_header_id|>\n\n",
|
|
response_part="<|start_header_id|>assistant<|end_header_id|>\n\n",
|
|
)
|
|
|
|
tokenizer.decode(trainer.train_dataset[5]["input_ids"])
|
|
space = tokenizer(" ", add_special_tokens=False).input_ids[0]
|
|
tokenizer.decode(
|
|
[space if x == -100 else x for x in trainer.train_dataset[5]["labels"]]
|
|
)
|
|
|
|
gpu_stats = torch.cuda.get_device_properties(0)
|
|
start_gpu_memory = round(
|
|
torch.cuda.max_memory_reserved() / 1024 / 1024 / 1024, 3
|
|
)
|
|
max_memory = round(gpu_stats.total_memory / 1024 / 1024 / 1024, 3)
|
|
print(f"GPU = {gpu_stats.name}. Max memory = {max_memory} GB.")
|
|
print(f"{start_gpu_memory} GB of memory reserved.")
|
|
|
|
trainer_stats = trainer.train()
|
|
|
|
used_memory = round(
|
|
torch.cuda.max_memory_reserved() / 1024 / 1024 / 1024, 3
|
|
)
|
|
used_memory_for_lora = round(used_memory - start_gpu_memory, 3)
|
|
used_percentage = round(used_memory / max_memory * 100, 3)
|
|
lora_percentage = round(used_memory_for_lora / max_memory * 100, 3)
|
|
print(f"{trainer_stats.metrics['train_runtime']} seconds used for training.")
|
|
print(
|
|
f"{round(trainer_stats.metrics['train_runtime'] / 60, 2)} minutes used for training."
|
|
)
|
|
print(f"Peak reserved memory = {used_memory} GB.")
|
|
print(f"Peak reserved memory for training = {used_memory_for_lora} GB.")
|
|
print(f"Peak reserved memory % of max memory = {used_percentage} %.")
|
|
print(
|
|
f"Peak reserved memory for training % of max memory = {lora_percentage} %."
|
|
)
|
|
|
|
tokenizer = get_chat_template(tokenizer, chat_template="llama-3.1")
|
|
FastLanguageModel.for_inference(model)
|
|
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": "Continue the fibonnaci sequence: 1, 1, 2, 3, 5, 8,",
|
|
},
|
|
]
|
|
inputs = tokenizer.apply_chat_template(
|
|
messages,
|
|
tokenize=True,
|
|
add_generation_prompt=True,
|
|
return_tensors="pt",
|
|
).to("cuda")
|
|
|
|
|
|
model.gradient_checkpointing_disable() # This is required if using transformers >= 4.53.0 and `use_cache=True`
|
|
|
|
outputs = model.generate(
|
|
input_ids=inputs,
|
|
max_new_tokens=64,
|
|
use_cache=True,
|
|
temperature=1.5,
|
|
min_p=0.1,
|
|
)
|
|
print(tokenizer.batch_decode(outputs))
|
|
|