Unified-LoRA / .gitignore
Simo76's picture
Refactor .gitignore to organize sections and entries
3a213cf
.# ── PYTHON ─────────────────────────────────────────
__pycache__/
*.py[cod]
*.so
# ── ENV ────────────────────────────────────────────
.env
.venv/
venv/
env/
# ── BUILD / DIST ───────────────────────────────────
build/
dist/
*.egg-info/
# ── NOTEBOOK ───────────────────────────────────────
.ipynb_checkpoints
# ── CACHE / TEST ───────────────────────────────────
.pytest_cache/
.mypy_cache/
.coverage*
htmlcov/
# ── LOGS ───────────────────────────────────────────
*.log
# ── MODELS / CHECKPOINTS (CRITICO) ─────────────────
*.pt
*.bin
*.ckpt
*.safetensors
# ── DATASETS ───────────────────────────────────────
data/
datasets/
*.parquet
*.csv
# ── HF CACHE ───────────────────────────────────────
.cache/
huggingface/
hf_cache/
# ── EXPERIMENT OUTPUT ──────────────────────────────
outputs/
runs/
wandb/
# ── SYSTEM ─────────────────────────────────────────
.DS_Store
# ── EDITOR ─────────────────────────────────────────
.vscode/
.idea/