-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
64 lines (53 loc) · 3.39 KB
/
Copy path.gitignore
File metadata and controls
64 lines (53 loc) · 3.39 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
# ═══════════════════════════════════════════════════════════════════════════════
# 具身智能框架 .gitignore
# ──────────────────────────────────────────────────────────────────────────────
# 忽略: 大型数据文件、模型权重、缓存、日志、临时文件
# ═══════════════════════════════════════════════════════════════════════════════
# ── 数据目录 (大型数据集, 不提交到 Git) ──────────────────────────────────────
data/
data/unified/
# ── 模型检查点 ────────────────────────────────────────────────────────────────
checkpoints/
*.pt
*.pth
*.onnx
*.torchscript
# ── 渲染视频 ──────────────────────────────────────────────────────────────────
videos/
*.mp4
*.avi
*.gif
# ── 日志文件 ──────────────────────────────────────────────────────────────────
logs/
*.log
# ── Python 缓存 ───────────────────────────────────────────────────────────────
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
# ── 实验追踪 (MLflow) ─────────────────────────────────────────────────────────
mlruns/
mlflow/
# ── 环境配置 ──────────────────────────────────────────────────────────────────
.env
.env.local
*.env
# ── IDE / 编辑器 ──────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
*~
# ── 操作系统 ──────────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
# ── 项目构建 ──────────────────────────────────────────────────────────────────
*.egg-info/
dist/
build/
*.whl
# ── 临时文件 ──────────────────────────────────────────────────────────────────
tmp/
temp/
*.tmp