Unsloth によるマルチ GPU ファインチューニング
Unsloth を使って複数 GPU と並列処理で LLM をファインチューニングする方法を学びましょう。
新しいDistributed Data Parallel (DDP)マルチGPUガイドはこちら.
パイプライン/モデル分割の読み込み
from unsloth import FastLanguageModel
model, tokenizer = FastLanguageModel.from_pretrained(
"unsloth/Llama-3.3-70B-Instruct",
load_in_4bit = True,
device_map = "balanced",
)最終更新
役に立ちましたか?

