返回 JoyAI-Echo
.gitignore
根目录 / .gitignore
1 # --- Python ---
2 __pycache__/
3 *.py[cod]
4 *$py.class
5 *.so
6 .Python
7 *.egg
8 *.egg-info/
9 build/
10 dist/
11 .eggs/
12 .pytest_cache/
13 .mypy_cache/
14 .ruff_cache/
15
16 # --- Virtual envs ---
17 .venv/
18 venv/
19 env/
20 .env
21
22 # --- Editor / OS ---
23 .vscode/
24 .idea/
25 .DS_Store
26 Thumbs.db
27 *.swp
28 *.swo
29
30 # --- Claude Code workspace ---
31 .claude/
32
33 # --- Local user config ---
34 # Unanchored so the rule applies to every project subtree.
35 **/configs/*.local.yaml
36
37 # --- Inference artifacts ---
38 inference_result/
39 outputs/
40 logs/
41 runs/
42 tmp/
43 *.log
44 *.pid
45
46 # --- Model weights / large binaries ---
47 # Checkpoint files are downloaded separately; do not commit.
48 # Unanchored so both echo_longvideo/ and echo_wm/ are covered.
49 **/checkpoints/*
50 !**/checkpoints/.gitkeep
51 !**/checkpoints/README.md
52 !**/checkpoints/*.manifest.json
53 *.safetensors
54 *.pt
55 *.bin
56 *.ckpt
57 *.onnx
58
59 # --- Generated media ---
60 *.mp4
61 *.mov
62 *.avi
63 *.mkv
64 *.wav
65 *.flac
66 *.mp3
67
68 # --- Misc ---
69 *.tmp
70 *.bak
71 node_modules/
72
73 # other
74 condaenv.83aeanp_.requirements.txt
75 scripts/merge_checkpoint.py
76
76 lines Plain Text