File size: 25,107 Bytes
7803bdf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 | #!/usr/bin/env python
# coding=utf-8
"""
SD3 LoRA分布式采样脚本
使用微调后的LoRA权重,基于JSONL文件中的caption生成图像样本,并保存为npz格式用于评估
"""
import torch
import torch.distributed as dist
from tqdm import tqdm
import os
from PIL import Image
import numpy as np
import math
import argparse
import sys
import json
import random
from pathlib import Path
from diffusers import (
StableDiffusion3Pipeline,
AutoencoderKL,
FlowMatchEulerDiscreteScheduler,
SD3Transformer2DModel,
)
from transformers import CLIPTokenizer, T5TokenizerFast
from accelerate import Accelerator
from peft import LoraConfig
from peft.utils import get_peft_model_state_dict
def create_npz_from_sample_folder(sample_dir, num_samples):
"""
从样本文件夹构建单个.npz文件,保持与sample_ddp_new相同的格式
"""
samples = []
actual_files = []
# 收集所有PNG文件
for filename in sorted(os.listdir(sample_dir)):
if filename.endswith('.png'):
actual_files.append(filename)
# 按照数量限制处理
for i in tqdm(range(min(num_samples, len(actual_files))), desc="Building .npz file from samples"):
if i < len(actual_files):
sample_path = os.path.join(sample_dir, actual_files[i])
sample_pil = Image.open(sample_path)
sample_np = np.asarray(sample_pil).astype(np.uint8)
samples.append(sample_np)
else:
# 如果不够,创建空白图像
sample_np = np.zeros((512, 512, 3), dtype=np.uint8)
samples.append(sample_np)
if samples:
samples = np.stack(samples)
npz_path = f"{sample_dir}.npz"
np.savez(npz_path, arr_0=samples)
print(f"Saved .npz file to {npz_path} [shape={samples.shape}].")
return npz_path
else:
print("No samples found to create npz file.")
return None
def find_latest_checkpoint(output_dir):
"""
查找最新的检查点目录
"""
checkpoint_dirs = []
if os.path.exists(output_dir):
for item in os.listdir(output_dir):
if item.startswith("checkpoint-") and os.path.isdir(os.path.join(output_dir, item)):
try:
step = int(item.split("-")[1])
checkpoint_dirs.append((step, item))
except (ValueError, IndexError):
continue
if checkpoint_dirs:
# 按步数排序,返回最新的
checkpoint_dirs.sort(key=lambda x: x[0])
latest_step, latest_dir = checkpoint_dirs[-1]
latest_path = os.path.join(output_dir, latest_dir)
return latest_path, latest_step
return None, None
def check_lora_weights_exist(lora_path):
"""
检查LoRA权重文件是否存在
"""
if not lora_path:
return False
# 检查是否是目录
if os.path.isdir(lora_path):
# 检查目录中是否有pytorch_lora_weights.safetensors文件
weight_file = os.path.join(lora_path, "pytorch_lora_weights.safetensors")
if os.path.exists(weight_file):
return True
# 检查是否有其他.safetensors文件
for file in os.listdir(lora_path):
if file.endswith(".safetensors") and "lora" in file.lower():
return True
return False
# 检查是否是文件
elif os.path.isfile(lora_path):
return lora_path.endswith(".safetensors")
return False
def check_full_finetune_checkpoint(checkpoint_path):
"""
检查是否是全量微调的checkpoint(包含model.safetensors)
"""
if not checkpoint_path or not os.path.isdir(checkpoint_path):
return False
# 检查是否有model.safetensors文件(全量微调的标志)
model_file = os.path.join(checkpoint_path, "model.safetensors")
return os.path.exists(model_file)
def load_lora_from_checkpoint(pipeline, checkpoint_path, rank=0):
"""
从检查点加载LoRA权重
"""
if rank == 0:
print(f"Loading LoRA weights from checkpoint: {checkpoint_path}")
# 直接从检查点目录加载state dict
try:
# 使用accelerator来加载检查点
accelerator = Accelerator()
# 先配置LoRA
transformer_lora_config = LoraConfig(
r=64, # 假设使用rank=64,可以根据需要调整
lora_alpha=64,
init_lora_weights="gaussian",
target_modules=["attn.to_k", "attn.to_q", "attn.to_v", "attn.to_out.0"],
)
# 为transformer添加LoRA
pipeline.transformer.add_adapter(transformer_lora_config)
# 加载检查点状态
accelerator.load_state(checkpoint_path)
if rank == 0:
print(f"Successfully loaded LoRA weights from checkpoint {checkpoint_path}")
return True
except Exception as e:
if rank == 0:
print(f"Error loading LoRA from checkpoint {checkpoint_path}: {e}")
print("Falling back to baseline model without LoRA")
return False
def load_captions_from_jsonl(jsonl_path):
"""
从JSONL文件加载caption列表
"""
captions = []
try:
with open(jsonl_path, 'r', encoding='utf-8') as f:
for line_num, line in enumerate(f, 1):
line = line.strip()
if not line:
continue
try:
data = json.loads(line)
# 支持多种字段名
caption = None
for field in ['caption', 'text', 'prompt', 'description']:
if field in data and isinstance(data[field], str):
caption = data[field].strip()
break
if caption:
captions.append(caption)
else:
# 如果没有找到标准字段,取第一个字符串值
for value in data.values():
if isinstance(value, str) and value.strip():
captions.append(value.strip())
break
except json.JSONDecodeError as e:
print(f"Warning: Invalid JSON on line {line_num}: {e}")
continue
except FileNotFoundError:
print(f"Error: JSONL file {jsonl_path} not found")
return []
except Exception as e:
print(f"Error loading JSONL file {jsonl_path}: {e}")
return []
print(f"Loaded {len(captions)} captions from {jsonl_path}")
return captions
def main(args):
"""
运行 SD3 LoRA 采样
"""
assert torch.cuda.is_available(), "DDP采样需要至少一个GPU"
torch.set_grad_enabled(False)
# 设置 DDP
dist.init_process_group("nccl")
rank = dist.get_rank()
device = rank % torch.cuda.device_count()
seed = args.global_seed * dist.get_world_size() + rank
torch.manual_seed(seed)
torch.cuda.set_device(device)
print(f"Starting rank={rank}, seed={seed}, world_size={dist.get_world_size()}.")
# 加载captions
captions = []
if args.captions_jsonl:
if rank == 0:
print(f"Loading captions from {args.captions_jsonl}")
captions = load_captions_from_jsonl(args.captions_jsonl)
if not captions:
if rank == 0:
print("Warning: No captions loaded, using default caption")
captions = ["a beautiful high quality image"]
else:
# 使用默认caption
captions = ["a beautiful high quality image"]
# 计算总的图片数量
total_images_needed = len(captions) * args.images_per_caption
# 应用最大样本数限制
total_images_needed = min(total_images_needed, args.max_samples)
if rank == 0:
print(f"Will generate {args.images_per_caption} images for each of {len(captions)} captions")
print(f"Total images requested: {len(captions) * args.images_per_caption}")
print(f"Max samples limit: {args.max_samples}")
print(f"Total images to generate: {total_images_needed}")
# 设置数据类型 - 使用混合精度以减少内存占用
if args.mixed_precision == "fp16":
dtype = torch.float16
elif args.mixed_precision == "bf16":
dtype = torch.bfloat16
else:
dtype = torch.float32
# 检查是否是全量微调的checkpoint
is_full_finetune = False
if args.lora_path and check_full_finetune_checkpoint(args.lora_path):
# 全量微调:直接从checkpoint加载
if rank == 0:
print(f"Detected full fine-tuning checkpoint, loading from: {args.lora_path}")
try:
pipeline = StableDiffusion3Pipeline.from_pretrained(
args.lora_path,
revision=args.revision,
variant=args.variant,
torch_dtype=dtype,
)
is_full_finetune = True
lora_source = os.path.basename(args.lora_path.rstrip('/'))
if rank == 0:
print("Successfully loaded full fine-tuned model from checkpoint")
except Exception as e:
if rank == 0:
print(f"Failed to load full fine-tuned model: {e}")
print("Falling back to baseline model + LoRA loading")
is_full_finetune = False
# 如果不是全量微调,加载基础模型
if not is_full_finetune:
if rank == 0:
print(f"Loading SD3 pipeline from {args.pretrained_model_name_or_path}")
pipeline = StableDiffusion3Pipeline.from_pretrained(
args.pretrained_model_name_or_path,
revision=args.revision,
variant=args.variant,
torch_dtype=dtype,
)
# 检查和加载 LoRA 权重(仅当不是全量微调时)
lora_loaded = False
lora_source = "baseline" if not is_full_finetune else lora_source
if not is_full_finetune and args.lora_path:
# 检查指定的LoRA路径是否存在权重文件
if check_lora_weights_exist(args.lora_path):
if rank == 0:
print(f"Loading LoRA weights from specified path: {args.lora_path}")
try:
pipeline.load_lora_weights(args.lora_path)
lora_loaded = True
lora_source = os.path.basename(args.lora_path.rstrip('/'))
if rank == 0:
print("Successfully loaded LoRA weights from specified path")
except Exception as e:
if rank == 0:
print(f"Failed to load LoRA from specified path: {e}")
else:
if rank == 0:
print(f"No LoRA weights found at specified path: {args.lora_path}")
# 如果没有成功加载LoRA权重,尝试从当前目录或检查点加载(仅当不是全量微调时)
if not is_full_finetune and not lora_loaded:
# 首先检查当前工作目录是否有权重文件
current_dir = os.getcwd()
if check_lora_weights_exist(current_dir):
if rank == 0:
print(f"Found LoRA weights in current directory: {current_dir}")
try:
pipeline.load_lora_weights(current_dir)
lora_loaded = True
lora_source = "current_dir"
if rank == 0:
print("Successfully loaded LoRA weights from current directory")
except Exception as e:
if rank == 0:
print(f"Failed to load LoRA from current directory: {e}")
# 如果当前目录也没有,检查是否有检查点目录
if not lora_loaded:
# 检查常见的输出目录
possible_output_dirs = [
"sd3-lora-finetuned",
"sd3-lora-finetuned-last",
"output",
"checkpoints"
]
checkpoint_found = False
for output_dir in possible_output_dirs:
if os.path.exists(output_dir):
# 首先检查输出目录是否直接包含权重文件
if check_lora_weights_exist(output_dir):
if rank == 0:
print(f"Found LoRA weights in output directory: {output_dir}")
try:
pipeline.load_lora_weights(output_dir)
lora_loaded = True
lora_source = output_dir
if rank == 0:
print(f"Successfully loaded LoRA weights from {output_dir}")
break
except Exception as e:
if rank == 0:
print(f"Failed to load LoRA from {output_dir}: {e}")
# 如果输出目录没有直接的权重文件,查找最新的检查点
if not lora_loaded:
latest_checkpoint, latest_step = find_latest_checkpoint(output_dir)
if latest_checkpoint:
if rank == 0:
print(f"Found latest checkpoint: {latest_checkpoint} (step {latest_step})")
# 尝试从检查点加载LoRA权重
if load_lora_from_checkpoint(pipeline, latest_checkpoint, rank):
lora_loaded = True
lora_source = f"checkpoint-{latest_step}"
checkpoint_found = True
break
if not checkpoint_found and not lora_loaded:
if rank == 0:
print("No LoRA weights or checkpoints found. Using baseline model.")
# 启用内存优化选项(必须在移动到设备之前)
if args.enable_cpu_offload:
if rank == 0:
print("Enabling CPU offload to save memory")
# CPU offload 会自动管理设备,不需要先 to(device)
pipeline.enable_model_cpu_offload()
else:
# 如果不使用 CPU offload,先移动到设备,然后启用其他优化
pipeline = pipeline.to(device)
if rank == 0:
print("Enabling memory optimization options")
# 检查并启用可用的内存优化方法
# 注意:所有进程都需要执行这些操作,不仅仅是 rank 0
if hasattr(pipeline, 'enable_attention_slicing'):
try:
pipeline.enable_attention_slicing()
if rank == 0:
print(" - Attention slicing enabled")
except Exception as e:
if rank == 0:
print(f" - Warning: Failed to enable attention slicing: {e}")
else:
if rank == 0:
print(" - Attention slicing not available for this pipeline")
# SD3 pipeline 可能不支持 enable_vae_slicing,需要检查
# 使用 getattr 来安全地检查方法是否存在,避免触发 __getattr__ 异常
enable_vae_slicing_method = getattr(pipeline, 'enable_vae_slicing', None)
if enable_vae_slicing_method is not None and callable(enable_vae_slicing_method):
try:
enable_vae_slicing_method()
if rank == 0:
print(" - VAE slicing enabled")
except Exception as e:
if rank == 0:
print(f" - Warning: Failed to enable VAE slicing: {e}")
else:
if rank == 0:
print(" - VAE slicing not available for this pipeline (SD3 may not support this)")
# 禁用进度条
pipeline.set_progress_bar_config(disable=True)
# 创建保存目录
folder_name = f"batch32-rank64-last-sd3-{lora_source}-guidance-{args.guidance_scale}-steps-{args.num_inference_steps}-size-{args.height}x{args.width}"
sample_folder_dir = os.path.join(args.sample_dir, folder_name)
if rank == 0:
os.makedirs(sample_folder_dir, exist_ok=True)
print(f"Saving .png samples at {sample_folder_dir}")
# 清空caption文件
caption_file = os.path.join(sample_folder_dir, "captions.txt")
if os.path.exists(caption_file):
os.remove(caption_file)
dist.barrier()
# 计算采样参数
n = args.per_proc_batch_size
global_batch_size = n * dist.get_world_size()
# 检查已存在的样本数量
existing_samples = 0
if os.path.exists(sample_folder_dir):
existing_samples = len([
name for name in os.listdir(sample_folder_dir)
if os.path.isfile(os.path.join(sample_folder_dir, name)) and name.endswith(".png")
])
total_samples = int(math.ceil(total_images_needed / global_batch_size) * global_batch_size)
if rank == 0:
print(f"Total number of images that will be sampled: {total_samples}")
print(f"Existing samples: {existing_samples}")
assert total_samples % dist.get_world_size() == 0, "total_samples must be divisible by world_size"
samples_needed_this_gpu = int(total_samples // dist.get_world_size())
assert samples_needed_this_gpu % n == 0, "samples_needed_this_gpu must be divisible by the per-GPU batch size"
iterations = int(samples_needed_this_gpu // n)
done_iterations = int(int(existing_samples // dist.get_world_size()) // n)
pbar = range(done_iterations, iterations)
pbar = tqdm(pbar) if rank == 0 else pbar
# 生成caption和image的映射列表
caption_image_pairs = []
for i, caption in enumerate(captions):
for j in range(args.images_per_caption):
caption_image_pairs.append((caption, i, j)) # (caption, caption_idx, image_idx)
total_generated = existing_samples
# 采样循环
for i in pbar:
# 获取这个batch对应的caption
batch_prompts = []
batch_caption_info = []
for j in range(n):
global_index = i * global_batch_size + j * dist.get_world_size() + rank
if global_index < len(caption_image_pairs):
caption, caption_idx, image_idx = caption_image_pairs[global_index]
batch_prompts.append(caption)
batch_caption_info.append((caption, caption_idx, image_idx))
else:
# 如果超出范围,使用最后一个caption
if caption_image_pairs:
caption, caption_idx, image_idx = caption_image_pairs[-1]
batch_prompts.append(caption)
batch_caption_info.append((caption, caption_idx, image_idx))
else:
batch_prompts.append("a beautiful high quality image")
batch_caption_info.append(("a beautiful high quality image", 0, 0))
# 生成图像 - 为每个图像使用不同的随机种子
device_str = "cuda" if torch.cuda.is_available() else "cpu"
with torch.autocast(device_str, dtype=dtype):
# 为每个prompt生成独立的图像(使用不同的generator)
images = []
for k, prompt in enumerate(batch_prompts):
# 为每个图像创建独立的随机种子
image_seed = seed + i * 10000 + k * 1000 + rank
generator = torch.Generator(device=device).manual_seed(image_seed)
image = pipeline(
prompt=prompt,
negative_prompt=args.negative_prompt if args.negative_prompt else None,
height=args.height,
width=args.width,
num_inference_steps=args.num_inference_steps,
guidance_scale=args.guidance_scale,
generator=generator,
num_images_per_prompt=1,
).images[0]
images.append(image)
# 清理 GPU 缓存以释放内存
if k == len(batch_prompts) - 1: # 每个 batch 的最后一张图片后清理
torch.cuda.empty_cache()
# 保存图像
for j, (image, (caption, caption_idx, image_idx)) in enumerate(zip(images, batch_caption_info)):
global_index = i * global_batch_size + j * dist.get_world_size() + rank
if global_index < len(caption_image_pairs):
# 保存图片,文件名包含caption索引和图片索引
filename = f"{global_index:06d}_cap{caption_idx:04d}_img{image_idx:02d}.png"
image_path = os.path.join(sample_folder_dir, filename)
image.save(image_path)
# 保存caption信息到文本文件(只在rank 0上操作)
if rank == 0:
caption_file = os.path.join(sample_folder_dir, "captions.txt")
with open(caption_file, "a", encoding="utf-8") as f:
f.write(f"{filename}\t{caption}\n")
total_generated += global_batch_size
# 每个迭代后清理 GPU 缓存
torch.cuda.empty_cache()
dist.barrier()
# 确保所有进程都完成采样
dist.barrier()
# 创建npz文件
if rank == 0:
# 重新计算实际生成的图片数量
actual_num_samples = len([name for name in os.listdir(sample_folder_dir) if name.endswith(".png")])
print(f"Actually generated {actual_num_samples} images")
# 使用实际的图片数量或用户指定的数量,取较小值
npz_samples = min(actual_num_samples, total_images_needed, args.max_samples)
create_npz_from_sample_folder(sample_folder_dir, npz_samples)
print("Done.")
dist.barrier()
dist.destroy_process_group()
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="SD3 LoRA分布式采样脚本")
# 模型和路径参数
parser.add_argument(
"--pretrained_model_name_or_path",
type=str,
default="stabilityai/stable-diffusion-3-medium-diffusers",
help="预训练模型路径或HuggingFace模型ID"
)
parser.add_argument(
"--lora_path",
type=str,
default=None,
help="LoRA权重文件路径"
)
parser.add_argument(
"--revision",
type=str,
default=None,
help="模型修订版本"
)
parser.add_argument(
"--variant",
type=str,
default=None,
help="模型变体,如fp16"
)
# 采样参数
parser.add_argument(
"--num_inference_steps",
type=int,
default=28,
help="推理步数"
)
parser.add_argument(
"--guidance_scale",
type=float,
default=7.0,
help="引导尺度"
)
parser.add_argument(
"--height",
type=int,
default=1024,
help="生成图像高度"
)
parser.add_argument(
"--width",
type=int,
default=1024,
help="生成图像宽度"
)
parser.add_argument(
"--negative_prompt",
type=str,
default="",
help="负面提示词"
)
# 批处理和数据集参数
parser.add_argument(
"--per_proc_batch_size",
type=int,
default=1,
help="每个进程的批处理大小"
)
parser.add_argument(
"--sample_dir",
type=str,
default="sd3_lora_samples",
help="样本保存目录"
)
# Caption相关参数
parser.add_argument(
"--captions_jsonl",
type=str,
required=True,
help="包含caption列表的JSONL文件路径"
)
parser.add_argument(
"--images_per_caption",
type=int,
default=1,
help="每个caption生成的图像数量"
)
parser.add_argument(
"--max_samples",
type=int,
default=30000,
help="最大样本生成数量"
)
# 其他参数
parser.add_argument(
"--global_seed",
type=int,
default=42,
help="全局随机种子"
)
parser.add_argument(
"--mixed_precision",
type=str,
default="fp16",
choices=["no", "fp16", "bf16"],
help="混合精度类型"
)
parser.add_argument(
"--enable_cpu_offload",
action="store_true",
help="启用CPU offload以节省显存"
)
args = parser.parse_args()
main(args) |