Spaces:
Sleeping
Sleeping
File size: 9,348 Bytes
be7e39c | 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 | """
data/dataset.py
MultiHeadOCTDataset β PyTorch Dataset for the Multi-Head ConvNeXt architecture.
Parses `config/hierarchy.yaml` and maps files to structured multi-head tensors.
"""
import logging
import os
from pathlib import Path
from typing import Dict, List, Optional, Tuple
import numpy as np
import pandas as pd
import yaml
import torch
from torch.utils.data import Dataset, DataLoader
from sklearn.model_selection import StratifiedKFold
logger = logging.getLogger(__name__)
_VALID_EXTENSIONS = {".jpg", ".jpeg", ".png", ".bmp", ".tiff", ".tif"}
class MultiHeadOCTDataset(Dataset):
"""
Dataset for the Multi-Head OCT pipeline.
Args:
config_path: Path to hierarchy.yaml.
data_root: Optional override for the root data directory.
fold_indices: Numpy integer array of row indices for this fold.
transform: MONAI transform pipeline (must accept file paths, as LoadImage is used).
"""
def __init__(
self,
config_path: str,
data_root: Optional[str] = None,
fold_indices: Optional[np.ndarray] = None,
transform = None,
) -> None:
super().__init__()
self.transform = transform
with open(config_path, "r") as f:
self._cfg = yaml.safe_load(f)
default_root = os.environ.get("OCT_DATA_ROOT", self._cfg.get("data_root", ""))
self._data_root = Path(data_root) if data_root else Path(default_root)
self._l1_labels = self._cfg["l1_labels"]
self._l2_labels = self._cfg["l2_labels"]
self._l3_specs = self._cfg["l3_specialists"]
self._manifest: pd.DataFrame = self._build_manifest()
if fold_indices is not None:
self._manifest = self._manifest.iloc[fold_indices].reset_index(drop=True)
logger.info(
"MultiHeadOCTDataset initialized: %d samples.",
len(self._manifest),
)
def _build_manifest(self) -> pd.DataFrame:
records = []
for entry in self._cfg["class_map"]:
dir_path = self._data_root / entry["path"]
if not dir_path.exists():
logger.debug(f"Skipping {dir_path} as it does not exist.")
continue
spec_key = entry.get("l3_specialist")
l3_class = entry.get("l3_class")
for img_path in sorted(dir_path.iterdir()):
if img_path.suffix.lower() not in _VALID_EXTENSIONS:
continue
records.append({
"image_path": str(img_path),
"l1_idx": self._l1_labels.get(entry["l1"], 0),
"l2_idx": self._l2_labels.get(entry.get("l2"), -1) if entry.get("l2") else -1,
"spec_key": spec_key,
"l3_class": l3_class
})
return pd.DataFrame(records)
def compute_class_weights(self, target="l2") -> torch.Tensor:
"""
Computes inverse-frequency class weights for a given target level.
target: 'l1', 'l2', or a specialist key (e.g., 'Macular')
"""
if target == "l1":
counts = self._manifest['l1_idx'].value_counts().sort_index()
weights = 1.0 / counts
weights = weights / weights.sum() * len(counts)
return torch.tensor(weights.values, dtype=torch.float32)
elif target == "l2":
# Exclude Normal (-1) for L2 weights
df_abnormal = self._manifest[self._manifest['l2_idx'] != -1]
if df_abnormal.empty:
return torch.ones(5)
counts = df_abnormal['l2_idx'].value_counts().sort_index()
# Ensure all 5 classes are represented in counts
for i in range(5):
if i not in counts:
counts[i] = 1 # avoid inf
counts = counts.sort_index()
weights = 1.0 / counts
weights = weights / weights.sum() * len(counts)
return torch.tensor(weights.values, dtype=torch.float32)
else:
df_spec = self._manifest[self._manifest['spec_key'] == target]
if df_spec.empty:
return torch.ones(1)
# Map l3_class string to index
class_map = self._l3_specs[target]["classes"]
class_indices = df_spec['l3_class'].map(class_map)
counts = class_indices.value_counts().sort_index()
num_classes = len(class_map)
for i in range(num_classes):
if i not in counts:
counts[i] = 1
counts = counts.sort_index()
weights = 1.0 / counts
weights = weights / weights.sum() * len(counts)
return torch.tensor(weights.values, dtype=torch.float32)
def __len__(self) -> int:
return len(self._manifest)
def __getitem__(self, idx: int) -> Tuple[torch.Tensor, Dict[str, torch.Tensor]]:
row = self._manifest.iloc[idx]
image_path = row["image_path"]
# MONAI pipelines usually start with LoadImage which takes the file path
if self.transform is not None:
try:
# Apply pipeline
image = self.transform(image_path)
# If MONAI returns a MetaTensor, convert to standard torch.Tensor
if hasattr(image, "as_tensor"):
image = image.as_tensor()
elif isinstance(image, np.ndarray):
image = torch.from_numpy(image)
except Exception as exc:
logger.error("Failed to process %s: %s", image_path, exc)
# Return black placeholder for stability
image = torch.zeros(3, 384, 384, dtype=torch.float32)
else:
image = image_path
# ββ Target H1: Binary (Normal=0, Abnormal=1) ββ
# Cast to float32 for BCEWithLogitsLoss
h1 = torch.tensor([row["l1_idx"]], dtype=torch.float32)
# ββ Target H2: Router (Multi-class 0-4, or -1 for Normal) ββ
h2 = torch.tensor(row["l2_idx"], dtype=torch.long)
# ββ Target H3: Severity (5 Sub-tensors) ββ
# Initialized as zeros (negative for BCE/Multi-Label if activated)
macular = torch.zeros(3, dtype=torch.float32)
diabetic = torch.zeros(2, dtype=torch.float32)
vascular = torch.zeros(3, dtype=torch.float32)
fluid = torch.zeros(1, dtype=torch.float32)
structural = torch.zeros(2, dtype=torch.float32)
spec = row["spec_key"]
l3_cls = row["l3_class"]
if pd.notna(spec) and pd.notna(l3_cls) and spec and l3_cls:
class_idx = self._l3_specs[spec]["classes"].get(l3_cls, -1)
if class_idx != -1:
if spec == "Macular": macular[class_idx] = 1.0
elif spec == "Diabetic": diabetic[class_idx] = 1.0
elif spec == "Vascular": vascular[class_idx] = 1.0
elif spec == "Fluid": fluid[class_idx] = 1.0
elif spec == "Structural": structural[class_idx] = 1.0
targets = {
"normal_abnormal": h1,
"pathology": h2,
"severity": {
"macular": macular,
"diabetic": diabetic,
"vascular": vascular,
"fluid": fluid,
"structural": structural
}
}
return image, targets
def build_dataloader(
config_path: str,
data_root: str,
batch_size: int = 16,
num_workers: int = 4,
transform = None,
shuffle: bool = True
) -> DataLoader:
"""
Utility to quickly build a DataLoader (e.g. for the micro_dataset sanity test).
"""
dataset = MultiHeadOCTDataset(
config_path=config_path,
data_root=data_root,
transform=transform
)
_pin = torch.cuda.is_available()
loader = DataLoader(
dataset,
batch_size=batch_size,
shuffle=shuffle,
num_workers=num_workers,
pin_memory=_pin,
persistent_workers=(num_workers > 0)
)
return loader
def build_kfold_dataloaders(
config_path: str,
mode: str,
n_splits: int = 5,
batch_size: int = 32,
num_workers: int = 4,
train_transform = None,
val_transform = None,
use_weighted_sampler: bool = False,
seed: int = 42
) -> List[Tuple[DataLoader, DataLoader]]:
dataset = MultiHeadOCTDataset(config_path=config_path)
# Stratify by l1 for level1, l2 for level2, etc. (simplifying here to l1)
labels = [row["l1_idx"] for _, row in dataset._manifest.iterrows()]
skf = StratifiedKFold(n_splits=n_splits, shuffle=True, random_state=seed)
fold_loaders = []
for train_idx, val_idx in skf.split(np.zeros(len(labels)), labels):
train_ds = MultiHeadOCTDataset(config_path=config_path, fold_indices=train_idx, transform=train_transform)
val_ds = MultiHeadOCTDataset(config_path=config_path, fold_indices=val_idx, transform=val_transform)
train_loader = DataLoader(train_ds, batch_size=batch_size, shuffle=True, num_workers=num_workers)
val_loader = DataLoader(val_ds, batch_size=batch_size, shuffle=False, num_workers=num_workers)
fold_loaders.append((train_loader, val_loader))
return fold_loaders
|