File size: 18,237 Bytes
80b58c8 0e3999b 80b58c8 0e3999b 80b58c8 0e3999b 80b58c8 0eabd76 80b58c8 | 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 | """
Byte Dream Training Pipeline
Complete training system for diffusion models with CPU optimization
"""
import os
import torch
import torch.nn as nn
import torch.nn.functional as F
from torch.utils.data import Dataset, DataLoader
from torchvision import transforms
from PIL import Image
import numpy as np
from tqdm import tqdm
import yaml
import argparse
from pathlib import Path
from typing import Tuple, List, Optional
import gc
class ImageTextDataset(Dataset):
"""
Dataset for image-text pairs
Supports various data augmentations for better generalization
"""
def __init__(
self,
data_dir: str,
image_size: int = 512,
random_flip: bool = True,
random_crop: bool = False,
center_crop: bool = True,
):
self.data_dir = Path(data_dir)
# Check if directory exists
if not self.data_dir.exists():
raise FileNotFoundError(f"Dataset directory not found: {self.data_dir}\nPlease create the directory and add images, or use --train_data with a valid path.")
self.image_paths = list(self.data_dir.glob("*.jpg")) + \
list(self.data_dir.glob("*.png")) + \
list(self.data_dir.glob("*.jpeg"))
# Check if there are any images
if len(self.image_paths) == 0:
raise ValueError(f"No images found in {self.data_dir}\nSupported formats: .jpg, .png, .jpeg")
self.image_size = image_size
self.random_flip = random_flip
self.random_crop = random_crop
self.center_crop = center_crop
# Transformations
self.transform = self._get_transform()
# Load captions
self.captions = self._load_captions()
def _get_transform(self) -> transforms.Compose:
"""Get image transformation pipeline"""
transforms_list = []
if self.random_crop:
transforms_list.append(transforms.RandomCrop(self.image_size))
elif self.center_crop:
transforms_list.append(transforms.CenterCrop(self.image_size))
else:
transforms_list.append(transforms.Resize((self.image_size, self.image_size)))
if self.random_flip:
transforms_list.append(transforms.RandomHorizontalFlip(p=0.5))
transforms_list.extend([
transforms.ToTensor(),
transforms.Normalize([0.5, 0.5, 0.5], [0.5, 0.5, 0.5]),
])
return transforms.Compose(transforms_list)
def _load_captions(self) -> dict:
"""Load captions from text files"""
captions = {}
for img_path in self.image_paths:
caption_path = img_path.with_suffix('.txt')
if caption_path.exists():
with open(caption_path, 'r', encoding='utf-8') as f:
captions[str(img_path)] = f.read().strip()
else:
# Use filename as caption if no text file
captions[str(img_path)] = img_path.stem.replace('_', ' ')
return captions
def __len__(self) -> int:
return len(self.image_paths)
def __getitem__(self, idx: int) -> dict:
img_path = self.image_paths[idx]
# Load image
try:
image = Image.open(img_path).convert('RGB')
except Exception as e:
print(f"Error loading image {img_path}: {e}")
return self.__getitem__((idx + 1) % len(self))
# Transform image
pixel_values = self.transform(image)
# Get caption
caption = self.captions.get(str(img_path), "")
return {
"pixel_values": pixel_values,
"input_ids": caption,
"image_path": str(img_path),
}
class LatentDiffusionTrainer:
"""
Trainer for latent diffusion models
Implements training loop with mixed precision and gradient accumulation
"""
def __init__(
self,
unet: nn.Module,
vae: nn.Module,
text_encoder: nn.Module,
scheduler,
config: dict,
device: str = "cpu",
):
self.unet = unet
self.vae = vae
self.text_encoder = text_encoder
self.scheduler = scheduler
self.config = config
self.device = torch.device(device)
# Training parameters
self.epochs = config['training']['epochs']
self.batch_size = config['training']['batch_size']
self.learning_rate = config['training']['learning_rate']
self.gradient_accumulation_steps = config['training']['gradient_accumulation_steps']
self.max_grad_norm = config['training']['max_grad_norm']
# Mixed precision
self.mixed_precision = config['training']['mixed_precision']
self.use_amp = self.mixed_precision != "no"
# Output directories
self.output_dir = Path(config['training']['output_dir'])
self.logging_dir = Path(config['training']['logging_dir'])
self.output_dir.mkdir(parents=True, exist_ok=True)
self.logging_dir.mkdir(parents=True, exist_ok=True)
# Initialize optimizer
self.optimizer = torch.optim.AdamW(
unet.parameters(),
lr=self.learning_rate,
betas=(0.9, 0.999),
weight_decay=1e-2,
eps=1e-08,
)
# Learning rate scheduler
self.lr_scheduler = self._create_lr_scheduler()
# Gradient scaler for mixed precision
self.scaler = torch.cuda.amp.GradScaler() if self.use_amp and torch.cuda.is_available() else None
# Move models to device
self._prepare_models()
def _prepare_models(self):
"""Prepare models for training"""
print(f"Preparing models on {self.device}...")
self.vae.to(self.device)
self.text_encoder.to(self.device)
self.unet.to(self.device)
# Set VAE and text encoder to eval mode (frozen)
self.vae.eval()
if hasattr(self.text_encoder, 'model'):
self.text_encoder.model.eval()
# Freeze VAE and text encoder parameters
for param in self.vae.parameters():
param.requires_grad = False
if hasattr(self.text_encoder, 'model'):
for param in self.text_encoder.model.parameters():
param.requires_grad = False
# Set UNet to train mode
self.unet.train()
def _create_lr_scheduler(self):
"""Create learning rate scheduler"""
sched_config = self.config['training']
if sched_config['lr_scheduler'] == "constant_with_warmup":
return torch.optim.lr_scheduler.ConstantLR(
self.optimizer,
factor=1.0,
total_iters=sched_config['lr_warmup_steps'],
)
elif sched_config['lr_scheduler'] == "linear":
return torch.optim.lr_scheduler.LinearLR(
self.optimizer,
start_factor=0.1,
end_factor=1.0,
total_iters=sched_config['lr_warmup_steps'],
)
else:
return torch.optim.lr_scheduler.ConstantLR(self.optimizer, factor=1.0)
def encode_images(self, images: torch.Tensor) -> torch.Tensor:
"""Encode images to latent space"""
with torch.no_grad():
latents = self.vae.encode(images)
# Use only the mean part of the VAE output (first half of channels)
latents = latents[:, :4] # Take first 4 channels (mean, not log_var)
latents = latents * 0.18215 # Scale factor
return latents
def encode_text(self, texts: List[str]) -> torch.Tensor:
"""Encode text to embeddings"""
with torch.no_grad():
text_embeddings = self.text_encoder(texts, device=self.device)
return text_embeddings
def compute_loss(
self,
latents: torch.Tensor,
text_embeddings: torch.Tensor,
) -> torch.Tensor:
"""
Compute diffusion loss
Args:
latents: Latent representations of images
text_embeddings: Text embeddings
Returns:
Loss value
"""
batch_size = latents.shape[0]
# Sample random timesteps
timesteps = torch.randint(
0,
self.scheduler.num_train_timesteps,
(batch_size,),
device=self.device,
).long()
# Add noise to latents
noise = torch.randn_like(latents)
noisy_latents = self.scheduler.add_noise(latents, noise, timesteps)
# Predict noise
timestep_tensor = timesteps
model_output = self.unet(
sample=noisy_latents,
timestep=timestep_tensor,
encoder_hidden_states=text_embeddings,
)
# Compute loss
loss = F.mse_loss(model_output, noise, reduction="mean")
return loss
def train_step(
self,
batch: dict,
) -> float:
"""
Perform single training step
Args:
batch: Batch of data
Returns:
Loss value
"""
pixel_values = batch["pixel_values"].to(self.device)
input_ids = batch["input_ids"]
# Encode images and text
latents = self.encode_images(pixel_values)
text_embeddings = self.encode_text(input_ids)
# Compute loss
if self.use_amp and self.scaler is not None:
with torch.cuda.amp.autocast():
loss = self.compute_loss(latents, text_embeddings)
loss = loss / self.gradient_accumulation_steps
self.scaler.scale(loss).backward()
else:
loss = self.compute_loss(latents, text_embeddings)
loss = loss / self.gradient_accumulation_steps
loss.backward()
return loss.item() * self.gradient_accumulation_steps
def save_checkpoint(self, epoch: int, step: int):
"""Save model checkpoint"""
checkpoint_dir = self.output_dir / f"checkpoint-{epoch}-{step}"
checkpoint_dir.mkdir(parents=True, exist_ok=True)
# Save UNet
torch.save({
'epoch': epoch,
'step': step,
'unet_state_dict': self.unet.state_dict(),
'optimizer_state_dict': self.optimizer.state_dict(),
'scheduler_state_dict': self.lr_scheduler.state_dict() if self.lr_scheduler else None,
}, checkpoint_dir / "pytorch_model.bin")
# Save config
with open(checkpoint_dir / "config.yaml", 'w') as f:
yaml.dump(self.config, f)
print(f"Checkpoint saved to {checkpoint_dir}")
def train(self, resume_from_checkpoint: Optional[str] = None):
"""
Main training loop
Args:
resume_from_checkpoint: Path to checkpoint to resume from
"""
# Create dataset and dataloader
train_config = self.config['training']
dataset = ImageTextDataset(
data_dir=train_config['dataset_path'],
image_size=512,
random_flip=train_config['random_flip'],
random_crop=train_config['random_crop'],
center_crop=train_config['center_crop'],
)
dataloader = DataLoader(
dataset,
batch_size=self.batch_size,
shuffle=True,
num_workers=0, # CPU training
pin_memory=False,
)
# Resume from checkpoint
start_epoch = 0
global_step = 0
if resume_from_checkpoint:
print(f"Resuming from checkpoint: {resume_from_checkpoint}")
checkpoint = torch.load(resume_from_checkpoint, map_location=self.device)
self.unet.load_state_dict(checkpoint['unet_state_dict'])
self.optimizer.load_state_dict(checkpoint['optimizer_state_dict'])
if checkpoint['scheduler_state_dict']:
self.lr_scheduler.load_state_dict(checkpoint['scheduler_state_dict'])
start_epoch = checkpoint['epoch']
global_step = checkpoint['step']
# Training loop
total_steps = len(dataloader) * self.epochs
print(f"Starting training for {self.epochs} epochs...")
print(f"Total steps: {total_steps}")
print(f"Batch size: {self.batch_size}")
print(f"Mixed precision: {self.mixed_precision}")
for epoch in range(start_epoch, self.epochs):
self.unet.train()
progress_bar = tqdm(dataloader, desc=f"Epoch {epoch+1}/{self.epochs}")
epoch_loss = 0
num_steps = 0
for step, batch in enumerate(progress_bar):
# Training step
loss = self.train_step(batch)
epoch_loss += loss
num_steps += 1
# Gradient clipping and optimizer step
if (step + 1) % self.gradient_accumulation_steps == 0:
if self.use_amp and self.scaler is not None:
self.scaler.unscale_(self.optimizer)
torch.nn.utils.clip_grad_norm_(
self.unet.parameters(),
self.max_grad_norm,
)
self.scaler.step(self.optimizer)
self.scaler.update()
else:
torch.nn.utils.clip_grad_norm_(self.unet.parameters(), self.max_grad_norm)
self.optimizer.step()
# Learning rate scheduling
if self.lr_scheduler:
self.lr_scheduler.step()
# Zero gradients
self.optimizer.zero_grad()
# Update progress bar
avg_loss = epoch_loss / num_steps
progress_bar.set_postfix({"loss": f"{avg_loss:.4f}"})
# Logging
if (global_step + 1) % self.config['training']['log_every_n_steps'] == 0:
print(f"\nStep {global_step + 1}: Loss = {avg_loss:.4f}")
# Save checkpoint periodically
if (global_step + 1) % 1000 == 0:
self.save_checkpoint(epoch, global_step)
global_step += 1
# End of epoch
avg_epoch_loss = epoch_loss / max(num_steps, 1)
print(f"\nEpoch {epoch+1} completed. Average loss: {avg_epoch_loss:.4f}")
# Save epoch checkpoint
self.save_checkpoint(epoch, global_step)
# Clear memory
gc.collect()
if torch.cuda.is_available():
torch.cuda.empty_cache()
# Save final model
print("\nTraining completed!")
self.save_final_model()
def save_final_model(self):
"""Save final trained model"""
final_dir = self.output_dir / "final"
final_dir.mkdir(parents=True, exist_ok=True)
# Save UNet
torch.save({
'unet_state_dict': self.unet.state_dict(),
'config': self.config,
}, final_dir / "unet_pytorch_model.bin")
print(f"Final model saved to {final_dir}")
def main():
"""Main training function"""
parser = argparse.ArgumentParser(description="Train Byte Dream diffusion model")
parser.add_argument("--config", type=str, default="config.yaml", help="Path to config file")
parser.add_argument("--train_data", type=str, default="./dataset", help="Path to training data (default: ./dataset)")
parser.add_argument("--output_dir", type=str, default="./models/bytedream", help="Output directory")
parser.add_argument("--resume", type=str, default=None, help="Resume from checkpoint")
parser.add_argument("--device", type=str, default="cpu", help="Device to train on")
args = parser.parse_args()
# Load config
with open(args.config, 'r') as f:
config = yaml.safe_load(f)
# Override config with command line arguments
config['training']['dataset_path'] = args.train_data
config['training']['output_dir'] = args.output_dir
# Import model components
from bytedream.model import create_unet, create_vae, create_text_encoder
from bytedream.scheduler import create_scheduler
# Create components
print("Creating model components...")
unet = create_unet(config)
vae = create_vae(config)
text_encoder = create_text_encoder(config)
scheduler = create_scheduler(config)
# Count parameters
total_params = sum(p.numel() for p in unet.parameters())
print(f"UNet parameters: {total_params:,}")
# Create trainer
trainer = LatentDiffusionTrainer(
unet=unet,
vae=vae,
text_encoder=text_encoder,
scheduler=scheduler,
config=config,
device=args.device,
)
# Start training
trainer.train(resume_from_checkpoint=args.resume)
if __name__ == "__main__":
main()
|