Explorarea LLM-urilor pre-antrenate

Reinforcement Learning from Human Feedback (RLHF)

Mina Parham

AI Engineer

Importanța fine-tuning-ului

Diagramă care ilustrează procesul RLHF.

Reinforcement Learning from Human Feedback (RLHF)

Importanța fine-tuning-ului

Diagramă reprezentând un LLM cu intrare și ieșire.

Reinforcement Learning from Human Feedback (RLHF)

Ghid pas cu pas pentru fine-tuning unui LLM

Pictogramă reprezentând un LLM antrenat să recunoască sentimentul tweet-urilor.

Reinforcement Learning from Human Feedback (RLHF)

Ghid pas cu pas pentru fine-tuning unui LLM

Pictogramă reprezentând un LLM antrenat să recunoască sentimentul tweet-urilor, generând un rezultat incorect.

Reinforcement Learning from Human Feedback (RLHF)

Ghid pas cu pas pentru fine-tuning unui LLM

Pictogramă reprezentând un LLM pentru recunoașterea sentimentului tweet-urilor, pre-antrenat cu un set mare de date.

Reinforcement Learning from Human Feedback (RLHF)

Pasul 1: încărcarea datelor

from datasets import load_dataset
import pandas as pd

# `load_dataset` simplifies loading and preprocessing datasets from various sources
# It provides easy access to a wide range of datasets with minimal setup
dataset = load_dataset("mteb/tweet_sentiment_extraction")
df = pd.DataFrame(dataset['train'])
    id               text                                        label   label_text
0   cb774db0d1       I'd have responded, if I were going         1       neutral
1   549e992a42       Sooo SAD I will miss you in San Diego!!!    0       negative
2   08ac60f138       my boss is bullying me...                   0       negative
Reinforcement Learning from Human Feedback (RLHF)

Pasul 2: alegerea unui model pre-antrenat

from transformers import AutoModelForCausalLM

# AutoModelForCausalLM simplifies loading and switching models
model = AutoModelForCausalLM.from_pretrained("openai-gpt")

 

  • Modele cauzale: tokenii anteriori „cauzează" tokenii următori
Reinforcement Learning from Human Feedback (RLHF)

Pasul 3: tokenizatorul

from transformers import AutoTokenizer

# `AutoTokenizer` loads the correct tokenizer for the specified model
tokenizer = AutoTokenizer.from_pretrained("openai-gpt")
tokenizer.add_special_tokens({'pad_token': '[PAD]'})
model.resize_token_embeddings(len(tokenizer))

 

  • Padding: pentru loturi de text de dimensiuni egale
Reinforcement Learning from Human Feedback (RLHF)

Pasul 3: tokenizatorul

def tokenize_function(examples):
    tokenized = tokenizer(examples["content"], padding="max_length", truncation=True) 
    return tokenized

tokenized_datasets = dataset.map(tokenize_function, batched=True)

 

  • Parametrul batched: pentru procesare mai rapidă
Reinforcement Learning from Human Feedback (RLHF)

Pasul 4: fine-tuning cu metoda Trainer

training_args = TrainingArguments(
   output_dir="test_trainer",
   per_device_train_batch_size=1,
   per_device_eval_batch_size=1,  
   gradient_accumulation_steps=4)
trainer = Trainer(
   model=model,
   args=training_args,
   train_dataset=tokenized_dataset["train"],
   eval_dataset=tokenized_dataset["test"])
trainer.train()
Reinforcement Learning from Human Feedback (RLHF)

Să exersăm!

Reinforcement Learning from Human Feedback (RLHF)

Preparing Video For Download...