forked from DaoyuanLi2816/mini-verl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
64 lines (55 loc) · 1.28 KB
/
Copy path.gitignore
File metadata and controls
64 lines (55 loc) · 1.28 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
# Every directory rule below is anchored with a leading slash so it can only
# match at the repository root. An unanchored `models/` once matched
# `src/miniverl/models/` and silently excluded that package from both git and
# the built wheel; the clean-environment install in .github/workflows/build.yml
# is what caught it.
# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
/build/
/dist/
/site/
/.venv/
/venv/
.python-version
# Tooling caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
.hypothesis/
.coverage
.coverage.*
coverage.xml
htmlcov/
# Run artifacts. Never commit weights, teacher caches or checkpoints.
/runs/
/artifacts/
*.safetensors
*.bin
*.pt
*.ckpt
*.sqlite
*.db
# Local model and dataset caches (root level only)
/.hf-cache/
/hf_cache/
/models/
/checkpoints/
/teacher-cache/
# Exclusive-reservation lock roots created next to bridge outputs.
.miniverl-locks/
# Local working archives. Preserved on disk for provenance, never published.
/.local-archive-*/
/.takeover-archive-*/
# Browser screenshots from scripts/check_docs_visual.py. CI uploads them as a
# workflow artifact; they are never committed.
/docs-visual-screenshots/
# Editors / OS
.vscode/
.idea/
.DS_Store
Thumbs.db
# Committed benchmark results are small, schema-validated JSON and are wanted.
!benchmarks/results/*.json