-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
84 lines (75 loc) · 2.53 KB
/
Copy path.gitignore
File metadata and controls
84 lines (75 loc) · 2.53 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# ── Secrets (NEVER commit) ──────────────────────────────────────────
.env
.env.*
# secrets dir and any private keys/certs — own line: git has no inline comments,
# so a trailing "# ..." would make this match nothing.
.secrets/
*.pem
*.key
*.p12
id_rsa*
*credentials*
*secret*
README.orig.md
# ── Xcode / Swift build artifacts ───────────────────────────────────
# Generated by XcodeGen — recreate with `xcodegen generate`
AIContentFilter.xcodeproj/
.build/
build/
# scripts/release.sh output (signed/notarized DMG)
dist/
DerivedData/
FilterCore/.build/
xcuserdata/
*.xcuserstate
# ── Python ──────────────────────────────────────────────────────────
__pycache__/
*.pyc
venv/
.venv/
# ── ML training / conversion outputs (regeneratable) ────────────────
out/
Models/Stage2-build/
# Raw HF checkpoints — converted to the bundled Core ML models, not shipped
Models/merged/
Models/merged-new/
# Corpus-build scratch cache (Project Gutenberg downloads)
.cache/
# ── Superseded / experimental corpora (active: data/corpus) ──
data/corpus_big/
data/corpus_v2/
data/corpus_v2_sample/
data/corpus_agent/
# register-deconfound regression sets (regeneratable)
data/corpus_reg/
# latest retrain working corpus + OOD scratch (regeneratable via scripts/)
data/corpus_new/
data/ood_extra/
data/corpus/full.csv
data/corpus/eval_held.csv
# ── Large model / binary artifacts (regeneratable via scripts/) ─────
# CoreML compiled & packaged models contain multi-hundred-MB weight blobs.
*.mlmodelc/
*.mlpackage/
*.bin
*.safetensors
*.ckpt
*.pt
*.onnx
*.gguf
# ── Build / test capture logs (scratch) ─────────────────────────────
*.log
build_errors*.txt
build_log.txt
test_errors.txt
# ── OS junk ─────────────────────────────────────────────────────────
.DS_Store
# Internal working notes (audit / friction / lifecycle) — kept local, not public
docs/internal/
# Process scratch: audit reports and arc implementation plans — local, not shipped
docs/arc/
docs/audits/
# Local-only Claude skills (per-repo tooling, not published)
.claude/skills/
.arc/
data/corpus_oasst/