.idea/
__pycache__/
LabletAnomaly.egg-info/
logs/*

# =============================
# Python
# =============================
__pycache__/
*.py[cod]
*.so
*.pyd
*.pyo

# Virtual env / venv
.venv/
venv/
env/
ENV/
*.egg-info/
.eggs/

# Jupyter
.ipynb_checkpoints/
*.ipynb_checkpoints

# =============================
# Logs / Cache / Temp
# =============================
*.log
*.out
*.err
*.tmp
*.swp
*.swo
*~
.DS_Store
Thumbs.db

# Python cache
.cache/
pytest_cache/
.pytest_cache/
.mypy_cache/
.dmypy.json
dmypy.json

# Torch / ML
*.pt
*.pth
*.ckpt
*.onnx
lightning_logs/
wandb/
mlruns/
runs/
tensorboard/
**/checkpoints/

# =============================
# OS / Editor
# =============================
# macOS
.DS_Store
.AppleDouble
.LSOverride

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini

# VSCode / JetBrains
.vscode/
.idea/
*.iml

# =============================
# Build / Distribution
# =============================
build/
dist/
*.egg
*.egg-info
.eggs/
pip-wheel-metadata/
wheels/
*.whl

# =============================
# Data / Results
# =============================
*.csv
*.tsv
*.xlsx
*.xls
*.jsonl
*.npz
*.npy
*.h5
*.pkl
*.pickle
*.mat
*.tar
*.tar.gz
*.zip
*.rar

# Large data dirs
data/
datasets/
results/
outputs/
logs/

# =============================
# Hidden files (dotfiles)
# =============================
.*
!.gitignore
!.gitattributes
!.gitmodules
