# =============================================================================
# .gitignore – Hugging Face Pipeline Starter
# =============================================================================

# ---------------------------------------------------------------------------
# Python
# ---------------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
*.whl
pip-wheel-metadata/
.installed.cfg
MANIFEST

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

# ---------------------------------------------------------------------------
# Environment / secrets
# ---------------------------------------------------------------------------
.env
*.env.local
*.env.*.local

# ---------------------------------------------------------------------------
# Model weights & Hugging Face cache
# ---------------------------------------------------------------------------
model_cache/
.cache/
*.bin
*.safetensors
*.ot
*.onnx
*.pt
*.pth
*.h5
*.pkl
# HuggingFace Hub cache (if pointing to a local directory)
hub/

# ---------------------------------------------------------------------------
# Data
# ---------------------------------------------------------------------------
data/
datasets/
*.csv
*.tsv
*.jsonl
*.parquet
*.arrow

# ---------------------------------------------------------------------------
# Outputs / logs
# ---------------------------------------------------------------------------
outputs/
logs/
*.log
runs/

# ---------------------------------------------------------------------------
# Jupyter / IPython
# ---------------------------------------------------------------------------
.ipynb_checkpoints/
*.ipynb

# ---------------------------------------------------------------------------
# IDE / OS
# ---------------------------------------------------------------------------
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db
desktop.ini

# ---------------------------------------------------------------------------
# Docker
# ---------------------------------------------------------------------------
.docker/

# ---------------------------------------------------------------------------
# Testing / coverage
# ---------------------------------------------------------------------------
.pytest_cache/
.coverage
htmlcov/
.tox/
