File size: 46,959 Bytes
535fb25 | 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 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 | from collections import defaultdict
import contextlib
import os
import datetime
from concurrent import futures
import time
import json
import hashlib
from absl import app, flags
from accelerate import Accelerator
from ml_collections import config_flags
from accelerate.utils import set_seed, ProjectConfiguration
from accelerate.logging import get_logger
from diffusers import StableDiffusion3Pipeline
from diffusers.utils.torch_utils import is_compiled_module
import numpy as np
import flow_grpo.prompts
import flow_grpo.rewards
from flow_grpo.stat_tracking import PerPromptStatTracker
from flow_grpo.diffusers_patch.sd3_pipeline_with_logprob import pipeline_with_logprob
from flow_grpo.diffusers_patch.sd3_sde_with_logprob import sde_step_with_logprob
from flow_grpo.diffusers_patch.train_dreambooth_lora_sd3 import encode_prompt
import torch
import wandb
from functools import partial
import tqdm
import tempfile
from PIL import Image
from peft import LoraConfig, get_peft_model, set_peft_model_state_dict, PeftModel
import random
from torch.utils.data import Dataset, DataLoader, Sampler
from flow_grpo.ema import EMAModuleWrapper
tqdm = partial(tqdm.tqdm, dynamic_ncols=True)
FLAGS = flags.FLAGS
config_flags.DEFINE_config_file("config", "config/base.py", "Training configuration.")
logger = get_logger(__name__)
class TextPromptDataset(Dataset):
def __init__(self, dataset, split='train'):
self.dataset = dataset
self.text_path = os.path.join(dataset, f'{split}.txt')
self.metadata_path = os.path.join(dataset, f'{split}_metadata.jsonl')
if os.path.exists(self.metadata_path):
with open(self.metadata_path, 'r', encoding='utf-8') as f:
self.metadatas = [json.loads(line) for line in f if line.strip()]
self.prompts = [item["prompt"] for item in self.metadatas]
elif os.path.exists(self.text_path):
with open(self.text_path, 'r', encoding='utf-8') as f:
self.prompts = [line.strip() for line in f.readlines() if line.strip()]
self.metadatas = [{} for _ in self.prompts]
else:
raise FileNotFoundError(
f"Could not find either {self.text_path} or {self.metadata_path}."
)
def __len__(self):
return len(self.prompts)
def __getitem__(self, idx):
metadata = self.metadatas[idx]
return {"prompt": self.prompts[idx], "metadata": metadata}
@staticmethod
def collate_fn(examples):
prompts = [example["prompt"] for example in examples]
metadatas = [example["metadata"] for example in examples]
return prompts, metadatas
class GenevalPromptDataset(Dataset):
def __init__(self, dataset, split='train'):
self.file_path = os.path.join(dataset, f'{split}_metadata.jsonl')
with open(self.file_path, 'r', encoding='utf-8') as f:
self.metadatas = [json.loads(line) for line in f]
self.prompts = [item['prompt'] for item in self.metadatas]
def __len__(self):
return len(self.prompts)
def __getitem__(self, idx):
return {"prompt": self.prompts[idx], "metadata": self.metadatas[idx]}
@staticmethod
def collate_fn(examples):
prompts = [example["prompt"] for example in examples]
metadatas = [example["metadata"] for example in examples]
return prompts, metadatas
class DistributedKRepeatSampler(Sampler):
def __init__(self, dataset, batch_size, k, num_replicas, rank, seed=0):
self.dataset = dataset
self.batch_size = batch_size # Batch size per replica
self.k = k # Number of repetitions per sample
self.num_replicas = num_replicas # Total number of replicas
self.rank = rank # Current replica rank
self.seed = seed # Random seed for synchronization
# Compute the number of unique samples needed per iteration
self.total_samples = self.num_replicas * self.batch_size
assert self.total_samples % self.k == 0, f"k can not divide n*b, k{k}-num_replicas{num_replicas}-batch_size{batch_size}"
self.m = self.total_samples // self.k # Number of unique samples
self.epoch = 0
def __iter__(self):
while True:
# Generate a deterministic random sequence to ensure all replicas are synchronized
g = torch.Generator()
g.manual_seed(self.seed + self.epoch)
# Randomly select m unique samples
indices = torch.randperm(len(self.dataset), generator=g)[:self.m].tolist()
# Repeat each sample k times to generate n*b total samples
repeated_indices = [idx for idx in indices for _ in range(self.k)]
# Shuffle to ensure uniform distribution
shuffled_indices = torch.randperm(len(repeated_indices), generator=g).tolist()
shuffled_samples = [repeated_indices[i] for i in shuffled_indices]
# Split samples to each replica
per_card_samples = []
for i in range(self.num_replicas):
start = i * self.batch_size
end = start + self.batch_size
per_card_samples.append(shuffled_samples[start:end])
# Return current replica's sample indices
yield per_card_samples[self.rank]
def set_epoch(self, epoch):
self.epoch = epoch # Used to synchronize random state across epochs
def compute_text_embeddings(prompt, text_encoders, tokenizers, max_sequence_length, device):
with torch.no_grad():
print("start encode_prompt")
prompt_embeds, pooled_prompt_embeds = encode_prompt(
text_encoders, tokenizers, prompt, max_sequence_length
)
prompt_embeds = prompt_embeds.to(device)
pooled_prompt_embeds = pooled_prompt_embeds.to(device)
return prompt_embeds, pooled_prompt_embeds
def resolve_group_key(prompt, metadata):
if not isinstance(metadata, dict):
return prompt
for key in ("_group_id", "group_id", "_group_prompt", "sample_id", "id"):
value = metadata.get(key)
if value not in (None, ""):
return str(value)
patient_id = metadata.get("patient_id")
image_name = metadata.get("image_name")
if patient_id and image_name:
return f"{patient_id}/{image_name}"
for key in ("gt_image_path", "gt_image", "image", "mask_path", "mask"):
value = metadata.get(key)
if value not in (None, ""):
return f"{prompt}::{value}"
return prompt
def build_group_ids(prompts, metadatas):
group_ids = []
for prompt, metadata in zip(prompts, metadatas):
group_key = resolve_group_key(prompt, metadata)
digest = hashlib.md5(group_key.encode("utf-8")).hexdigest()
group_ids.append(int(digest[:15], 16))
return torch.tensor(group_ids, dtype=torch.int64)
def calculate_zero_std_ratio(prompts, gathered_rewards):
"""
Calculate the proportion of unique prompts whose reward standard deviation is zero.
Args:
prompts: List of prompts.
gathered_rewards: Dictionary containing rewards, must include the key 'ori_avg'.
Returns:
zero_std_ratio: Proportion of prompts with zero standard deviation.
prompt_std_devs: Mean standard deviation across all unique prompts.
"""
# Convert prompt list to NumPy array
prompt_array = np.array(prompts)
# Get unique prompts and their group information
unique_prompts, inverse_indices, counts = np.unique(
prompt_array,
return_inverse=True,
return_counts=True
)
# Group rewards for each prompt
grouped_rewards = gathered_rewards['ori_avg'][np.argsort(inverse_indices)]
split_indices = np.cumsum(counts)[:-1]
reward_groups = np.split(grouped_rewards, split_indices)
# Calculate standard deviation for each group
prompt_std_devs = np.array([np.std(group) for group in reward_groups])
# Calculate the ratio of zero standard deviation
zero_std_count = np.count_nonzero(prompt_std_devs == 0)
zero_std_ratio = zero_std_count / len(prompt_std_devs)
return zero_std_ratio, prompt_std_devs.mean()
def create_generator(prompts, base_seed):
generators = []
for prompt in prompts:
# Use a stable hash (SHA256), then convert it to an integer seed
hash_digest = hashlib.sha256(prompt.encode()).digest()
prompt_hash_int = int.from_bytes(hash_digest[:4], 'big') # Take the first 4 bytes as part of the seed
seed = (base_seed + prompt_hash_int) % (2**31) # Ensure the number is within a valid range
gen = torch.Generator().manual_seed(seed)
generators.append(gen)
return generators
def compute_log_prob(transformer, pipeline, sample, j, embeds, pooled_embeds, config):
if config.train.cfg:
noise_pred = transformer(
hidden_states=torch.cat([sample["latents"][:, j]] * 2),
timestep=torch.cat([sample["timesteps"][:, j]] * 2),
encoder_hidden_states=embeds,
pooled_projections=pooled_embeds,
return_dict=False,
)[0]
noise_pred_uncond, noise_pred_text = noise_pred.chunk(2)
noise_pred = (
noise_pred_uncond
+ config.sample.guidance_scale
* (noise_pred_text - noise_pred_uncond)
)
else:
noise_pred = transformer(
hidden_states=sample["latents"][:, j],
timestep=sample["timesteps"][:, j],
encoder_hidden_states=embeds,
pooled_projections=pooled_embeds,
return_dict=False,
)[0]
# compute the log prob of next_latents given latents under the current model
prev_sample, log_prob, prev_sample_mean, std_dev_t = sde_step_with_logprob(
pipeline.scheduler,
noise_pred.float(),
sample["timesteps"][:, j],
sample["latents"][:, j].float(),
prev_sample=sample["next_latents"][:, j].float(),
noise_level=config.sample.noise_level,
)
return prev_sample, log_prob, prev_sample_mean, std_dev_t
def eval(pipeline, test_dataloader, text_encoders, tokenizers, config, accelerator, global_step, reward_fn, executor, autocast, num_train_timesteps, ema, transformer_trainable_parameters):
eval_start_time = time.perf_counter()
if config.train.ema:
ema.copy_ema_to(transformer_trainable_parameters, store_temp=True)
print("[eval] ema.copy_ema_to done")
init_start_time = time.perf_counter()
neg_prompt_embed, neg_pooled_prompt_embed = compute_text_embeddings([""], text_encoders, tokenizers, max_sequence_length=128, device=accelerator.device)
sample_neg_prompt_embeds = neg_prompt_embed.repeat(config.sample.test_batch_size, 1, 1)
sample_neg_pooled_prompt_embeds = neg_pooled_prompt_embed.repeat(config.sample.test_batch_size, 1)
print(f"[eval] init embeddings ready in {time.perf_counter() - init_start_time:.2f}s")
# test_dataloader = itertools.islice(test_dataloader, 2)
all_rewards = defaultdict(list)
for batch_idx, test_batch in enumerate(tqdm(
test_dataloader,
desc="Eval: ",
disable=not accelerator.is_local_main_process,
position=0,
)):
if batch_idx > 3:
break
batch_start_time = time.perf_counter()
print(f"[eval][batch {batch_idx}] start")
prompts, prompt_metadata = test_batch
text_embed_start_time = time.perf_counter()
prompt_embeds, pooled_prompt_embeds = compute_text_embeddings(
prompts,
text_encoders,
tokenizers,
max_sequence_length=128,
device=accelerator.device
)
print(
f"[eval][batch {batch_idx}] text_embeddings done in "
f"{time.perf_counter() - text_embed_start_time:.2f}s for {len(prompts)} prompts"
)
# The last batch may not be full batch_size
if len(prompt_embeds)<len(sample_neg_prompt_embeds):
sample_neg_prompt_embeds = sample_neg_prompt_embeds[:len(prompt_embeds)]
sample_neg_pooled_prompt_embeds = sample_neg_pooled_prompt_embeds[:len(prompt_embeds)]
print(f"[eval][batch {batch_idx}] adjusted negative prompt embeds to batch size {len(prompt_embeds)}")
generation_start_time = time.perf_counter()
with autocast():
with torch.no_grad():
images, _, _ = pipeline_with_logprob(
pipeline,
prompt_embeds=prompt_embeds,
pooled_prompt_embeds=pooled_prompt_embeds,
negative_prompt_embeds=sample_neg_prompt_embeds,
negative_pooled_prompt_embeds=sample_neg_pooled_prompt_embeds,
num_inference_steps=config.sample.eval_num_steps,
guidance_scale=config.sample.guidance_scale,
output_type="pt",
height=config.resolution,
width=config.resolution,
noise_level=0,
)
print(
f"[eval][batch {batch_idx}] image generation done in "
f"{time.perf_counter() - generation_start_time:.2f}s"
)
reward_submit_start_time = time.perf_counter()
rewards = executor.submit(reward_fn, images, prompts, prompt_metadata, only_strict=False)
print(
f"[eval][batch {batch_idx}] reward submitted in "
f"{time.perf_counter() - reward_submit_start_time:.2f}s"
)
# yield to to make sure reward computation starts
time.sleep(0)
reward_wait_start_time = time.perf_counter()
rewards, reward_metadata = rewards.result()
print(
f"[eval][batch {batch_idx}] reward finished in "
f"{time.perf_counter() - reward_wait_start_time:.2f}s"
)
gather_start_time = time.perf_counter()
for key, value in rewards.items():
rewards_gather = accelerator.gather(torch.as_tensor(value, device=accelerator.device)).cpu().numpy()
all_rewards[key].append(rewards_gather)
print(
f"[eval][batch {batch_idx}] reward gather done in "
f"{time.perf_counter() - gather_start_time:.2f}s; total batch "
f"{time.perf_counter() - batch_start_time:.2f}s"
)
finalize_start_time = time.perf_counter()
last_batch_images_gather = accelerator.gather(torch.as_tensor(images, device=accelerator.device)).cpu().numpy()
last_batch_prompt_ids = tokenizers[0](
prompts,
padding="max_length",
max_length=256,
truncation=True,
return_tensors="pt",
).input_ids.to(accelerator.device)
last_batch_prompt_ids_gather = accelerator.gather(last_batch_prompt_ids).cpu().numpy()
last_batch_prompts_gather = pipeline.tokenizer.batch_decode(
last_batch_prompt_ids_gather, skip_special_tokens=True
)
last_batch_rewards_gather = {}
for key, value in rewards.items():
last_batch_rewards_gather[key] = accelerator.gather(torch.as_tensor(value, device=accelerator.device)).cpu().numpy()
print(f"[eval] final gather/postprocess done in {time.perf_counter() - finalize_start_time:.2f}s")
all_rewards = {key: np.concatenate(value) for key, value in all_rewards.items()}
if accelerator.is_main_process:
wandb_start_time = time.perf_counter()
with tempfile.TemporaryDirectory() as tmpdir:
num_samples = min(15, len(last_batch_images_gather))
# sample_indices = random.sample(range(len(images)), num_samples)
sample_indices = range(num_samples)
for idx, index in enumerate(sample_indices):
image = last_batch_images_gather[index]
pil = Image.fromarray(
(image.transpose(1, 2, 0) * 255).astype(np.uint8)
)
pil = pil.resize((config.resolution, config.resolution))
pil.save(os.path.join(tmpdir, f"{idx}.jpg"))
sampled_prompts = [last_batch_prompts_gather[index] for index in sample_indices]
sampled_rewards = [{k: last_batch_rewards_gather[k][index] for k in last_batch_rewards_gather} for index in sample_indices]
for key, value in all_rewards.items():
print(key, value.shape)
wandb.log(
{
"eval_images": [
wandb.Image(
os.path.join(tmpdir, f"{idx}.jpg"),
caption=f"{prompt:.1000} | " + " | ".join(f"{k}: {v:.2f}" for k, v in reward.items() if v != -10),
)
for idx, (prompt, reward) in enumerate(zip(sampled_prompts, sampled_rewards))
],
**{f"eval_reward_{key}": np.mean(value[value != -10]) for key, value in all_rewards.items()},
},
step=global_step,
)
print(f"[eval] wandb logging done in {time.perf_counter() - wandb_start_time:.2f}s")
if config.train.ema:
ema.copy_temp_to(transformer_trainable_parameters)
print("[eval] ema.copy_temp_to done")
print(f"[eval] total eval time {time.perf_counter() - eval_start_time:.2f}s")
def unwrap_model(model, accelerator):
model = accelerator.unwrap_model(model)
model = model._orig_mod if is_compiled_module(model) else model
return model
def disable_adapter(model, accelerator):
return unwrap_model(model, accelerator).disable_adapter()
def save_ckpt(save_dir, transformer, global_step, accelerator, ema, transformer_trainable_parameters, config):
save_root = os.path.join(save_dir, "checkpoints", f"checkpoint-{global_step}")
save_root_lora = os.path.join(save_root, "lora")
os.makedirs(save_root_lora, exist_ok=True)
if accelerator.is_main_process:
if config.train.ema:
ema.copy_ema_to(transformer_trainable_parameters, store_temp=True)
unwrap_model(transformer, accelerator).save_pretrained(save_root_lora)
if config.train.ema:
ema.copy_temp_to(transformer_trainable_parameters)
def main(_):
# basic Accelerate and logging setup
config = FLAGS.config
unique_id = datetime.datetime.now().strftime("%Y.%m.%d_%H.%M.%S")
if not config.run_name:
config.run_name = unique_id
else:
config.run_name += "_" + unique_id
# number of timesteps within each trajectory to train on
num_train_timesteps = int(config.sample.num_steps * config.train.timestep_fraction)
accelerator_config = ProjectConfiguration(
project_dir=os.path.join(config.logdir, config.run_name),
automatic_checkpoint_naming=True,
total_limit=config.num_checkpoint_limit,
)
accelerator = Accelerator(
# log_with="wandb",
mixed_precision=config.mixed_precision,
project_config=accelerator_config,
# we always accumulate gradients across timesteps; we want config.train.gradient_accumulation_steps to be the
# number of *samples* we accumulate across, so we need to multiply by the number of training timesteps to get
# the total number of optimizer steps to accumulate across.
gradient_accumulation_steps=config.train.gradient_accumulation_steps * num_train_timesteps,
)
# print("accelerator.device:",accelerator.device)
# exit(0)
if accelerator.is_main_process:
wandb.init(
project="flow_grpo",
)
# accelerator.init_trackers(
# project_name="flow-grpo",
# config=config.to_dict(),
# init_kwargs={"wandb": {"name": config.run_name}},
# )
logger.info(f"\n{config}")
# set seed (device_specific is very important to get different prompts on different devices)
set_seed(config.seed, device_specific=True)
# load scheduler, tokenizer and models.
pipeline = StableDiffusion3Pipeline.from_pretrained(
config.pretrained.model
)
# freeze parameters of models to save more memory
pipeline.vae.requires_grad_(False)
pipeline.text_encoder.requires_grad_(False)
pipeline.text_encoder_2.requires_grad_(False)
pipeline.text_encoder_3.requires_grad_(False)
pipeline.transformer.requires_grad_(not config.use_lora)
text_encoders = [pipeline.text_encoder, pipeline.text_encoder_2, pipeline.text_encoder_3]
tokenizers = [pipeline.tokenizer, pipeline.tokenizer_2, pipeline.tokenizer_3]
# disable safety checker
pipeline.safety_checker = None
# make the progress bar nicer
pipeline.set_progress_bar_config(
position=1,
disable=not accelerator.is_local_main_process,
leave=False,
desc="Timestep",
dynamic_ncols=True,
)
# For mixed precision training we cast all non-trainable weigths (vae, non-lora text_encoder and non-lora transformer) to half-precision
# as these weights are only used for inference, keeping weights in full precision is not required.
inference_dtype = torch.float32
if accelerator.mixed_precision == "fp16":
inference_dtype = torch.float16
elif accelerator.mixed_precision == "bf16":
inference_dtype = torch.bfloat16
# Move vae and text_encoder to device and cast to inference_dtype
pipeline.vae.to(accelerator.device, dtype=torch.float32)
pipeline.text_encoder.to(accelerator.device, dtype=inference_dtype)
pipeline.text_encoder_2.to(accelerator.device, dtype=inference_dtype)
pipeline.text_encoder_3.to(accelerator.device, dtype=inference_dtype)
pipeline.transformer.to(accelerator.device)
if config.use_lora:
# Set correct lora layers
target_modules = [
"attn.add_k_proj",
"attn.add_q_proj",
"attn.add_v_proj",
"attn.to_add_out",
"attn.to_k",
"attn.to_out.0",
"attn.to_q",
"attn.to_v",
]
transformer_lora_config = LoraConfig(
r=32,
lora_alpha=64,
init_lora_weights="gaussian",
target_modules=target_modules,
)
if config.train.lora_path:
pipeline.transformer = PeftModel.from_pretrained(pipeline.transformer, config.train.lora_path)
# After loading with PeftModel.from_pretrained, all parameters have requires_grad set to False. You need to call set_adapter to enable gradients for the adapter parameters.
pipeline.transformer.set_adapter("default")
else:
pipeline.transformer = get_peft_model(pipeline.transformer, transformer_lora_config)
transformer = pipeline.transformer
transformer_trainable_parameters = list(filter(lambda p: p.requires_grad, transformer.parameters()))
# This ema setting affects the previous 20 × 8 = 160 steps on average.
ema = EMAModuleWrapper(transformer_trainable_parameters, decay=0.9, update_step_interval=8, device=accelerator.device)
# Enable TF32 for faster training on Ampere GPUs,
# cf https://pytorch.org/docs/stable/notes/cuda.html#tensorfloat-32-tf32-on-ampere-devices
if config.allow_tf32:
torch.backends.cuda.matmul.allow_tf32 = True
# Initialize the optimizer
if config.train.use_8bit_adam:
try:
import bitsandbytes as bnb
except ImportError:
raise ImportError(
"Please install bitsandbytes to use 8-bit Adam. You can do so by running `pip install bitsandbytes`"
)
optimizer_cls = bnb.optim.AdamW8bit
else:
optimizer_cls = torch.optim.AdamW
optimizer = optimizer_cls(
transformer_trainable_parameters,
lr=config.train.learning_rate,
betas=(config.train.adam_beta1, config.train.adam_beta2),
weight_decay=config.train.adam_weight_decay,
eps=config.train.adam_epsilon,
)
# prepare prompt and reward fn
reward_fn = getattr(flow_grpo.rewards, 'multi_score')(accelerator.device, config.reward_fn)
eval_reward_fn = getattr(flow_grpo.rewards, 'multi_score')(accelerator.device, config.reward_fn)
if config.prompt_fn in {"general_ocr", "radiomics"}:
train_dataset = TextPromptDataset(config.dataset, 'train')
test_dataset = TextPromptDataset(config.dataset, 'test')
# Create an infinite-loop DataLoader
train_sampler = DistributedKRepeatSampler(
dataset=train_dataset,
batch_size=config.sample.train_batch_size,
k=config.sample.num_image_per_prompt,
num_replicas=accelerator.num_processes,
rank=accelerator.process_index,
seed=42
)
# Create a DataLoader; note that shuffling is not needed here because it’s controlled by the Sampler.
train_dataloader = DataLoader(
train_dataset,
batch_sampler=train_sampler,
num_workers=1,
collate_fn=TextPromptDataset.collate_fn,
# persistent_workers=True
)
# Create a regular DataLoader
test_dataloader = DataLoader(
test_dataset,
batch_size=config.sample.test_batch_size,
collate_fn=TextPromptDataset.collate_fn,
shuffle=False,
num_workers=8,
)
elif config.prompt_fn == "geneval":
train_dataset = GenevalPromptDataset(config.dataset, 'train')
test_dataset = GenevalPromptDataset(config.dataset, 'test')
train_sampler = DistributedKRepeatSampler(
dataset=train_dataset,
batch_size=config.sample.train_batch_size,
k=config.sample.num_image_per_prompt,
num_replicas=accelerator.num_processes,
rank=accelerator.process_index,
seed=42
)
train_dataloader = DataLoader(
train_dataset,
batch_sampler=train_sampler,
num_workers=1,
collate_fn=GenevalPromptDataset.collate_fn,
# persistent_workers=True
)
test_dataloader = DataLoader(
test_dataset,
batch_size=config.sample.test_batch_size,
collate_fn=GenevalPromptDataset.collate_fn,
shuffle=False,
num_workers=8,
)
else:
raise NotImplementedError("Only general_ocr, radiomics, and geneval are supported with dataset")
neg_prompt_embed, neg_pooled_prompt_embed = compute_text_embeddings([""], text_encoders, tokenizers, max_sequence_length=128, device=accelerator.device)
sample_neg_prompt_embeds = neg_prompt_embed.repeat(config.sample.train_batch_size, 1, 1)
train_neg_prompt_embeds = neg_prompt_embed.repeat(config.train.batch_size, 1, 1)
sample_neg_pooled_prompt_embeds = neg_pooled_prompt_embed.repeat(config.sample.train_batch_size, 1)
train_neg_pooled_prompt_embeds = neg_pooled_prompt_embed.repeat(config.train.batch_size, 1)
if config.sample.num_image_per_prompt == 1:
config.per_prompt_stat_tracking = False
# initialize stat tracker
if config.per_prompt_stat_tracking:
stat_tracker = PerPromptStatTracker(config.sample.global_std)
# for some reason, autocast is necessary for non-lora training but for lora training it isn't necessary and it uses
# more memory
autocast = contextlib.nullcontext if config.use_lora else accelerator.autocast
# autocast = accelerator.autocast
# Prepare everything with our `accelerator`.
transformer, optimizer, train_dataloader, test_dataloader = accelerator.prepare(transformer, optimizer, train_dataloader, test_dataloader)
# executor to perform callbacks asynchronously. this is beneficial for the llava callbacks which makes a request to a
# remote server running llava inference.
executor = futures.ThreadPoolExecutor(max_workers=8)
# Train!
samples_per_epoch = (
config.sample.train_batch_size
* accelerator.num_processes
* config.sample.num_batches_per_epoch
)
total_train_batch_size = (
config.train.batch_size
* accelerator.num_processes
* config.train.gradient_accumulation_steps
)
logger.info("***** Running training *****")
logger.info(f" Sample batch size per device = {config.sample.train_batch_size}")
logger.info(f" Train batch size per device = {config.train.batch_size}")
logger.info(
f" Gradient Accumulation steps = {config.train.gradient_accumulation_steps}"
)
logger.info("")
logger.info(f" Total number of samples per epoch = {samples_per_epoch}")
logger.info(
f" Total train batch size (w. parallel, distributed & accumulation) = {total_train_batch_size}"
)
logger.info(
f" Number of gradient updates per inner epoch = {samples_per_epoch // total_train_batch_size}"
)
logger.info(f" Number of inner epochs = {config.train.num_inner_epochs}")
# assert config.sample.train_batch_size >= config.train.batch_size
# assert config.sample.train_batch_size % config.train.batch_size == 0
# assert samples_per_epoch % total_train_batch_size == 0
epoch = 0
global_step = 0
train_iter = iter(train_dataloader)
while True:
#################### EVAL ####################
pipeline.transformer.eval()
if epoch % config.eval_freq == 0:
eval(pipeline, test_dataloader, text_encoders, tokenizers, config, accelerator, global_step, eval_reward_fn, executor, autocast, num_train_timesteps, ema, transformer_trainable_parameters)
if epoch % config.save_freq == 0 and epoch > 0 and accelerator.is_main_process:
save_ckpt(config.save_dir, transformer, global_step, accelerator, ema, transformer_trainable_parameters, config)
#################### SAMPLING ####################
pipeline.transformer.eval()
samples = []
prompts = []
for i in tqdm(
range(config.sample.num_batches_per_epoch),
desc=f"Epoch {epoch}: sampling",
disable=not accelerator.is_local_main_process,
position=0,
):
train_sampler.set_epoch(epoch * config.sample.num_batches_per_epoch + i)
prompts, prompt_metadata = next(train_iter)
print("Before - compute_text_embeddings")
prompt_embeds, pooled_prompt_embeds = compute_text_embeddings(
prompts,
text_encoders,
tokenizers,
max_sequence_length=128,
device=accelerator.device
)
print("Start prompt_ids")
prompt_ids = tokenizers[0](
prompts,
padding="max_length",
max_length=256,
truncation=True,
return_tensors="pt",
).input_ids.to(accelerator.device)
# sample
print("start create_generator")
if config.sample.same_latent:
generator = create_generator(prompts, base_seed=epoch*10000+i)
else:
generator = None
group_ids = build_group_ids(prompts, prompt_metadata).to(accelerator.device)
with autocast():
with torch.no_grad():
images, latents, log_probs = pipeline_with_logprob(
pipeline,
prompt_embeds=prompt_embeds,
pooled_prompt_embeds=pooled_prompt_embeds,
negative_prompt_embeds=sample_neg_prompt_embeds,
negative_pooled_prompt_embeds=sample_neg_pooled_prompt_embeds,
num_inference_steps=config.sample.num_steps,
guidance_scale=config.sample.guidance_scale,
output_type="pt",
height=config.resolution,
width=config.resolution,
noise_level=config.sample.noise_level,
generator=generator
)
latents = torch.stack(
latents, dim=1
) # (batch_size, num_steps + 1, 16, 96, 96)
log_probs = torch.stack(log_probs, dim=1) # shape after stack (batch_size, num_steps)
timesteps = pipeline.scheduler.timesteps.repeat(
config.sample.train_batch_size, 1
) # (batch_size, num_steps)
# compute rewards asynchronously
rewards = executor.submit(reward_fn, images, prompts, prompt_metadata, only_strict=True)
# yield to to make sure reward computation starts
time.sleep(0)
samples.append(
{
"prompt_ids": prompt_ids,
"prompt_embeds": prompt_embeds,
"pooled_prompt_embeds": pooled_prompt_embeds,
"timesteps": timesteps,
"latents": latents[
:, :-1
], # each entry is the latent before timestep t
"next_latents": latents[
:, 1:
], # each entry is the latent after timestep t
"log_probs": log_probs,
"group_ids": group_ids,
"rewards": rewards,
}
)
# wait for all rewards to be computed
for sample in tqdm(
samples,
desc="Waiting for rewards",
disable=not accelerator.is_local_main_process,
position=0,
):
rewards, reward_metadata = sample["rewards"].result()
# accelerator.print(reward_metadata)
sample["rewards"] = {
key: torch.as_tensor(value, device=accelerator.device).float()
for key, value in rewards.items()
}
# collate samples into dict where each entry has shape (num_batches_per_epoch * sample.batch_size, ...)
samples = {
k: torch.cat([s[k] for s in samples], dim=0)
if not isinstance(samples[0][k], dict)
else {
sub_key: torch.cat([s[k][sub_key] for s in samples], dim=0)
for sub_key in samples[0][k]
}
for k in samples[0].keys()
}
if epoch % 10 == 0 and accelerator.is_main_process:
# this is a hack to force wandb to log the images as JPEGs instead of PNGs
with tempfile.TemporaryDirectory() as tmpdir:
num_samples = min(15, len(images))
sample_indices = random.sample(range(len(images)), num_samples)
for idx, i in enumerate(sample_indices):
image = images[i]
pil = Image.fromarray(
(image.cpu().numpy().transpose(1, 2, 0) * 255).astype(np.uint8)
)
pil = pil.resize((config.resolution, config.resolution))
pil.save(os.path.join(tmpdir, f"{idx}.jpg")) # 使用新的索引
sampled_prompts = [prompts[i] for i in sample_indices]
sampled_rewards = [rewards['avg'][i] for i in sample_indices]
wandb.log(
{
"images": [
wandb.Image(
os.path.join(tmpdir, f"{idx}.jpg"),
caption=f"{prompt:.100} | avg: {avg_reward:.2f}",
)
for idx, (prompt, avg_reward) in enumerate(zip(sampled_prompts, sampled_rewards))
],
},
step=global_step,
)
samples["rewards"]["ori_avg"] = samples["rewards"]["avg"]
# The purpose of repeating `adv` along the timestep dimension here is to make it easier to introduce timestep-dependent advantages later, such as adding a KL reward.
samples["rewards"]["avg"] = samples["rewards"]["avg"].unsqueeze(1).repeat(1, num_train_timesteps)
# gather rewards across processes
gathered_rewards = {key: accelerator.gather(value) for key, value in samples["rewards"].items()}
gathered_rewards = {key: value.cpu().numpy() for key, value in gathered_rewards.items()}
# log rewards and images
if accelerator.is_main_process:
wandb.log(
{
"epoch": epoch,
**{f"reward_{key}": value.mean() for key, value in gathered_rewards.items() if '_strict_accuracy' not in key and '_accuracy' not in key},
},
step=global_step,
)
# per-prompt mean/std tracking
if config.per_prompt_stat_tracking:
group_ids = accelerator.gather(samples["group_ids"]).cpu().numpy()
advantages = stat_tracker.update(group_ids, gathered_rewards['avg'])
if accelerator.is_local_main_process:
print("len(group_ids)", len(group_ids))
print("len unique groups", len(set(group_ids.tolist())))
group_size, trained_prompt_num = stat_tracker.get_stats()
zero_std_ratio, reward_std_mean = calculate_zero_std_ratio(group_ids, gathered_rewards)
if accelerator.is_main_process:
wandb.log(
{
"group_size": group_size,
"trained_prompt_num": trained_prompt_num,
"zero_std_ratio": zero_std_ratio,
"reward_std_mean": reward_std_mean,
},
step=global_step,
)
stat_tracker.clear()
else:
advantages = (gathered_rewards['avg'] - gathered_rewards['avg'].mean()) / (gathered_rewards['avg'].std() + 1e-4)
# ungather advantages; we only need to keep the entries corresponding to the samples on this process
advantages = torch.as_tensor(advantages)
samples["advantages"] = (
advantages.reshape(accelerator.num_processes, -1, advantages.shape[-1])[accelerator.process_index]
.to(accelerator.device)
)
if accelerator.is_local_main_process:
print("advantages: ", samples["advantages"].abs().mean())
del samples["rewards"]
del samples["prompt_ids"]
del samples["group_ids"]
# Get the mask for samples where all advantages are zero across the time dimension
mask = (samples["advantages"].abs().sum(dim=1) != 0)
# If the number of True values in mask is not divisible by config.sample.num_batches_per_epoch,
# randomly change some False values to True to make it divisible
num_batches = config.sample.num_batches_per_epoch
true_count = mask.sum()
if true_count % num_batches != 0:
false_indices = torch.where(~mask)[0]
num_to_change = num_batches - (true_count % num_batches)
if len(false_indices) >= num_to_change:
random_indices = torch.randperm(len(false_indices))[:num_to_change]
mask[false_indices[random_indices]] = True
if accelerator.is_main_process:
wandb.log(
{
"actual_batch_size": mask.sum().item()//config.sample.num_batches_per_epoch,
},
step=global_step,
)
# Filter out samples where the entire time dimension of advantages is zero
samples = {k: v[mask] for k, v in samples.items()}
total_batch_size, num_timesteps = samples["timesteps"].shape
# assert (
# total_batch_size
# == config.sample.train_batch_size * config.sample.num_batches_per_epoch
# )
assert num_timesteps == config.sample.num_steps
#################### TRAINING ####################
for inner_epoch in range(config.train.num_inner_epochs):
# shuffle samples along batch dimension
perm = torch.randperm(total_batch_size, device=accelerator.device)
samples = {k: v[perm] for k, v in samples.items()}
# rebatch for training
samples_batched = {
k: v.reshape(-1, total_batch_size//config.sample.num_batches_per_epoch, *v.shape[1:])
for k, v in samples.items()
}
# dict of lists -> list of dicts for easier iteration
samples_batched = [
dict(zip(samples_batched, x)) for x in zip(*samples_batched.values())
]
# train
pipeline.transformer.train()
info = defaultdict(list)
for i, sample in tqdm(
list(enumerate(samples_batched)),
desc=f"Epoch {epoch}.{inner_epoch}: training",
position=0,
disable=not accelerator.is_local_main_process,
):
if config.train.cfg:
# concat negative prompts to sample prompts to avoid two forward passes
embeds = torch.cat(
[train_neg_prompt_embeds[:len(sample["prompt_embeds"])], sample["prompt_embeds"]]
)
pooled_embeds = torch.cat(
[train_neg_pooled_prompt_embeds[:len(sample["pooled_prompt_embeds"])], sample["pooled_prompt_embeds"]]
)
else:
embeds = sample["prompt_embeds"]
pooled_embeds = sample["pooled_prompt_embeds"]
train_timesteps = [step_index for step_index in range(num_train_timesteps)]
for j in tqdm(
train_timesteps,
desc="Timestep",
position=1,
leave=False,
disable=not accelerator.is_local_main_process,
):
with accelerator.accumulate(transformer):
with autocast():
prev_sample, log_prob, prev_sample_mean, std_dev_t = compute_log_prob(transformer, pipeline, sample, j, embeds, pooled_embeds, config)
if config.train.beta > 0:
with torch.no_grad():
with disable_adapter(transformer, accelerator):
_, _, prev_sample_mean_ref, _ = compute_log_prob(transformer, pipeline, sample, j, embeds, pooled_embeds, config)
# grpo logic
advantages = torch.clamp(
sample["advantages"][:, j],
-config.train.adv_clip_max,
config.train.adv_clip_max,
)
ratio = torch.exp(log_prob - sample["log_probs"][:, j])
unclipped_loss = -advantages * ratio
clipped_loss = -advantages * torch.clamp(
ratio,
1.0 - config.train.clip_range,
1.0 + config.train.clip_range,
)
policy_loss = torch.mean(torch.maximum(unclipped_loss, clipped_loss))
if config.train.beta > 0:
kl_loss = ((prev_sample_mean - prev_sample_mean_ref) ** 2).mean(dim=(1,2,3), keepdim=True) / (2 * std_dev_t ** 2)
kl_loss = torch.mean(kl_loss)
loss = policy_loss + config.train.beta * kl_loss
else:
loss = policy_loss
info["approx_kl"].append(
0.5
* torch.mean((log_prob - sample["log_probs"][:, j]) ** 2)
)
info["clipfrac"].append(
torch.mean(
(
torch.abs(ratio - 1.0) > config.train.clip_range
).float()
)
)
info["clipfrac_gt_one"].append(
torch.mean(
(
ratio - 1.0 > config.train.clip_range
).float()
)
)
info["clipfrac_lt_one"].append(
torch.mean(
(
1.0 - ratio > config.train.clip_range
).float()
)
)
info["policy_loss"].append(policy_loss)
if config.train.beta > 0:
info["kl_loss"].append(kl_loss)
info["loss"].append(loss)
# backward pass
accelerator.backward(loss)
if accelerator.sync_gradients:
accelerator.clip_grad_norm_(
transformer.parameters(), config.train.max_grad_norm
)
optimizer.step()
optimizer.zero_grad()
# Checks if the accelerator has performed an optimization step behind the scenes
if accelerator.sync_gradients:
# assert (j == train_timesteps[-1]) and (
# i + 1
# ) % config.train.gradient_accumulation_steps == 0
# log training-related stuff
info = {k: torch.mean(torch.stack(v)) for k, v in info.items()}
info = accelerator.reduce(info, reduction="mean")
info.update({"epoch": epoch, "inner_epoch": inner_epoch})
if accelerator.is_main_process:
wandb.log(info, step=global_step)
global_step += 1
info = defaultdict(list)
if config.train.ema:
ema.step(transformer_trainable_parameters, global_step)
# make sure we did an optimization step at the end of the inner epoch
# assert accelerator.sync_gradients
epoch+=1
if __name__ == "__main__":
app.run(main)
|