-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
58 lines (49 loc) · 1.32 KB
/
Copy path.gitignore
File metadata and controls
58 lines (49 loc) · 1.32 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
54
55
56
57
58
# ─────────────────────────────────────────────────────────────
# Chad. Code, docs, configs and training logs are tracked.
# Data, model weights, and build output stay out (all on HuggingFace).
# ─────────────────────────────────────────────────────────────
# Data (private WhatsApp/Instagram chats live here). NEVER commit data/.
data/
# Model weights and large binaries (backed up on HuggingFace)
*.pt
*.pth
*.ckpt
*.safetensors
*.bin
*.onnx
*.wasm
*.zip
*.torrent
*.h5
*.zst
# Derived model exports (on HuggingFace)
export/
# DPO data files (on HuggingFace: chad-dpo)
dpo/pairs/
dpo/prompts.jsonl
# TypeScript build cache
*.tsbuildinfo
# Browser demo: keep the source, drop deps and the bundled model
browser-chat/node_modules/
browser-chat/dist/
browser-chat/public/models/
# Next.js product: keep the source, drop deps, build output and secrets
app/web/node_modules/
app/web/.next/
app/web/out/
app/server/node_modules/
**/.env
**/.env.*
!**/.env.example
# Python
.venv/
__pycache__/
*.py[cod]
*.egg-info/
.pytest_cache/
.ruff_cache/
.ipynb_checkpoints/
# OS / editor
.DS_Store
.vscode/
.idea/