Spaces:
Sleeping
Sleeping
File size: 16,194 Bytes
8960670 | 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 | #!/usr/bin/env python3
"""
DCA-Net: Dual-Context Attention Network for Lung Nodule Classification
Architecture per roadmap1.md Phase 2:
- Stream 1 (Nodule): 2.5D CNN with EfficientNet-B0 + cross-slice attention
- Stream 2 (Context): Lightweight 3D CNN with spatial attention
- Fusion: Multi-head attention fusion module
- Prediction head with dropout
- Uncertainty quantification via MC Dropout
"""
import torch
import torch.nn as nn
import torch.nn.functional as F
import timm
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Cross-Slice Attention Module
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class CrossSliceAttention(nn.Module):
"""Learn spatial dependencies across adjacent slices (Β±k neighbors)."""
def __init__(self, feature_dim, num_neighbors=2):
super().__init__()
self.num_neighbors = num_neighbors
self.query = nn.Linear(feature_dim, feature_dim)
self.key = nn.Linear(feature_dim, feature_dim)
self.value = nn.Linear(feature_dim, feature_dim)
self.scale = feature_dim ** 0.5
self.norm = nn.LayerNorm(feature_dim)
def forward(self, slice_features):
"""
Args:
slice_features: (B, num_slices, D)
Returns:
attended: (B, num_slices, D)
"""
B, S, D = slice_features.shape
Q = self.query(slice_features) # (B, S, D)
K = self.key(slice_features)
V = self.value(slice_features)
# Build a local attention mask so each slice only attends to Β±k neighbors
mask = torch.zeros(S, S, device=slice_features.device, dtype=torch.bool)
for i in range(S):
lo = max(0, i - self.num_neighbors)
hi = min(S, i + self.num_neighbors + 1)
mask[i, lo:hi] = True
# Scaled dot-product attention
attn = torch.matmul(Q, K.transpose(-1, -2)) / self.scale # (B, S, S)
attn = attn.masked_fill(~mask.unsqueeze(0), float('-inf'))
attn = F.softmax(attn, dim=-1)
out = torch.matmul(attn, V) # (B, S, D)
out = self.norm(out + slice_features) # residual + LayerNorm
return out, attn
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Stream 1: Nodule Feature Extractor (2.5D CNN)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class NoduleStream(nn.Module):
"""
Process 3D nodule patch as stack of 2D slices through EfficientNet-B0,
then apply cross-slice attention + temporal 1D convolution.
Input: (B, 1, 64, 64, 64)
Output: (B, 512)
"""
def __init__(self, backbone_name="efficientnet_b0", feature_dim=512,
num_neighbors=2, ablation=None):
super().__init__()
self.ablation = ablation
# 2D backbone (pretrained on ImageNet)
self.backbone = timm.create_model(
backbone_name, pretrained=False, in_chans=1, num_classes=0
)
backbone_out = self.backbone.num_features # e.g. 1280 for efficientnet_b0
# Project backbone features to feature_dim
self.proj = nn.Linear(backbone_out, feature_dim)
# Cross-slice attention
self.cross_attn = CrossSliceAttention(feature_dim, num_neighbors)
# Temporal 1D convolution across slices
self.temporal_conv = nn.Sequential(
nn.Conv1d(feature_dim, feature_dim, kernel_size=3, padding=1),
nn.BatchNorm1d(feature_dim),
nn.ReLU(inplace=True),
nn.Conv1d(feature_dim, feature_dim, kernel_size=3, padding=1),
nn.BatchNorm1d(feature_dim),
nn.ReLU(inplace=True),
)
# Adaptive pooling to single vector
self.pool = nn.AdaptiveAvgPool1d(1)
def forward(self, x):
"""
Args:
x: (B, 1, D, H, W) β e.g. (B, 1, 64, 64, 64)
Returns:
features: (B, 512)
attn_weights: (B, num_slices, num_slices)
"""
# --- DATAPARALLEL FIX ---
# When using nn.DataParallel, x is split across GPUs.
# B here is the *local* batch size on this specific GPU.
B, C, D, H, W = x.shape
# Reshape: treat depth as batch dim β (local_B*D, 1, H, W)
slices = x.squeeze(1).contiguous() # (local_B, D, H, W)
slices = slices.view(B * D, 1, H, W) # (local_B*D, 1, H, W)
# Forward through 2D backbone
slice_feats = self.backbone(slices) # (local_B*D, backbone_out)
slice_feats = self.proj(slice_feats) # (local_B*D, feature_dim)
# Reshape back using the dynamically inferred local_B
slice_feats = slice_feats.view(B, D, -1) # (local_B, D, feature_dim)
# Cross-slice attention
if self.ablation == 'no_attention':
attended = slice_feats
attn_weights = None
else:
attended, attn_weights = self.cross_attn(slice_feats) # (local_B, D, feature_dim)
# Temporal 1D conv: (local_B, feature_dim, D)
temporal = attended.permute(0, 2, 1).contiguous()
temporal = self.temporal_conv(temporal)
# Pool across slices β (local_B, feature_dim)
features = self.pool(temporal).squeeze(-1)
return features, attn_weights
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Stream 2: Anatomical Context Extractor (Lightweight 3D CNN)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class SpatialAttention3D(nn.Module):
"""Channel-wise spatial attention for 3D features."""
def __init__(self, in_channels):
super().__init__()
self.conv = nn.Sequential(
nn.Conv3d(in_channels, 1, kernel_size=1),
nn.Sigmoid()
)
def forward(self, x):
attn = self.conv(x)
return x * attn
class ContextStream(nn.Module):
"""
Lightweight 3D CNN to capture surrounding anatomy.
Input: (B, 1, 48, 48, 48)
Output: (B, 256)
"""
def __init__(self, feature_dim=256):
super().__init__()
# Scale internal channels based on output dim
c1, c2, c3 = 64, 128, 256
if feature_dim > 256:
c1, c2, c3 = 64, 128, 512
self.block1 = nn.Sequential(
nn.Conv3d(1, c1, kernel_size=3, stride=2, padding=1),
nn.BatchNorm3d(c1),
nn.ReLU(inplace=True),
) # 48β24
self.block2 = nn.Sequential(
nn.Conv3d(c1, c2, kernel_size=3, stride=2, padding=1),
nn.BatchNorm3d(c2),
nn.ReLU(inplace=True),
) # 24β12
self.block3 = nn.Sequential(
nn.Conv3d(c2, c3, kernel_size=3, stride=2, padding=1),
nn.BatchNorm3d(c3),
nn.ReLU(inplace=True),
) # 12β6
self.spatial_attn = SpatialAttention3D(c3)
self.gap = nn.AdaptiveAvgPool3d(1) # β (B, c3, 1, 1, 1)
self.fc = nn.Linear(c3, feature_dim)
def forward(self, x):
"""
Args:
x: (B, 1, 48, 48, 48)
Returns:
features: (B, feature_dim)
"""
x = self.block1(x)
x = self.block2(x)
x = self.block3(x)
x = self.spatial_attn(x)
x = self.gap(x).flatten(1) # (B, c3)
x = self.fc(x)
return x
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Fusion Module (Multi-Head Attention)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class FusionModule(nn.Module):
"""
Fuse nodule and context features via multi-head attention.
Input: [B, 512] + [B, 256] β concatenated [B, 768]
Output: [B, 256]
"""
def __init__(self, nodule_dim=512, context_dim=256, fused_dim=256,
num_heads=4, dropout=0.5):
super().__init__()
total_dim = nodule_dim + context_dim # 768
# Project to a dimension divisible by num_heads
self.proj_in = nn.Linear(total_dim, fused_dim * 2)
self.attn = nn.MultiheadAttention(
embed_dim=fused_dim * 2, num_heads=num_heads,
dropout=dropout, batch_first=True
)
self.ffn = nn.Sequential(
nn.Linear(fused_dim * 2, fused_dim),
nn.ReLU(inplace=True),
nn.Dropout(dropout),
)
self.norm = nn.LayerNorm(fused_dim)
def forward(self, nodule_feats, context_feats):
"""
Args:
nodule_feats: (B, 512)
context_feats: (B, 256) or None (if no_context ablation)
Returns:
fused: (B, 256)
"""
if context_feats is not None:
combined = torch.cat([nodule_feats, context_feats], dim=-1) # (B, 768)
else:
combined = nodule_feats # (B, 512)
proj = self.proj_in(combined) # (B, fused_dim*2)
# Self-attention expects (B, seq_len, embed_dim) β treat as seq_len=1
proj = proj.unsqueeze(1) # (B, 1, fused_dim*2)
attn_out, _ = self.attn(proj, proj, proj) # (B, 1, fused_dim*2)
attn_out = attn_out.squeeze(1) # (B, fused_dim*2)
fused = self.ffn(attn_out) # (B, fused_dim)
fused = self.norm(fused)
return fused
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Prediction Head
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class PredictionHead(nn.Module):
"""
Dense 256 β 128 β 1 with BatchNorm, ReLU, Dropout.
"""
def __init__(self, in_dim=256, hidden_dim=128, dropout=0.3):
super().__init__()
self.head = nn.Sequential(
nn.Linear(in_dim, hidden_dim),
nn.BatchNorm1d(hidden_dim),
nn.ReLU(inplace=True),
nn.Dropout(dropout),
nn.Linear(hidden_dim, 1),
)
def forward(self, x):
return self.head(x)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Full DCA-Net Model
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class DCANet(nn.Module):
"""
Dual-Context Attention Network for lung nodule classification.
Inputs:
nodule_patch: (B, 1, 64, 64, 64)
context_patch: (B, 1, 48, 48, 48)
Outputs (training):
logits: (B, 1)
Outputs (uncertainty mode):
mean_prob, confidence: (B,), (B,)
"""
def __init__(self, config=None):
super().__init__()
# Parse config or use defaults
if config is None:
config = {}
model_cfg = config.get('model', {})
# Read ablation from model section first (where YAML stores it),
# then fall back to top-level key for backward compatibility.
self.ablation = model_cfg.get('ablation', None) or config.get('ablation', None)
backbone = model_cfg.get('backbone', 'efficientnet_b0')
nodule_dim = model_cfg.get('nodule_feature_dim', 512)
context_dim = model_cfg.get('context_feature_dim', 256)
fusion_dim = model_cfg.get('fusion_dim', 256)
num_heads = model_cfg.get('num_attention_heads', 4)
dropout = model_cfg.get('dropout', 0.5)
pred_dropout = model_cfg.get('prediction_dropout', 0.3)
num_neighbors = model_cfg.get('slice_neighbors', 2)
self.mc_passes = model_cfg.get('mc_dropout_passes', 5)
# Streams
self.nodule_stream = NoduleStream(
backbone_name=backbone, feature_dim=nodule_dim,
num_neighbors=num_neighbors, ablation=self.ablation
)
# Context stream (skip entirely for no_context ablation)
if self.ablation != 'no_context':
self.context_stream = ContextStream(feature_dim=context_dim)
else:
self.context_stream = None
# Fusion β adjust input dimension when context is disabled
effective_context_dim = context_dim if self.ablation != 'no_context' else 0
self.fusion = FusionModule(
nodule_dim=nodule_dim, context_dim=effective_context_dim,
fused_dim=fusion_dim, num_heads=num_heads, dropout=dropout
)
# Prediction
self.prediction_head = PredictionHead(
in_dim=fusion_dim, hidden_dim=128, dropout=pred_dropout
)
def forward(self, nodule_patch, context_patch):
"""Standard forward pass (training mode).
Args:
nodule_patch: (B, 1, 64, 64, 64)
context_patch: (B, 1, 48, 48, 48)
Returns:
logits: (B, 1)
"""
nodule_feats, attn_weights = self.nodule_stream(nodule_patch)
if self.context_stream is not None:
context_feats = self.context_stream(context_patch)
else:
context_feats = None
fused = self.fusion(nodule_feats, context_feats)
logits = self.prediction_head(fused)
return logits
@torch.no_grad()
def predict_with_uncertainty(self, nodule_patch, context_patch):
"""Monte Carlo Dropout uncertainty estimation.
Runs multiple forward passes with dropout enabled,
computes mean prediction and confidence.
Args:
nodule_patch: (B, 1, 64, 64, 64)
context_patch: (B, 1, 48, 48, 48)
Returns:
mean_prob: (B,) mean probability
confidence: (B,) confidence score (1 - normalized variance)
"""
# Set to eval mode but keep dropout active
self.eval()
if self.ablation != 'no_uncertainty':
for module in self.modules():
if isinstance(module, torch.nn.Dropout):
module.train()
preds = []
for _ in range(self.mc_passes):
logits = self.forward(nodule_patch, context_patch)
prob = torch.sigmoid(logits.squeeze(-1))
preds.append(prob)
preds = torch.stack(preds, dim=0) # (mc_passes, B)
mean_prob = preds.mean(dim=0) # (B,)
variance = preds.var(dim=0) # (B,)
# Confidence: 1 - normalized variance (variance is max 0.25 for Bernoulli)
confidence = 1.0 - (variance / 0.25).clamp(0, 1)
self.eval()
return mean_prob, confidence
def get_slice_importance(self, nodule_patch, context_patch):
"""Get per-slice importance scores from cross-slice attention.
Returns:
importance: (B, num_slices) attention-based importance
"""
self.eval()
with torch.no_grad():
_, attn_weights = self.nodule_stream(nodule_patch)
# Average attention received by each slice
importance = attn_weights.mean(dim=1) # (B, num_slices)
return importance
|