# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg
*.egg-info/
dist/
build/
.eggs/
*.whl
.mypy_cache/
.ruff_cache/
.pytest_cache/

# Virtual environments
.venv/
venv/
env/
ENV/

# Environment variables
.env
*.local.env

# Jupyter
.ipynb_checkpoints/
*.ipynb

# TensorFlow / Keras artefacts
checkpoints/
logs/
*.h5
*.keras
*.pb
saved_model/
*.tflite
*.ckpt
*.ckpt.*
*.index
*.data-*

# TF Hub cache
.tfhub_cache/

# Data directories (add your real dataset paths here)
data/
datasets/
images/
annotations/

# Model outputs
outputs/
predictions/
visualisations/

# OS
.DS_Store
Thumbs.db
desktop.ini

# Editor
.vscode/
.idea/
*.swp
*.swo

# Docker
*.log
