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
53 lines (47 loc) · 955 Bytes
/
Copy path.gitignore
File metadata and controls
53 lines (47 loc) · 955 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
# 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/
# Editors / OS
.vscode/
.idea/
.DS_Store
Thumbs.db
# Committed benchmark results are small, schema-validated JSON and are wanted.
!benchmarks/results/*.json