V3 architecture for CVGL caption validation on GTA-UAV-LR dataset: - AsymmetricEncoder: DINOv3 ViT-L/16 (LVD drone + SAT satellite, frozen) + LRSCLIP/DGTRS-CLIP ViT-L-14 text encoder (248 tok, partial unfreeze) - L1/L2/L3 hierarchical captions from VLM-generated descriptions - TextFusionMLP (concat 3x768 -> MLP -> 512) + GatedFusion - Segmentation filter: exclude images with >=90% background+water - 10.9M trainable / 733M total params, 256x256 input - coloredlogs + tqdm + emoji for training UX - Baseline mode (--baseline): image-only, no text encoder loaded Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
58 lines
571 B
Plaintext
58 lines
571 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# PyTorch / ML artefacts
|
|
*.pt
|
|
*.pth
|
|
*.ckpt
|
|
*.onnx
|
|
*.engine
|
|
*.safetensors
|
|
checkpoints/
|
|
nn_models/
|
|
out/
|
|
outputs/
|
|
runs/
|
|
wandb/
|
|
lightning_logs/
|
|
|
|
# Data (too large / confidential — keep manifests only if < 10 MB)
|
|
data/
|
|
*.json.gz
|
|
*.h5
|
|
*.hdf5
|
|
*.parquet
|
|
*.npy
|
|
*.npz
|
|
|
|
# Gin / config logs
|
|
*.gin.log
|
|
operative_config-*.gin
|
|
|
|
# Editors / IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets (never commit)
|
|
.env
|
|
.env.*
|
|
*credentials*
|
|
*secret*
|
|
*.pem
|
|
*.key
|