FSDP with Nvidia GPU

#84
by Iamexperimenting - opened

Hi @ybelkada ,

I see there is an example for fsdp with TPU, can you please provide an example for Nvidia GPU.

Example: https://huggingface.co/google/gemma-7b/blob/main/examples/example_fsdp.py

Also, I tried removing few lines to run in Nvidia GPU,

import torch

from datasets import load_dataset
from peft import LoraConfig, get_peft_model
from transformers import AutoTokenizer, AutoModelForCausalLM, TrainingArguments
from trl import SFTTrainer

model_id = "google/gemma-7b"

# Load the pretrained model and tokenizer.
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.bfloat16, device_map={"":0})

# Set up PEFT LoRA for fine-tuning.
lora_config = LoraConfig(
    r=8,
    target_modules=["k_proj", "v_proj"],
    task_type="CAUSAL_LM",
)

# Load the dataset and format it for training.
data = load_dataset("Abirate/english_quotes", split="train")
max_seq_length = 1024

# Set up the FSDP config. To enable FSDP via SPMD, set xla_fsdp_v2 to True.
fsdp_config = {"fsdp_transformer_layer_cls_to_wrap": [
        "GemmaDecoderLayer"
    ],
    "xla": True,
    "xla_fsdp_v2": True,
    "xla_fsdp_grad_ckpt": True}

# Finally, set up the trainer and train the model.
trainer = SFTTrainer(
    model=model,
    train_dataset=data,
    args=TrainingArguments(
        per_device_train_batch_size=64,  # This is actually the global batch size for SPMD.
        num_train_epochs=100,
        max_steps=-1,
        output_dir="./output",
        optim="adafactor",
        logging_steps=1,
        dataloader_drop_last = True,  # Required for SPMD.
        fsdp="full_shard",
        fsdp_config=fsdp_config,
    ),
    peft_config=lora_config,
    dataset_text_field="quote",
    max_seq_length=max_seq_length,
    packing=True,
)

trainer.train()

but I get the following error ValueError: Using fsdp only works in distributed training.

can you please provide your input here?

Google org

Sure @Iamexperimenting thanks!
I advise you to read this article from the PEFT official documentation: https://huggingface.co/docs/peft/accelerate/fsdp and simply change the model id with gemma, you can also get started with the official scripts which are located here: https://github.com/huggingface/peft/tree/main/examples/sft

Sign up or log in to comment