# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
.eggs/
*.egg

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

# ── Environment / secrets ─────────────────────────────────────────────────────
.env
*.env
!.env.example

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

# ── TensorBoard ───────────────────────────────────────────────────────────────
runs/
tb_logs/

# ── Data ──────────────────────────────────────────────────────────────────────
data/
*.csv
*.parquet
*.hdf5
*.h5
*.tfrecord
*.tfrecords

# ── IDE ───────────────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
.DS_Store

# ── Testing ───────────────────────────────────────────────────────────────────
.pytest_cache/
.coverage
htmlcov/
coverage.xml

# ── Distribution ─────────────────────────────────────────────────────────────
*.whl
*.tar.gz
