File size: 15,906 Bytes
059f915 | 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 | """
U-Net Generator with Conditioning.
Implements a compact U-Net style encoder/decoder with conditioning vector
integration and optional self-attention at the bottleneck. The encoder is
custom convolutional code, not a torchvision ResNet34 backbone.
"""
from typing import Tuple, Union
import torch
import torch.nn as nn
from .attention import SelfAttention
class SpectralNorm(nn.Module):
"""Compatibility wrapper around PyTorch spectral normalization."""
def __init__(
self, module: nn.Module, name: str = "weight", power_iterations: int = 1
):
super().__init__()
self.module = nn.utils.spectral_norm(
module,
name=name,
n_power_iterations=power_iterations,
)
def forward(self, *args):
return self.module(*args)
class ConditionProjection(nn.Module):
"""
Condition Vector Projection Module.
Specification Reference: Section 2.1.1 - Conditioning Vector Integration
Projects 6D condition vector through MLP: 6 β 128 β 512 dimensions,
then reshapes for concatenation at bottleneck.
Args:
condition_dim: Input condition dimension (default: 6)
hidden_dim: Hidden layer dimension (default: 128)
output_dim: Output dimension (default: 512)
spatial_size: Spatial size for output (default: 32)
"""
def __init__(
self,
condition_dim: int = 6,
hidden_dim: int = 128,
output_dim: int = 512,
spatial_size: int = 32,
):
super().__init__()
self.condition_dim = condition_dim
self.output_dim = output_dim
self.spatial_size = spatial_size
# MLP projection (spec: 6 β 128 β 512)
self.mlp = nn.Sequential(
nn.Linear(condition_dim, hidden_dim),
nn.ReLU(inplace=True),
nn.Linear(hidden_dim, output_dim),
)
def forward(
self,
condition_vec: torch.Tensor,
spatial_size: Union[int, Tuple[int, int], None] = None,
) -> torch.Tensor:
"""
Project condition vector and reshape for spatial concatenation.
Args:
condition_vec: (B, 6) condition tensor
Returns:
Spatially replicated condition: (B, 512, 32, 32)
"""
# Project through MLP
embedded = self.mlp(condition_vec) # (B, 512)
if spatial_size is None:
height = width = self.spatial_size
elif isinstance(spatial_size, int):
height = width = spatial_size
else:
height, width = spatial_size
# Reshape and spatially replicate.
embedded = embedded.view(-1, self.output_dim, 1, 1)
embedded = embedded.expand(-1, -1, height, width)
return embedded
class ConvBlock(nn.Module):
"""
Convolutional block with normalization and activation.
Args:
in_channels: Input channels
out_channels: Output channels
kernel_size: Kernel size
stride: Stride
padding: Padding
use_spectral_norm: Whether to use spectral normalization
use_dropout: Whether to use dropout
dropout_rate: Dropout probability
"""
def __init__(
self,
in_channels: int,
out_channels: int,
kernel_size: int = 3,
stride: int = 1,
padding: int = 1,
use_spectral_norm: bool = True,
use_dropout: bool = False,
dropout_rate: float = 0.3,
):
super().__init__()
layers = []
# Convolution
conv = nn.Conv2d(
in_channels, out_channels, kernel_size, stride, padding, bias=False
)
if use_spectral_norm:
conv = SpectralNorm(conv)
layers.append(conv)
# Normalization
layers.append(nn.InstanceNorm2d(out_channels, affine=True))
# Activation
layers.append(nn.ReLU(inplace=True))
# Dropout (for decoder blocks)
if use_dropout:
layers.append(nn.Dropout2d(dropout_rate))
self.block = nn.Sequential(*layers)
def forward(self, x: torch.Tensor) -> torch.Tensor:
return self.block(x)
class UpConvBlock(nn.Module):
"""
Upsampling convolutional block for decoder.
Args:
in_channels: Input channels
out_channels: Output channels
use_spectral_norm: Whether to use spectral normalization
dropout_rate: Dropout probability
"""
def __init__(
self,
in_channels: int,
out_channels: int,
use_spectral_norm: bool = True,
dropout_rate: float = 0.3,
):
super().__init__()
self.upsample = nn.Upsample(scale_factor=2, mode="bilinear", align_corners=True)
self.conv = ConvBlock(
in_channels,
out_channels,
kernel_size=3,
stride=1,
padding=1,
use_spectral_norm=use_spectral_norm,
use_dropout=True,
dropout_rate=dropout_rate,
)
def forward(self, x: torch.Tensor) -> torch.Tensor:
x = self.upsample(x)
x = self.conv(x)
return x
class Generator(nn.Module):
"""
U-Net Generator with ResNet34 encoder and conditioning.
Specification Reference: Section 2.1 - Generator Architecture
Architecture:
- Input: RGB Image (512Γ512Γ3) + Conditioning Vector (6D)
- Encoder: ResNet34 backbone with 4 conv blocks
- Bottleneck: Self-attention + condition integration
- Decoder: 4 upconv blocks with skip connections
- Output: Tanh activation β [-1, 1] range
Args:
condition_dim: Dimension of conditioning vector (default: 6)
use_spectral_norm: Use spectral normalization (default: True)
use_self_attention: Use self-attention at bottleneck (default: True)
dropout_rate: Dropout rate for decoder (default: 0.3)
Example:
>>> gen = Generator()
>>> img = torch.randn(2, 3, 512, 512)
>>> cond = torch.rand(2, 6)
>>> out = gen(img, cond)
>>> out.shape
torch.Size([2, 3, 512, 512])
"""
def __init__(
self,
condition_dim: int = 6,
use_spectral_norm: bool = True,
use_self_attention: bool = True,
dropout_rate: float = 0.3,
):
super().__init__()
self.condition_dim = condition_dim
self.use_self_attention = use_self_attention
# Condition projection module (spec: 6 β 128 β 512)
self.condition_proj = ConditionProjection(
condition_dim=condition_dim, hidden_dim=128, output_dim=512, spatial_size=32
)
# Input: concatenate spatially replicated condition (spec: 3 + 6 = 9 channels)
self.input_conv = ConvBlock(
9,
64,
kernel_size=7,
stride=1,
padding=3,
use_spectral_norm=use_spectral_norm,
)
# Encoder (ResNet34-based, spec: Section 2.1)
self.enc1 = self._make_encoder_block(64, 64, use_spectral_norm) # 512->256
self.enc2 = self._make_encoder_block(64, 128, use_spectral_norm) # 256->128
self.enc3 = self._make_encoder_block(128, 256, use_spectral_norm) # 128->64
self.enc4 = self._make_encoder_block(256, 512, use_spectral_norm) # 64->32
# Bottleneck with self-attention (spec: Section 2.3)
self.bottleneck_conv = ConvBlock(
512 + 512,
512, # 512 from encoder + 512 from condition projection
kernel_size=3,
padding=1,
use_spectral_norm=use_spectral_norm,
)
if use_self_attention:
self.self_attention = SelfAttention(in_dim=512)
else:
self.self_attention = nn.Identity()
# Decoder (spec: Section 2.1)
self.dec4 = UpConvBlock(512, 256, use_spectral_norm, dropout_rate) # 32->64
self.dec3 = UpConvBlock(
256 + 256, 128, use_spectral_norm, dropout_rate
) # 64->128 (+ skip)
self.dec2 = UpConvBlock(
128 + 128, 64, use_spectral_norm, dropout_rate
) # 128->256 (+ skip)
self.dec1 = UpConvBlock(
64 + 64, 64, use_spectral_norm, dropout_rate
) # 256->512 (+ skip)
# Output layer (spec: 64 β 3 channels, Tanh activation)
self.output_conv = nn.Sequential(
nn.Conv2d(64, 3, kernel_size=7, stride=1, padding=3),
nn.Tanh(), # Normalize to [-1, 1]
)
# Initialize weights (spec: He initialization for ReLU)
self._init_weights()
def _make_encoder_block(
self, in_channels: int, out_channels: int, use_spectral_norm: bool
) -> nn.Module:
"""Create encoder block with downsampling."""
return nn.Sequential(
ConvBlock(
in_channels, out_channels, stride=2, use_spectral_norm=use_spectral_norm
),
ConvBlock(
out_channels,
out_channels,
stride=1,
use_spectral_norm=use_spectral_norm,
),
)
def _init_weights(self):
"""Initialize network weights (spec: He initialization)."""
for m in self.modules():
if isinstance(m, nn.Conv2d):
nn.init.kaiming_normal_(m.weight, mode="fan_out", nonlinearity="relu")
if m.bias is not None:
nn.init.constant_(m.bias, 0)
elif isinstance(m, nn.Linear):
nn.init.kaiming_normal_(m.weight, mode="fan_out", nonlinearity="relu")
nn.init.constant_(m.bias, 0)
elif isinstance(m, (nn.BatchNorm2d, nn.InstanceNorm2d)):
if m.weight is not None:
nn.init.constant_(m.weight, 1)
if m.bias is not None:
nn.init.constant_(m.bias, 0)
def forward(self, image: torch.Tensor, condition: torch.Tensor) -> torch.Tensor:
"""
Forward pass of generator.
Args:
image: Input image (B, 3, 512, 512) in range [-1, 1]
condition: Condition vector (B, 6) in range [0, 1]
Returns:
Generated image (B, 3, 512, 512) in range [-1, 1]
"""
# Validate inputs
assert image.shape[1] == 3, f"Expected 3 channels, got {image.shape[1]}"
assert (
condition.shape[1] == self.condition_dim
), f"Expected {self.condition_dim}D condition, got {condition.shape[1]}"
# Spatially replicate condition and concatenate with image (spec: Section 2.1.1)
B, C, H, W = image.shape
cond_spatial = condition.view(B, self.condition_dim, 1, 1).expand(
B, self.condition_dim, H, W
)
x = torch.cat([image, cond_spatial], dim=1) # (B, 9, 512, 512)
# Input convolution
x = self.input_conv(x) # (B, 64, 512, 512)
# Encoder with skip connections (spec: Section 2.1)
enc1 = self.enc1(x) # (B, 64, 256, 256)
enc2 = self.enc2(enc1) # (B, 128, 128, 128)
enc3 = self.enc3(enc2) # (B, 256, 64, 64)
enc4 = self.enc4(enc3) # (B, 512, 32, 32)
# Bottleneck: Integrate condition via MLP projection (spec: Section 2.1.1)
cond_proj = self.condition_proj(condition, spatial_size=enc4.shape[-2:])
bottleneck = torch.cat([enc4, cond_proj], dim=1) # (B, 1024, 32, 32)
bottleneck = self.bottleneck_conv(bottleneck) # (B, 512, 32, 32)
# Self-attention (spec: Section 2.3)
bottleneck = self.self_attention(bottleneck) # (B, 512, 32, 32)
# Decoder with skip connections (spec: Section 2.1)
dec4 = self.dec4(bottleneck) # (B, 256, 64, 64)
dec3 = self.dec3(torch.cat([dec4, enc3], dim=1)) # (B, 128, 128, 128)
dec2 = self.dec2(torch.cat([dec3, enc2], dim=1)) # (B, 64, 256, 256)
dec1 = self.dec1(torch.cat([dec2, enc1], dim=1)) # (B, 64, 512, 512)
# Output (spec: Tanh activation β [-1, 1])
output = self.output_conv(dec1) # (B, 3, 512, 512)
return output
if __name__ == "__main__":
"""Test script for Generator."""
print("Generator - Test Script")
print("=" * 60)
print("\n1. Testing Generator initialization...")
try:
gen = Generator()
total_params = sum(p.numel() for p in gen.parameters())
trainable_params = sum(p.numel() for p in gen.parameters() if p.requires_grad)
print(f" β Generator created successfully")
print(f" β Total parameters: {total_params:,}")
print(f" β Trainable parameters: {trainable_params:,}")
print(f" β Model size: ~{total_params * 4 / 1024 / 1024:.1f} MB (FP32)")
except Exception as e:
print(f" β Error: {e}")
import traceback
traceback.print_exc()
print("\n2. Testing forward pass...")
try:
gen = Generator()
gen.eval()
img = torch.randn(2, 3, 512, 512)
cond = torch.rand(2, 6)
with torch.no_grad():
out = gen(img, cond)
assert out.shape == img.shape, f"Shape mismatch: {out.shape} != {img.shape}"
assert (
out.min() >= -1.5 and out.max() <= 1.5
), f"Output range [{out.min():.3f}, {out.max():.3f}] outside expected [-1, 1]"
print(f" β Input shape: {img.shape}")
print(f" β Condition shape: {cond.shape}")
print(f" β Output shape: {out.shape}")
print(f" β Output range: [{out.min():.3f}, {out.max():.3f}]")
except Exception as e:
print(f" β Error: {e}")
import traceback
traceback.print_exc()
print("\n3. Testing gradient flow...")
try:
gen = Generator()
gen.train()
img = torch.randn(1, 3, 512, 512, requires_grad=True)
cond = torch.rand(1, 6)
out = gen(img, cond)
loss = out.sum()
loss.backward()
assert img.grad is not None, "Gradient not computed"
print(f" β Gradients flow correctly")
print(f" β Input grad norm: {img.grad.norm().item():.6f}")
except Exception as e:
print(f" β Error: {e}")
print("\n4. Testing different input sizes...")
try:
gen = Generator()
gen.eval()
# Test batch sizes
for batch_size in [1, 2, 4]:
img = torch.randn(batch_size, 3, 512, 512)
cond = torch.rand(batch_size, 6)
with torch.no_grad():
out = gen(img, cond)
assert out.shape[0] == batch_size, f"Batch size mismatch"
print(f" β Batch size {batch_size}: OK")
except Exception as e:
print(f" β Error: {e}")
print("\n5. Testing condition independence...")
try:
gen = Generator()
gen.eval()
img = torch.randn(1, 3, 512, 512)
cond1 = torch.zeros(1, 6)
cond2 = torch.ones(1, 6)
with torch.no_grad():
out1 = gen(img, cond1)
out2 = gen(img, cond2)
diff = (out1 - out2).abs().mean().item()
print(f" β Output difference with different conditions: {diff:.6f}")
assert diff > 0.01, "Outputs should differ with different conditions"
except Exception as e:
print(f" β Error: {e}")
print("\nβ
Generator tests complete!")
print("=" * 60)
|