Spaces:
Running
Running
File size: 11,983 Bytes
1b2897e 7873c43 1b2897e 7873c43 34d1bee 1b2897e 34d1bee 1b2897e 34d1bee 1b2897e ee6c080 1b2897e 7873c43 1b2897e 34d1bee 1b2897e 34d1bee ee6c080 1b2897e 34d1bee b54cb76 34d1bee 1b2897e 34d1bee 1b2897e 34d1bee 1b2897e 34d1bee 1b2897e 34d1bee 1b2897e 34d1bee 1b2897e 34d1bee 1b2897e 34d1bee 1b2897e 34d1bee 1b2897e 34d1bee 1b2897e 7873c43 1b2897e 7873c43 1b2897e 34d1bee 1b2897e 34d1bee 1b2897e 7873c43 1b2897e 7873c43 1b2897e 34d1bee 1b2897e | 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 | """
Train OwnEmbeddingModel on manifest.csv dataset.
Usage:
python scripts/train_embedding.py
python scripts/train_embedding.py --epochs 10 --batch 32 --limit 50000
What this does:
1. Reads manifest.csv
2. Loads images in batches
3. Trains EfficientNet-B0 binary classifier (real=0, AI=1)
4. Saves best model to data/reference/own_embedding_model.pt
5. Logs accuracy/loss to tensorboard (optional)
"""
import sys
import csv
import time
import random
import argparse
import logging
from pathlib import Path
from typing import List, Tuple
import torch
import torch.nn as nn
from torch.utils.data import Dataset, DataLoader
from torchvision import transforms
from PIL import Image
sys.path.insert(0, str(Path(__file__).parents[1]))
from backend.services.own_detector.model import OwnEmbeddingModel, MODEL_PATH
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(levelname)s %(message)s",
datefmt="%H:%M:%S",
)
logger = logging.getLogger(__name__)
ROOT = Path(__file__).parents[1]
MANIFEST_PATH = ROOT / "data" / "manifest.csv"
# ββ Image transform ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Forensic-safe augmentations (audit fix #22):
# - RandomGrayscale REMOVED β discards chroma-channel noise that is itself an
# AI-generation signal.
# - RandomAffine REMOVED β destroys CFA pixel-grid alignment and compression
# artifacts that several detectors rely on.
# - GaussianBlur probability reduced from 0.15 to 0.03 β blurring removes the
# high-frequency noise/PRNU texture the model needs to distinguish real camera
# images from synthetic ones.
TRAIN_TRANSFORM = transforms.Compose([
transforms.Resize((224, 224)),
transforms.RandomHorizontalFlip(),
transforms.RandomApply([transforms.GaussianBlur(3)], p=0.03),
transforms.RandomApply([
transforms.ColorJitter(brightness=0.4, contrast=0.4, saturation=0.3, hue=0.1)
], p=0.5),
transforms.ToTensor(),
transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]),
])
VAL_TRANSFORM = transforms.Compose([
transforms.Resize((224, 224)),
transforms.ToTensor(),
transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]),
])
# ββ Dataset ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class ImageManifestDataset(Dataset):
"""Reads images listed in manifest.csv."""
def __init__(self, rows: List[dict], transform, root: Path):
self.rows = rows
self.transform = transform
self.root = root
def __len__(self):
return len(self.rows)
def __getitem__(self, idx):
row = self.rows[idx]
label = 1 if row["label"] == "ai" else 0
# Fix Windows backslash paths
img_path = self.root / Path(row["path"])
try:
img = Image.open(img_path).convert("RGB")
return self.transform(img), torch.tensor(label, dtype=torch.float32)
except Exception:
# Skip corrupt/unreadable files entirely instead of substituting a
# black image. A black tensor with the original label teaches the
# network that pure-black input can belong to either class, adding
# noise to every batch that happens to contain a corrupt file.
# collate_skip_none (below) filters out these None returns.
logger.warning("Skipping corrupt/unreadable image: %s", img_path)
return None
def collate_skip_none(batch):
"""
DataLoader collate_fn that filters out None entries produced by
ImageManifestDataset.__getitem__ for corrupt/unreadable files.
Without this, a single corrupt file crashes the entire epoch.
"""
batch = [item for item in batch if item is not None]
if not batch:
# Extremely rare (entire batch of corrupt files) β return empty tensors
# so the training loop's skip-on-empty-batch guard handles it cleanly.
return torch.zeros(0, 3, 224, 224), torch.zeros(0)
return torch.utils.data.default_collate(batch)
# ββ Load manifest ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def load_manifest(limit: int = 0) -> Tuple[List[dict], List[dict]]:
if not MANIFEST_PATH.exists():
logger.error(f"manifest.csv not found at {MANIFEST_PATH}")
sys.exit(1)
all_rows = []
with open(MANIFEST_PATH, newline="", encoding="utf-8") as f:
for row in csv.DictReader(f):
img_path = ROOT / Path(row["path"])
if not img_path.exists():
continue
w = int(row.get("width", 0))
h = int(row.get("height", 0))
# Minimum 16px β allows CIFAKE (32x32) and similar small datasets.
# 0x0 means the download script did not record dimensions; keep those too.
if (w > 0 and w < 16) or (h > 0 and h < 16):
continue
all_rows.append(row)
real_all = [r for r in all_rows if r["label"] == "real"]
ai_all = [r for r in all_rows if r["label"] == "ai"]
logger.info(f"All on disk β real: {len(real_all)}, AI: {len(ai_all)}")
random.seed(42)
random.shuffle(real_all)
random.shuffle(ai_all)
val_size = min(5000, len(real_all) // 10, len(ai_all) // 10)
real_val, real_train = real_all[:val_size], real_all[val_size:]
ai_val, ai_train = ai_all[:val_size], ai_all[val_size:]
val_rows = real_val + ai_val
random.shuffle(val_rows)
min_count = min(len(real_train), len(ai_train))
if limit > 0:
min_count = min(min_count, limit // 2)
balanced = real_train[:min_count] + ai_train[:min_count]
random.shuffle(balanced)
logger.info(f"Train: {len(balanced)} ({min_count} real + {min_count} AI)")
logger.info(f"Val: {len(val_rows)} ({val_size} real + {val_size} AI)")
return balanced, val_rows
# ββ Training loop ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def train(args):
device = "cuda" if torch.cuda.is_available() else "cpu"
logger.info(f"Device: {device}")
# Load data
train_rows, val_rows = load_manifest(limit=args.limit)
if len(train_rows) == 0:
logger.error(
"No training images found on disk. "
"Run download scripts first to get images locally."
)
sys.exit(1)
train_ds = ImageManifestDataset(train_rows, TRAIN_TRANSFORM, ROOT)
val_ds = ImageManifestDataset(val_rows, VAL_TRANSFORM, ROOT)
train_loader = DataLoader(
train_ds, batch_size=args.batch,
shuffle=True, num_workers=0, pin_memory=False,
collate_fn=collate_skip_none,
)
val_loader = DataLoader(
val_ds, batch_size=args.batch,
shuffle=False, num_workers=0,
collate_fn=collate_skip_none,
)
logger.info(f"Train batches: {len(train_loader)} "
f"| Val batches: {len(val_loader)}")
# Model
model = OwnEmbeddingModel(freeze_backbone=False)
model = model.to(device)
# Loss and optimiser
criterion = nn.BCELoss()
optimizer = torch.optim.AdamW(
model.parameters(), lr=args.lr, weight_decay=1e-3
)
scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(
optimizer, T_max=args.epochs
)
best_val_acc = 0.0
MODEL_PATH.parent.mkdir(parents=True, exist_ok=True)
for epoch in range(1, args.epochs + 1):
# ββ Train ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
model.train()
train_loss, train_correct, train_total = 0.0, 0, 0
t0 = time.time()
for batch_idx, (images, labels) in enumerate(train_loader):
if images.size(0) == 0:
continue # all-corrupt batch β skip
images = images.to(device)
labels = labels.to(device).unsqueeze(1)
optimizer.zero_grad()
_, probs = model(images)
loss = criterion(probs, labels)
loss.backward()
optimizer.step()
train_loss += loss.item()
preds = (probs > 0.5).float()
train_correct += (preds == labels).sum().item()
train_total += labels.size(0)
if (batch_idx + 1) % 50 == 0:
logger.info(
f" Epoch {epoch} batch {batch_idx+1}/{len(train_loader)} "
f"loss={loss.item():.4f}"
)
train_acc = train_correct / train_total * 100
train_loss = train_loss / len(train_loader)
# ββ Validate βββββββββββββββββββββββββββββββββββββββββββββββββββ
model.eval()
val_correct, val_total = 0, 0
val_loss = 0.0
with torch.no_grad():
for images, labels in val_loader:
if images.size(0) == 0:
continue
images = images.to(device)
labels = labels.to(device).unsqueeze(1)
_, probs = model(images)
loss = criterion(probs, labels)
val_loss += loss.item()
preds = (probs > 0.5).float()
val_correct += (preds == labels).sum().item()
val_total += labels.size(0)
val_acc = val_correct / val_total * 100 if val_total > 0 else 0
val_loss = val_loss / len(val_loader) if len(val_loader) > 0 else 0
elapsed = time.time() - t0
logger.info(
f"Epoch {epoch}/{args.epochs} "
f"| train_loss={train_loss:.4f} train_acc={train_acc:.1f}% "
f"| val_loss={val_loss:.4f} val_acc={val_acc:.1f}% "
f"| {elapsed:.0f}s"
)
scheduler.step()
# Save best model
if val_acc > best_val_acc:
best_val_acc = val_acc
torch.save(model.state_dict(), MODEL_PATH)
logger.info(f" β
Best model saved (val_acc={val_acc:.1f}%)")
logger.info(f"Training complete. Best val accuracy: {best_val_acc:.1f}%")
logger.info(f"Model saved to: {MODEL_PATH}")
# ββ Entry point ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Train OwnEmbeddingModel")
parser.add_argument("--epochs", type=int, default=5,
help="Number of training epochs (default: 5)")
parser.add_argument("--batch", type=int, default=32,
help="Batch size (default: 32)")
parser.add_argument("--lr", type=float, default=3e-4,
help="Learning rate (default: 0.0001)")
parser.add_argument("--limit", type=int, default=0,
help="Limit images per class, 0=use all")
parser.add_argument("--freeze-backbone", action="store_true",
help="Freeze EfficientNet backbone, train head only")
args = parser.parse_args()
logger.info("=== VeriFile-X Embedding Detector Training ===")
logger.info(f"Epochs: {args.epochs} | Batch: {args.batch} | LR: {args.lr}")
logger.info(f"Limit: {args.limit if args.limit else 'all'}")
train(args)
|