-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
117 lines (105 loc) · 2.66 KB
/
Copy path.gitignore
File metadata and controls
117 lines (105 loc) · 2.66 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
111
112
113
114
115
116
117
# Project-local documentation and source code should remain trackable.
# Ignore large datasets, environments, caches, generated outputs, and media artifacts.
# Core local-only directories
/data/
/outputs/
/venvs/
/.cache/
/mnt/
# Third-party model repos to keep local only
/models/WonderWorld/
/research/reference/
# Python cache/build artifacts
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
build/
dist/
# Virtualenvs
.venv/
venv/
env/
ENV/
# Notebook and editor noise
.ipynb_checkpoints/
.DS_Store
Thumbs.db
.idea/
.vscode/
# Logs and temp files
*.log
*.out
*.err
*.tmp
*.temp
# WMArena: keep locally, do not push (entire tree ignored)
/WMArena/
/frontend/__pycache__/
# Large generated media / arrays
*.mp4
*.npy
*.npz
!assets/*.mp4
# Common model/runtime artifacts that should not go to GitHub
*.ckpt
*.pt
*.pth
*.bin
*.safetensors
*.onnx
*.h5
*.msgpack
*.whl
*.pickle
*.pkl
*.ply
# Model-local heavy artifacts
_models_legacy/**/checkpoints/
_models_legacy/**/weights/
_models_legacy/**/pretrained/
_models_legacy/**/outputs/
_models_legacy/**/outputs_*/
_models_legacy/**/output/
_models_legacy/**/results/
_models_legacy/**/results_*/
_models_legacy/**/logs/
_models_legacy/**/runs/
_models_legacy/**/.gradio/
# Large demo / showcase assets
/models_legacy/Matrix-Game/Matrix-Game-2/assets/pdf/
/models_legacy/Matrix-Game/Matrix-Game-2/demo_images/
/models_legacy/Matrix-Game/Matrix-Game-1/assets/videos/
/models_legacy/Matrix-Game-3.0/README.md
/models_legacy/Matrix-Game-3.0/assets/
/models_legacy/Matrix-Game-3.0/demo_images/
/models_legacy/Matrix-Game-3.0/output/
/models_legacy/Matrix-Game-3.0/Matrix-Game-3.0/
/models_legacy/Matrix-Game-3.0/test.sh
/models_legacy/Vid2World/assets/long_rollout/
/models_legacy/Vid2World/assets/v2w_overview.png
/models_legacy/Hunyuan-GameCraft-1.0/asset/teaser.png
/models_legacy/lingbot-world/LingBot_World_paper.pdf
/models_legacy/worldfm/submodules/HunyuanWorld-1.0/assets/panorama1.gif
/models_legacy/worldfm/submodules/HunyuanWorld-1.0/assets/panorama2.gif
/models_legacy/worldfm/submodules/HunyuanWorld-1.0/assets/quick_look.gif
/models_legacy/worldfm/submodules/HunyuanWorld-1.0/assets/roaming_world.gif
/models_legacy/worldfm/submodules/HunyuanWorld-1.0/assets/application.png
# Known model-local datasets / caches that are not source code
/models_legacy/solaris/datasets/
/models_legacy/Matrix-Game/Matrix-Game-1/GameWorldScore/GameWorld/third_party/amt/datasets/
/models_legacy/Matrix-Game/Matrix-Game-1/GameWorldScore/GameWorld/third_party/umt/datasets/
/models_legacy/Infinite-World/.cache/
# Frontend package artifacts if introduced later
node_modules/
.next/
coverage/
/services/