Upload .gitignore with huggingface_hub
Browse files- .gitignore +96 -0
.gitignore
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --- Python ---
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*.egg-info/
|
| 5 |
+
*.egg
|
| 6 |
+
dist/
|
| 7 |
+
build/
|
| 8 |
+
|
| 9 |
+
# --- Virtual environments ---
|
| 10 |
+
.venv/
|
| 11 |
+
venv/
|
| 12 |
+
env/
|
| 13 |
+
.python-version
|
| 14 |
+
|
| 15 |
+
# --- Editor / IDE ---
|
| 16 |
+
.vscode/
|
| 17 |
+
.idea/
|
| 18 |
+
*.swp
|
| 19 |
+
*.swo
|
| 20 |
+
|
| 21 |
+
# --- OS ---
|
| 22 |
+
.DS_Store
|
| 23 |
+
Thumbs.db
|
| 24 |
+
|
| 25 |
+
# --- Jupyter ---
|
| 26 |
+
.ipynb_checkpoints/
|
| 27 |
+
|
| 28 |
+
# --- Test / type-check caches ---
|
| 29 |
+
.pytest_cache/
|
| 30 |
+
.mypy_cache/
|
| 31 |
+
.ruff_cache/
|
| 32 |
+
.coverage
|
| 33 |
+
htmlcov/
|
| 34 |
+
|
| 35 |
+
# --- Logs ---
|
| 36 |
+
*.log
|
| 37 |
+
auto_push.log
|
| 38 |
+
logs/
|
| 39 |
+
|
| 40 |
+
# --- Environment / secrets ---
|
| 41 |
+
.env
|
| 42 |
+
.env.*
|
| 43 |
+
|
| 44 |
+
# --- Large data (not versioned) ---
|
| 45 |
+
data/
|
| 46 |
+
data/raw/
|
| 47 |
+
data/processed/
|
| 48 |
+
data/corpus/
|
| 49 |
+
*.h5ad
|
| 50 |
+
*.h5
|
| 51 |
+
*.loom
|
| 52 |
+
|
| 53 |
+
# --- Intermediate numerical arrays ---
|
| 54 |
+
*.npy
|
| 55 |
+
*.npz
|
| 56 |
+
|
| 57 |
+
# --- Model checkpoints (large, regenerable) ---
|
| 58 |
+
/models/
|
| 59 |
+
checkpoints/
|
| 60 |
+
checkpoints/*/best_model.pt
|
| 61 |
+
checkpoints/*/training_history.json
|
| 62 |
+
checkpoints/*.pt
|
| 63 |
+
checkpoints/**/*.pt
|
| 64 |
+
|
| 65 |
+
# --- Legacy artefacts (preserved locally only; 83GB) ---
|
| 66 |
+
|
| 67 |
+
# --- Figures (regenerable) — but paper + supplement PDFs kept ---
|
| 68 |
+
figures/*
|
| 69 |
+
!figures/*.pdf
|
| 70 |
+
!figures/supplement/
|
| 71 |
+
figures/supplement/*
|
| 72 |
+
!figures/supplement/*.pdf
|
| 73 |
+
|
| 74 |
+
# --- Generated docs / scratch ---
|
| 75 |
+
presentation/
|
| 76 |
+
results.md
|
| 77 |
+
PLAN.md
|
| 78 |
+
|
| 79 |
+
# Caches
|
| 80 |
+
__pycache__/
|
| 81 |
+
.pytest_cache/
|
| 82 |
+
*.pyc
|
| 83 |
+
*.pyo
|
| 84 |
+
|
| 85 |
+
# IDE
|
| 86 |
+
.vscode/
|
| 87 |
+
.idea/
|
| 88 |
+
|
| 89 |
+
# Logs (volume)
|
| 90 |
+
logs/*.log
|
| 91 |
+
|
| 92 |
+
# LaTeX build artefacts
|
| 93 |
+
paper/*.aux
|
| 94 |
+
paper/*.log
|
| 95 |
+
paper/*.out
|
| 96 |
+
paper/*.toc
|