-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (47 loc) · 1.45 KB
/
.gitignore
File metadata and controls
53 lines (47 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ── Dependencies ──────────────────────────────────────────────
node_modules/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
.eggs/
# ── Model weights (large files — hosted on HuggingFace) ───────
models/*.gguf
models/*.bin
models/*.safetensors
models/*.pt
# ── Secrets & Credentials ─────────────────────────────────────
# Training scripts contain hardcoded HF API token — excluded until token is moved to env
training/prepare_data.py
training/train.py
.env
.env.*
*.key
*.pem
secrets.json
# ── Large data files ──────────────────────────────────────────
*.tar.gz
*.zip
*.gz
evaluation/benchmark_questions.json
# ── OS & Editor junk ──────────────────────────────────────────
.DS_Store
Thumbs.db
*.swp
*.swo
.vscode/
.idea/
*.log
# ── Internal / project management ────────────────────────────
.claude/
plan.md
evaluation/ABLATION_LIVE_LOG.txt
evaluation/LIVE_LOG.txt
# ── Misc build artifacts ──────────────────────────────────────
=*
tmp_*
nohup.out