-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
56 lines (50 loc) · 813 Bytes
/
Copy path.gitignore
File metadata and controls
56 lines (50 loc) · 813 Bytes
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
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual environment
venv/
env/
ENV/
.venv/
# Data — raw and processed are reproducible from generate_data.py --seed,
# not committed (deterministic since Block 12)
data/raw/
data/processed/
# v4 experiment dataset variants (active policy, mujoco, OOD) — same rule:
# regenerable by seed, never committed (audit finding A6)
data_*/
# Checkpoints — .pt files are unsafe (pickle); .safetensors are committed via manifest
*.pt
checkpoints/*.safetensors
# Experiment tracking
wandb/
runs/
tensorboard_logs/
# IDE / OS
.idea/
.vscode/
*.DS_Store
.env
# Test / coverage artifacts
.pytest_cache/
.coverage
coverage.xml
htmlcov/