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

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

# Environment / secrets
.env
*.env.local

# Data files (keep examples, ignore large downloads)
data/
*.csv
*.parquet
*.h5
*.hdf5
*.npz
*.npy

# Model checkpoints and weights
checkpoints/
*.keras
*.h5
*.pb
saved_model/

# TensorFlow logs and TensorBoard
logs/
*.tfevents.*

# Jupyter
.ipynb_checkpoints/
*.ipynb

# macOS
.DS_Store

# Windows
Thumbs.db
desktop.ini

# IDE
.vscode/
.idea/
*.sublime-project
*.sublime-workspace

# Coverage
.coverage
htmlcov/
.pytest_cache/

# Docker
*.tar
