-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
110 lines (96 loc) · 1.92 KB
/
Copy path.gitignore
File metadata and controls
110 lines (96 loc) · 1.92 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
# Anchored to the repo root: these are setuptools build artifacts, and an
# unanchored `lib/` silently swallowed experiments/lib/ -- shared code the
# pilots source at runtime, which would have been missing from any clone.
/lib/
/lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
venv/
env/
ENV/
env.bak/
venv.bak/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.hypothesis/
# Type checking
.mypy_cache/
.dmypy.json
dmypy.json
# Linting
.flake8
.pylintrc
# Environment variables
.env
.env.local
.env.*.local
# Database
*.db
*.sqlite
*.sqlite3
# Logs
*.log
logs/
# Research / reference repos (large)
research/neuro-symbolic-ai-toolkit/
research/kg-deductive-reasoner/
research/truthfulqa/
research/neuralkg/
research/sccipher/
# Docker
.docker/
docker/volumes/
# OS
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.temp
*.bak
# Harness state. Ignored while dogfooding so it does not add noise to every
# commit; a team wanting shared state would commit it instead.
.verity/
# Trial working directories are execution scratch: copied fixtures,
# __pycache__, rewritten on every run. Ignoring them is only defensible
# because they are no longer the only copy -- the retained, re-derivable
# evidence for every published number now lives in experiments/*/evidence/
# and IS tracked (ADR-0027). That inversion is the structural fix for
# invariant 7's one violation, where an ignored scratch directory held the
# sole record of three pilots' results and a re-run of their own setup
# script destroyed it.
#
# `*` does not cross a `/`, so this pattern cannot reach
# experiments/<name>/evidence/. A test asserts that, because a comment
# cannot enforce it: see tests/integration/test_cli_eval.py.
experiments/*/trials/