-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
84 lines (66 loc) · 2.1 KB
/
Copy path.gitignore
File metadata and controls
84 lines (66 loc) · 2.1 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
# Pretrained models — checkpoints downloaded by setup_weights.sh (or
# linked from a shared NVMe location). The whole directory is ignored;
# users get their own layout via env var EGOINFINITY_CKPT_DIR or the symlink.
# WiLoR's tiny model_config.yaml lives in `configs/` instead and IS tracked.
pretrained_models
pretrained_models.bak.*
# Python cache
__pycache__/
*.pyc
*.pyo
# Build artifacts (generated by `pip install -e .`)
*.egg-info/
build/
dist/
# Demo output
demo_out/
# Logs and temp
logs/
*.log
*.log.bak.*
*.tmp
# Internal-only dev tree — never published; stripped at the release tag.
# Guard against accidental `git add private/...`.
private/
# IDE
.vscode/
.idea/
# OS
.DS_Store
Thumbs.db
# Output data
output/
results/
# Large dataset files
100DOH/*.json
# Favorites / per-clip cache (videos, frames, sam3 meshes, depth, pkl results).
# Default location <repo>/cache; override with ACTION100M_CACHE.
cache/
# Action100M index database (large, rebuilt locally by action100m_filter)
action100m_index.db
action100m_index.db-shm
action100m_index.db-wal
# WiLoR (CC-BY-NC-ND, no-derivatives): NOT redistributed. Fetched verbatim
# from upstream + patched locally by scripts/setup_wilor.sh. Only the patch
# (third_party/wilor.patch) is tracked.
third_party/wilor/
# MANO model — non-commercial license; see README "MANO model" section
# for the manual download instructions (we cannot redistribute).
third_party/wilor/mano_data/MANO_RIGHT.pkl
# Retarget large binaries — MuJoCo XML printout + training checkpoints.
# The repo ships the URDF / STL meshes (small, structural), but training
# artifacts are reproduced by re-running retarget/train_vn_alignment.py.
retarget/MJMODEL.TXT
retarget/runs/*/checkpoints/*.pt
retarget/runs/*/checkpoints/*.pth
retarget/runs/*/events.out.tfevents.*
# Batch run logs / SLURM artifacts (regenerated)
batch_logs/
# action100m_filter caches MediaPipe model files locally; not redistributable
action100m_filter/.cache/
# Tool audit / dry-run outputs (generated artifacts, not source)
tools/_audit_*/
_audit/
# Stray debug screenshots dropped at repo root
/skel_on_*.jpg
MUJOCO_LOG.TXT